forked from manveru/innate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCHANGELOG
4117 lines (2094 loc) · 125 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[171f18d | 2023-01-05 11:40:11 UTC] Michael Faughn <[email protected]>
* update gemspec to specify modern version of rack and rack-test and add rackup
[e58eb0b | 2023-01-05 11:38:55 UTC] Michael Faughn <[email protected]>
* Use Rackup::Handler instead of Rack::Handler. Refactor registration of ebb handler registration into #start_ebb. Not sure this code is covered by the tests but all tests are passing.
[0e8a163 | 2023-01-05 11:11:37 UTC] Michael Faughn <[email protected]>
* fix test to expect header keys to be downcase as that is what Rack sends now
[a6158c2 | 2023-01-05 11:09:24 UTC] Michael Faughn <[email protected]>
* Fix unless condition in rescue block of Request#local_net? to match any exception message that suggests an invalid address
[15a50ff | 2023-01-05 11:06:44 UTC] Michael Faughn <[email protected]>
* Change Rack::File to Rack::Files and Rack::Response#header to #headers to conform with rack ~> 3.0
[972432e | 2023-01-05 11:03:20 UTC] Michael Faughn <[email protected]>
* remove Gem::Specification#has_rdoc because it is deprecated and breaks things.
[2da7803 | 2016-05-12 20:45:17 UTC] Michael J. Welch, Ph.D <[email protected]>
* Update adapter.rb.
In lib/innate/adapter.rb#self.start_webrick, `:BindAddress => config[:Host]` should be `:Host => config[:Host]` because lib/rack/handler/webrick.rb#self.run looks for :Host, not :BindAddress. What this means is, if you're running Ramaze on a remote server, there is no :Host in the options (which returns nil), and so it defaults to localhost, then your browser won't see the site.
[4989626 | 2015-10-28 17:16:46 UTC] Michael Fellinger <[email protected]>
* Version 2015.10.28
[105060c | 2015-10-28 17:15:55 UTC] Michael Fellinger <[email protected]>
* update dependencies and gem setup
[cde6b36 | 2013-10-16 14:59:44 UTC] Patrik Rak <[email protected]>
* Use correct session class in Current.setup.
Current.setup should honor the passed in arguments even for session.
[866c9cd | 2013-02-21 12:21:46 UTC] Michael Fellinger <[email protected]>
* Version 2013.02.21
[aa22191 | 2013-02-21 12:21:16 UTC] Michael Fellinger <[email protected]>
* update dependencies
[1a2ee39 | 2013-02-07 00:10:01 UTC] Michael Fellinger <[email protected]>
* Version 2013.02
[64ca67a | 2013-01-29 23:34:26 UTC] Michael Fellinger <[email protected]>
* don't do CI for REE, it's not supported anymore, add rbx and jruby 1.9
[079975c | 2013-01-29 21:57:39 UTC] Yorick Peterse <[email protected]>
* Preserve values when calling render_full.
Signed-off-by: Yorick Peterse <[email protected]>
[a90d3f9 | 2013-01-29 21:53:16 UTC] Yorick Peterse <[email protected]>
* Fix for generting URLs using anchor().
Instead of always appending "?" to the URL the anchor() method should only do
so when there actually is a query string.
Signed-off-by: Yorick Peterse <[email protected]>
[d2aeb7f | 2013-01-29 21:17:08 UTC] Yorick Peterse <[email protected]>
* Caching of provides and method arities.
Caching of a controller's provide handlers as well as the method arities can
lead to a nice performance boost of around 300 transactions/second using the
following benchmark:
require 'innate'
Innate.middleware :live do
run Innate.core
end
Innate::Log.level = Logger::ERROR
Innate.options.mode = :live
ENV['RACK_ENV'] = 'none'
class MainController
Innate.node('/', self)
def index
return 'index'
end
end
[:fast_mappings, :cache_provides, :cache_method_arities].each do |key|
MainController.ancestral_trait[key] = true
end
Innate.start(:adapter => :thin)
Benchmarking this was done by running `siege -c 10 -t 5s -b HOST` and would
initially result in around 1700 trans/sec. When using this commit this sits
between 2000/2100 trans/sec.
To prevent any potential issues the caching of provides and method aritites is
disabled by default.
See Github issue #7 for more information.
Signed-off-by: Yorick Peterse <[email protected]>
[06dd4c5 | 2013-01-29 18:25:49 UTC] Yorick Peterse <[email protected]>
* Revert action caching.
Instead of caching the entire action instance (which is modified further down
the chain) various parts that make up this process will be cached instead
(where possible).
Signed-off-by: Yorick Peterse <[email protected]>
[32440b0 | 2013-01-15 18:38:41 UTC] Michael Fellinger <[email protected]>
* prevent memory leak from action caching
[040d084 | 2013-01-15 18:37:19 UTC] Michael Fellinger <[email protected]>
* clean up LRUHash a bit
[a136a72 | 2013-01-14 20:06:22 UTC] Michael Fellinger <[email protected]>
* build middleware only once
[8aea7cb | 2013-01-14 18:31:37 UTC] Yorick Peterse <[email protected]>
* Only compile middleware for the current mode.
Signed-off-by: Yorick Peterse <[email protected]>
[1da947d | 2012-12-07 21:25:01 UTC] Michael Fellinger <[email protected]>
* Version 2012.12
[71dc65d | 2012-12-07 20:24:57 UTC] Yorick Peterse <[email protected]>
* Fixed YARD formatting errors.
Signed-off-by: Yorick Peterse <[email protected]>
[b441fe6 | 2012-12-05 23:18:02 UTC] Yorick Peterse <[email protected]>
* Properly reference to Innate.app.
Signed-off-by: Yorick Peterse <[email protected]>
[1746fe4 | 2012-12-05 22:24:02 UTC] Yorick Peterse <[email protected]>
* Easier way of defining custom middleware.
Instead of requiring developers to monkey-patch the Innate module in order to
add their own middleware people can now use `Innate.middleware` similar to the
traditional `Innate.middleware!` method.
Example use:
Innate.middleware(:dev) do
use Rack::Head
use Rack::Reloader, 2
run Innate.core
end
Signed-off-by: Yorick Peterse <[email protected]>
[42e6a33 | 2012-10-03 22:36:50 UTC] Yorick Peterse <[email protected]>
* Call `Innate.app` instead of `self.app`.
Signed-off-by: Yorick Peterse <[email protected]>
[4988aa7 | 2012-10-03 22:03:46 UTC] Yorick Peterse <[email protected]>
* Fixed Innate.start!
The class method Innate.start! was still relying on the no longer existing
instance variable `@middleware`. This method has been modified to use
`Innate.app` instead.
Signed-off-by: Yorick Peterse <[email protected]>
[6d73762 | 2012-10-03 21:44:03 UTC] Yorick Peterse <[email protected]>
* Removed debugging code and fixed tests.
Various ``p`` statements that were used for debugging purposes have been
removed. I've also fixed the broken specifications by defining
`Innate.middleware_spec`.
Looking at this requirement I'm not entirely sure if having to define a new
method for a custom mode is the way to go. While it certainly keeps things
simple it should be documented *very clearly* if we stick with this.
Mentioning the following people for feedback on this: @manveru, @leucos.
Signed-off-by: Yorick Peterse <[email protected]>
[055454e | 2012-09-24 16:04:05 UTC] Michael Fellinger <[email protected]>
* fix startup with middleware
[9f2943e | 2012-08-09 17:03:05 UTC] Yorick Peterse <[email protected]>
* Clarify the use of blocks when calling provide().
Signed-off-by: Yorick Peterse <[email protected]>
[9b343b8 | 2012-03-22 18:16:47 UTC] Yorick Peterse <[email protected]>
* Documented the Aspect helper.
This commit fixes #6.
Signed-off-by: Yorick Peterse <[email protected]>
[f3bfa25 | 2012-03-17 12:17:40 UTC] Michael Fellinger <[email protected]>
* ignore rbx-19mode
[d76cf9c | 2012-03-15 21:55:45 UTC] Yorick Peterse <[email protected]>
* Innate.start no longer takes a block.
Signed-off-by: Yorick Peterse <[email protected]>
[fbd82c0 | 2012-03-15 20:11:12 UTC] Yorick Peterse <[email protected]>
* No need to call require 'socket'.
Signed-off-by: Yorick Peterse <[email protected]>
[14ff7ef | 2012-03-13 22:41:29 UTC] Michael Fellinger <[email protected]>
* add action caching for double the speed for half the work
[8e360c3 | 2012-03-10 11:01:17 UTC] Michael Fellinger <[email protected]>
* get rid of MiddlewareCompiler and RackFileWrapper
[f133be7 | 2012-03-07 18:27:47 UTC] Michael Fellinger <[email protected]>
* Version 2012.03
[cab2aef | 2012-03-07 18:27:21 UTC] Michael Fellinger <[email protected]>
* update dependency to rack 1.4.1
[e474964 | 2012-03-01 19:22:58 UTC] Yorick Peterse <[email protected]>
* Fixed various YARD formatting issues.
Signed-off-by: Yorick Peterse <[email protected]>
[d82fd1e | 2012-02-26 13:22:09 UTC] Michael Fellinger <[email protected]>
* Enable the render helper to render views without corresponding method if needs_method is enabled
[918974e | 2012-02-26 12:45:50 UTC] Michael Fellinger <[email protected]>
* Fix initialize of Rack::Cascade on 1.4.1
[0e298de | 2011-12-28 17:57:58 UTC] Michael Fellinger <[email protected]>
* Here comes a better Innate::Cache::register, now with less warnings and more speed
[d8a1da4 | 2011-12-28 05:06:07 UTC] Michael Fellinger <[email protected]>
* Version 2011.12
[13f9372 | 2011-12-28 04:54:29 UTC] Michael Fellinger <[email protected]>
* less obfuscation ftw
[10cf300 | 2011-12-28 04:54:09 UTC] Michael Fellinger <[email protected]>
* minor cleanup around specs
[7f61483 | 2011-12-28 04:53:40 UTC] Michael Fellinger <[email protected]>
* Update to Rack 1.4.0
[575e900 | 2011-12-08 17:05:04 UTC] Michael Fellinger <[email protected]>
* Update travis config
[037f35a | 2011-11-06 12:18:30 UTC] Yorick Peterse <[email protected]>
* Revert "AOP calls can now be stacked."
This reverts commit 3ceb18dae7b774ab9b21cba6538b217ba35d5e21.
Signed-off-by: Yorick Peterse <[email protected]>
[3ceb18d | 2011-11-06 11:30:51 UTC] Yorick Peterse <[email protected]>
* AOP calls can now be stacked.
This means that calling methods such as before_all() or before() multiple times
in the same controller will no longer in these calls overwriting previously
defined ones. A short example of this is the following:
class Posts
Innate.node('/posts')
helper :aspect
NUMBERS = []
before_all do
NUMBERS << 10
end
before_all do
NUMBERS << 20
end
def index
return NUMBERS
end
end
Visiting /posts would result in "[10, 20]" being displayed in the browser.
Signed-off-by: Yorick Peterse <[email protected]>
[7ad5d81 | 2011-10-23 17:19:58 UTC] Michael Fellinger <[email protected]>
* Version 2011.10
[013b148 | 2011-10-22 20:12:45 UTC] Michael Fellinger <[email protected]>
* Remove deprecated Innate::Session.options.expires, use Innate::Session.options.ttl instead
[ae24452 | 2011-10-22 20:10:57 UTC] Michael Fellinger <[email protected]>
* Remove deprecated shared :mock block
[7bf2528 | 2011-10-21 23:41:34 UTC] Michael Fellinger <[email protected]>
* Another 1.8 incompatibility in the spec
[97cf46a | 2011-10-21 23:39:23 UTC] Michael Fellinger <[email protected]>
* Make provides spec more robust
[11bdba7 | 2011-10-21 22:38:16 UTC] Michael Fellinger <[email protected]>
* Try requiring rubygems for the lesser versions
[8dcfffb | 2011-10-21 22:35:20 UTC] Michael Fellinger <[email protected]>
* Remove set -x, let's get down to business
[7a5066f | 2011-10-21 22:33:25 UTC] Michael Fellinger <[email protected]>
* Try ignoring trust issues with .rvmrc
[f913028 | 2011-10-21 22:16:06 UTC] Michael Fellinger <[email protected]>
* Load rvm manually
[3791189 | 2011-10-21 22:14:12 UTC] Michael Fellinger <[email protected]>
* turn debugging for rvm on
[845c834 | 2011-10-21 22:11:44 UTC] Michael Fellinger <[email protected]>
* Try debugging and loading bashrc to get rvm
[85ff8df | 2011-10-21 22:09:46 UTC] Michael Fellinger <[email protected]>
* And make things a bit more complicated
[e725da7 | 2011-10-21 21:58:22 UTC] Michael Fellinger <[email protected]>
* try to make travis happy
[acaa77a | 2011-10-21 21:55:48 UTC] Michael Fellinger <[email protected]>
* Move rvm gemset import to the right place
[ac0371c | 2011-10-21 16:30:40 UTC] Michael Fellinger <[email protected]>
* Try setup via .rvmrc .gems
[156e09b | 2011-10-21 16:30:21 UTC] Michael Fellinger <[email protected]>
* Remove dependency on json
[b5ca6a3 | 2011-10-21 15:53:08 UTC] Michael Fellinger <[email protected]>
* Run setup before bacon
[0426977 | 2011-10-21 15:47:21 UTC] Michael Fellinger <[email protected]>
* Revert "Remove the unused gem install task"
This reverts commit 3e1cc52743470886f7b50db633535bcf6765b638.
[3e1cc52 | 2011-10-21 15:36:30 UTC] Michael Fellinger <[email protected]>
* Remove the unused gem install task
[9390547 | 2011-10-21 15:36:15 UTC] Michael Fellinger <[email protected]>
* Fix location of RUBY
[f086a10 | 2011-10-21 15:35:46 UTC] Michael Fellinger <[email protected]>
* Fix the gem package task
[bed5d5a | 2011-10-21 15:35:02 UTC] Michael Fellinger <[email protected]>
* Update rvmrc
[965ed57 | 2011-10-21 15:20:10 UTC] Michael Fellinger <[email protected]>
* Adding travis config
[e9b0d7c | 2011-09-23 10:06:54 UTC] Yorick Peterse <[email protected]>
* Updated the README, fixes #5
Signed-off-by: Yorick Peterse <[email protected]>
[157a09d | 2011-08-18 08:00:28 UTC] YorickPeterse <[email protected]>
* Added a .rvmrc file and updated the .gitignore file to exclude rcov data.
[7df330c | 2011-07-20 08:09:53 UTC] Michael Fellinger <[email protected]>
* Update spec file exclusion
[a4eb56a | 2011-06-01 23:07:46 UTC] Michael Fellinger <[email protected]>
* Update Node documentation
[d05190a | 2011-04-19 09:37:16 UTC] Michael Fellinger <[email protected]>
* Version 2011.04
[bacc603 | 2011-04-19 09:37:03 UTC] Michael Fellinger <[email protected]>
* Remove rubyforge release task
[05ccf96 | 2011-04-19 09:31:28 UTC] Michael Fellinger <[email protected]>
* Node::find_method must accept anything that responds to #to_s as method name
[8d4bfd0 | 2011-02-14 07:07:12 UTC] Michael Fellinger <[email protected]>
* Don't mention :state, it's gone
[2b3a9ca | 2011-01-26 14:12:26 UTC] Michael Fellinger <[email protected]>
* Version 2011.01
[6039ffa | 2010-12-11 21:58:04 UTC] Michael Fellinger <[email protected]>
* Adjust spec for changes in Rack
[5e30254 | 2010-09-17 17:58:10 UTC] Antti Tuomi <[email protected]>
* New method for Innate::Session, #resid!, that can be used to change the session key.
The intent of the method is to allow changing session keys when user logs in
to prevent certain session fixation attack vectors. #resid! moves all
session data under a new session key and thus invalidates the old key.
It is probably a good idea to explicitly reset the session data as well on
login, but the necessity of this depends on the application.
[85d45ea | 2010-09-07 08:14:44 UTC] Lee Jarvis <[email protected]>
* updated git url
[51eac73 | 2010-09-07 06:25:22 UTC] Lee Jarvis <[email protected]>
* added gitignore
[32c943c | 2010-09-06 13:02:25 UTC] Lee Jarvis <[email protected]>
* fixed pointless spec addition
[b180c1c | 2010-09-06 13:00:44 UTC] Lee Jarvis <[email protected]>
* added specs for helper suffix
[c7fccc6 | 2010-09-06 12:50:45 UTC] Lee Jarvis <[email protected]>
* removed send_file helper spec
[49c9963 | 2010-09-06 12:49:54 UTC] Lee Jarvis <[email protected]>
* removed send_file from default helpers
[4ca7b0c | 2010-09-06 12:22:23 UTC] Lee Jarvis <[email protected]>
* allow helper modules to be suffixed with 'helper'
this allows us to create helpers which may have identical names as
Models without having namespace conflicts
[7d8437e | 2010-08-26 22:12:26 UTC] Michael Fellinger <[email protected]>
* Support HttpOnly
[1183bca | 2010-08-20 21:15:58 UTC] Lee Jarvis <[email protected]>
* moved send_file helper to ramaze
[6412640 | 2010-07-21 11:32:15 UTC] injekt <[email protected]>
* fixed readme formatting
[1ac3e6f | 2010-07-21 11:31:27 UTC] injekt <[email protected]>
* updated installation docs
[f4ecc85 | 2010-07-11 23:34:26 UTC] Michael Fellinger <[email protected]>
* Version 2010.07
[d11be17 | 2010-07-11 23:24:19 UTC] Michael Fellinger <[email protected]>
* Fix issue with Ruby 1.9.2
[154fdf8 | 2010-06-30 13:53:50 UTC] Michael Fellinger <[email protected]>
* Fix typo
[231b0ee | 2010-06-17 22:40:37 UTC] Michael Fellinger <[email protected]>
* Version 2010.06.18
[ce8b903 | 2010-06-17 22:40:10 UTC] Michael Fellinger <[email protected]>
* Allow latest version of Rack
[dbaaeb5 | 2010-06-03 15:00:56 UTC] Lee Jarvis <[email protected]>
* edited documentation for render_view
[55bf889 | 2010-05-04 09:29:07 UTC] Michael Fellinger <[email protected]>
* Remove AccessLog option from webrick handler to avoid log duplication
[32886da | 2010-04-11 11:42:13 UTC] Zoxc <[email protected]>
* Updated Etanni specs.
[9bf55e5 | 2010-04-11 11:30:17 UTC] Zoxc <[email protected]>
* Some tweaks to Etanni.
[3502814 | 2010-04-09 16:49:07 UTC] Michael Fellinger <[email protected]>
* Major speedup for Etanni as suggested by Zoxc
[b796644 | 2010-04-04 07:56:06 UTC] Michael Fellinger <[email protected]>
* Version 2010.04
[1aeacca | 2010-04-03 21:45:46 UTC] injekt <[email protected]>
* fixed redirect spec
[0a71ec2 | 2010-04-03 21:42:52 UTC] injekt <[email protected]>
* fixed redirect spec
[6eedc76 | 2010-03-29 21:07:51 UTC] injekt <[email protected]>
* minor fixes to README
[b5787a4 | 2010-03-29 15:31:03 UTC] injekt <[email protected]>
* Added support for case-insensitive View lookups
Removed case sensitive restriction when using Controller::engine
for View lookup; :haml is as good as :Haml
[edc00df | 2010-03-27 22:55:07 UTC] injekt <[email protected]>
* fixed doc for flash helper (depreciated method)
[2e4bdbd | 2010-03-24 14:18:35 UTC] Michael Fellinger <[email protected]>
* Add spec for how to pass arguments to provide actions
[d09ff45 | 2010-03-19 00:37:27 UTC] Michael Fellinger <[email protected]>
* Fix some issues, don't split Content-Type at all
[abe842c | 2010-03-19 00:33:41 UTC] Michael Fellinger <[email protected]>
* Make sure ; doesn't break Content-Type
[acce333 | 2010-03-18 11:26:03 UTC] Michael Fellinger <[email protected]>
* The Response Content-Type option should influence default mime type
[7ad4de7 | 2010-03-11 12:44:42 UTC] crab <[email protected]>
* use Innate.options.prefix as redirect fallback
[e13e2b2 | 2010-03-09 09:48:06 UTC] Michael Fellinger <[email protected]>
* Fix .dup in Rakefile
[4fa40fc | 2010-03-08 21:53:00 UTC] Michael Fellinger <[email protected]>
* Version 2010.03
[c48a647 | 2010-02-03 15:59:05 UTC] Michael Fellinger <[email protected]>
* Add a spec for Etanni
[baa0dd8 | 2010-01-17 14:57:44 UTC] Michael Fellinger <[email protected]>
* clarify precedence
[c9fa60f | 2010-01-06 15:14:40 UTC] Michael Fellinger <[email protected]>
* Set correct header in referrer spec
[59f03da | 2010-01-06 15:10:22 UTC] Michael Fellinger <[email protected]>
* Fix request spec for new rack behaviour
[82cd8d9 | 2010-01-06 14:53:24 UTC] Michael Fellinger <[email protected]>
* Version 2010.01
[2511e2b | 2010-01-06 14:52:49 UTC] Michael Fellinger <[email protected]>
* Update Rakefile
[07f9238 | 2009-12-01 22:57:56 UTC] Michael Fellinger <[email protected]>
* Revert "Major performance improvement for Etanni."
This reverts commit 1b736b793e9f31cf79fad2820f3f20a00802c2c8.
[1b736b7 | 2009-12-01 03:17:23 UTC] Zoxc <[email protected]>
* Major performance improvement for Etanni.
[7b14652 | 2009-11-30 17:50:01 UTC] Zoxc <[email protected]>
* Performance improvement for Etanni.
[17dba1a | 2009-11-19 03:12:29 UTC] Michael Fellinger <[email protected]>
* Remove comment
[aac4faf | 2009-11-16 21:16:56 UTC] Lin Jen-Shin <[email protected]>
* [helper/render.rb] dup on variables arg is not needed. never refered.
[5d1e95d | 2009-11-16 20:52:12 UTC] Lin Jen-Shin <[email protected]>
* [helper/render.rb] fixed render_file's sync_variables. see detail:
This line syncs variables from current action to newly created action:
action.sync_variables(self.action)
but later this line eliminates above effect:
action.variables = variables.dup
Assume we would like variables from current action, but
would like to override (or hide, shadow) them by passing
another hash of variables in render_file's second arguments.
Then change that line to:
action.variables.merge!(variables.dup)
spec this behavior in SpecHelperRenderFile.
[42b5ec5 | 2009-10-28 20:43:54 UTC] Lin Jen-Shin <[email protected]>
* Add a simple Unicorn wrapper in innate/adapter.rb
[14a340f | 2009-10-18 01:01:48 UTC] Michael Fellinger <[email protected]>
* Allow skipping the template discovery to speed things up
[d02bd71 | 2009-10-18 00:50:51 UTC] Michael Fellinger <[email protected]>
* Fix gem_setup task
[0f3c5fe | 2009-10-05 16:32:30 UTC] Michael Fellinger <[email protected]>
* Allow for change of the default action name as proposed by Daniel Azuma
[ee96b28 | 2009-10-04 15:37:44 UTC] Michael Fellinger <[email protected]>
* Remove temp README
[3e90299 | 2009-10-04 15:37:07 UTC] Michael Fellinger <[email protected]>
* Fix precedence issue in redirect_referer
[44f40da | 2009-10-03 21:33:11 UTC] Arnaud Meuret <[email protected]>
* Typos and minor rephrasing.
[7ad5fd9 | 2009-10-02 22:04:37 UTC] Michael Fellinger <[email protected]>
* Sync metadata after release
[1b0702f | 2009-10-02 20:24:16 UTC] Michael Fellinger <[email protected]>
* Version 2009.10
[88451a1 | 2009-10-02 20:23:53 UTC] Michael Fellinger <[email protected]>
* Improve the release tasks, add one for gemcutter
[c37df32 | 2009-10-01 18:16:02 UTC] Arnaud Meuret <[email protected]>
* Fix: specifying a layout from a method and a filter block was broken
[18668be | 2009-09-29 21:13:13 UTC] Michael Fellinger <[email protected]>
* Update dependencies
[672bbaa | 2009-09-22 22:15:44 UTC] Michael Fellinger <[email protected]>
* Use Rack::Utils::build_query, this changes query separator from ; to &
[0d4d2d1 | 2009-09-22 22:04:05 UTC] Michael Fellinger <[email protected]>
* Improve code readability a bit
[44d02ed | 2009-09-22 00:02:09 UTC] Michael Fellinger <[email protected]>
* Use Mutex instead of Thread::critical
[1b80af6 | 2009-09-22 00:00:42 UTC] Michael Fellinger <[email protected]>
* Fix ruby/jruby dependency mixup
[783f554 | 2009-09-21 23:32:07 UTC] Michael Fellinger <[email protected]>
* Fix startup issue regarding jruby-rack
[a908b32 | 2009-09-15 14:15:48 UTC] Michael Fellinger <[email protected]>
* Fix typo
[79df3a5 | 2009-08-27 15:21:05 UTC] Michael Fellinger <[email protected]>
* Don't call aspects in layout
[b69e9dd | 2009-08-27 10:55:08 UTC] Michael Fellinger <[email protected]>
* Fix Options#pretty_print spec
[6b8c32d | 2009-08-27 10:36:53 UTC] Michael Fellinger <[email protected]>
* dev dependencies for jruby
[0bb6ea5 | 2009-08-26 23:59:01 UTC] Michael Fellinger <[email protected]>
* Forgot to require digest/md5
[2bc0566 | 2009-08-19 15:27:37 UTC] Michael Fellinger <[email protected]>
* Cache is not a module
[c74c2b8 | 2009-08-17 12:37:02 UTC] Michael Fellinger <[email protected]>
* fix doc typo
[9650f8c | 2009-07-28 13:49:20 UTC] Michael Fellinger <[email protected]>
* Some more specs for double underscore
[822560a | 2009-07-28 13:43:32 UTC] Michael Fellinger <[email protected]>
* Expand specs for double underscore
[b865335 | 2009-05-21 20:27:38 UTC] Antti Tuomi <[email protected]>
* Aspect spec uses inline layout instead a file-based.
Also prefixed DerivedWithLayout with the helper name.
Signed-off-by: Michael Fellinger <[email protected]>
[62d8853 | 2009-05-21 20:16:57 UTC] Antti Tuomi <[email protected]>
* Aspect spec checks the functionality when using layouts.
This spec fails at the moment.
Signed-off-by: Michael Fellinger <[email protected]>
[e4735cb | 2009-05-27 21:57:48 UTC] ravage <[email protected]>
* Resolve fake depth
Signed-off-by: Michael Fellinger <[email protected]>
[10d7ef3 | 2009-07-21 23:11:57 UTC] Jérémy Zurcher <[email protected]>
* fix default option handling overriding in options/dsl
Signed-off-by: Michael Fellinger <[email protected]>
[03274f3 | 2009-07-19 10:02:21 UTC] Michael Fellinger <[email protected]>
* Version 2009.07
[3ed8553 | 2009-07-19 10:01:48 UTC] Michael Fellinger <[email protected]>
* Update dependencies
[4e09c15 | 2009-07-06 17:12:43 UTC] Michael Fellinger <[email protected]>
* Implement an OpenSSL fallback for Session IDs
Comes into play in case SecureRandom cannot be found.
This should cover 99% of all < 1.8.7 installs.
[cf9cdce | 2009-07-02 15:05:45 UTC] Michael Fellinger <[email protected]>
* More intelligent gem_setup to handle cases where a library can be found via require but ain't a gem
[337f092 | 2009-07-02 15:05:02 UTC] Michael Fellinger <[email protected]>
* Use absolute paths for spec requires
[7a475b9 | 2009-06-14 21:14:47 UTC] Michael Fellinger <[email protected]>
* Require rubygems >= 1.3.1
[7f41b89 | 2009-06-12 19:54:32 UTC] Michael Fellinger <[email protected]>
* Version 2009.06.12
[e92a8b3 | 2009-06-11 22:41:35 UTC] Michael Fellinger <[email protected]>
* Make sure that instance-variables set in the view template can be used in the layout
[84ce0d8 | 2009-06-03 18:09:09 UTC] Michael Fellinger <[email protected]>
* Fix the bacon task dependency
[46de89c | 2009-06-02 18:50:26 UTC] Michael Fellinger <[email protected]>
* Version 2009.06
[e05a004 | 2009-06-02 18:49:17 UTC] Michael Fellinger <[email protected]>
* Use rubygems development-dependencies, improve rake setup
[2575c64 | 2009-06-01 12:46:46 UTC] Michael Fellinger <[email protected]>
* Allow passing Innate.start(:root => [path1, path2])
[5104984 | 2009-06-01 12:11:26 UTC] Michael Fellinger <[email protected]>
* Move innate/spec to innate/spec/bacon and make innate/spec require that
[9047159 | 2009-06-01 12:08:17 UTC] Michael Fellinger <[email protected]>
* Deprecate behaves_like(:mock), use behaves_like(:rack_test) instead
[ba27790 | 2009-06-01 12:07:42 UTC] Michael Fellinger <[email protected]>
* Fix Request#subset spec for latest Rack
[e0bb6db | 2009-05-28 15:05:35 UTC] Michael Fellinger <[email protected]>
* Make the cookie ttl optional
[76e4377 | 2009-05-22 16:04:37 UTC] Michael Fellinger <[email protected]>
* Allow #write on the logger
[3890ba7 | 2009-05-19 09:38:31 UTC] Michael Fellinger <[email protected]>
* Fix some yard tags
[18002ee | 2009-05-16 12:32:55 UTC] Michael Fellinger <[email protected]>
* Iterate logging arguments before they reach the logger
[8d43aad | 2009-05-16 11:15:46 UTC] Michael Fellinger <[email protected]>
* Try to improve render_file so it works form anywhere
[8f5d193 | 2009-05-14 22:22:54 UTC] Michael Fellinger <[email protected]>
* Reverse order in middleware
[9c3b2b9 | 2009-05-09 14:25:14 UTC] Michael Fellinger <[email protected]>
* Deprecate Innate::Session.options.expires, use ttl instead. Set maximum ttl to 30 days
[d343c9e | 2009-05-08 11:16:50 UTC] Ryan Grove <[email protected]>
* Make Innate::Session.sid public
Signed-off-by: Michael Fellinger <[email protected]>
[89c79de | 2009-05-06 21:42:03 UTC] Pistos <[email protected]>
* Adjusted pretty_print spec again. Made it looser, since we don't really care much about it because it doesn't significantly affect Ramaze functionality.
Signed-off-by: Michael Fellinger <[email protected]>
[220ae9e | 2009-05-05 19:43:51 UTC] Pistos <[email protected]>
* Adjusted Innate::Options#pretty_print spec to work across more systems and conditions, yet still test something non-trivial.
Signed-off-by: Michael Fellinger <[email protected]>
[e51e888 | 2009-05-06 22:50:47 UTC] Michael Fellinger <[email protected]>
* Polish things a bit more where they went wrong during release
[5138050 | 2009-05-06 22:38:00 UTC] Michael Fellinger <[email protected]>
* Version 2009.05
[9486b35 | 2009-05-06 22:37:19 UTC] Michael Fellinger <[email protected]>
* VERSION=xxx rake release:xxx
[14feedf | 2009-05-06 22:33:48 UTC] Michael Fellinger <[email protected]>
* Bring rakefile up to date
[2252c28 | 2009-05-06 22:20:19 UTC] Michael Fellinger <[email protected]>
* Last minute changes to tasks
[ddc4560 | 2009-05-06 22:14:56 UTC] Michael Fellinger <[email protected]>
* Add some ycov tasks, not all that tested yet
[146e349 | 2009-05-06 19:56:27 UTC] Michael Fellinger <[email protected]>
* raise a more meaningful error when trying to assign to a non-existent option
[21bbd9b | 2009-05-05 13:08:06 UTC] Michael Fellinger <[email protected]>
* Remove some (c)
[8fd62a3 | 2009-05-05 11:48:32 UTC] Michael Fellinger <[email protected]>
* Make Session compatible with the Rack spec, prepare to make it a middleware
[a73a54e | 2009-05-05 11:37:25 UTC] Michael Fellinger <[email protected]>
* Tell people that using YAML/Marshal cache is a bad idea in some cases
[fff4e2a | 2009-05-05 11:30:24 UTC] Michael Fellinger <[email protected]>
* Some docs fixes
[d90138c | 2009-05-04 18:19:35 UTC] Ryan Grove <[email protected]>
* Add a read_cache option (off by default) to control caching of template files on read
[aaa9b96 | 2009-05-03 11:04:18 UTC] Ryan Grove <[email protected]>
* When the view cache is enabled and Innate is in :live mode, cache view files after the first read to prevent unnecessary filesystem reads in the future.
[06c224f | 2009-05-04 23:49:15 UTC] Michael Fellinger <[email protected]>
* Fix update_mapping_shared, it would try to walk files and was buggy
[e3ad651 | 2009-05-04 10:28:49 UTC] Michael Fellinger <[email protected]>
* remove specs for state
[f69716d | 2009-05-04 00:37:06 UTC] Michael Fellinger <[email protected]>
* Implement caching of traits
[0434785 | 2009-05-02 22:56:05 UTC] Michael Fellinger <[email protected]>