-
Notifications
You must be signed in to change notification settings - Fork 121
/
CHANGELOG
59 lines (37 loc) · 1.19 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
== 0.15.1 (30 August, 2011)
== 0.15 Crazy Apes (13 August, 2011)
* Support for Chunked transfer encoding transport.
Example:
class ChunkedAction < Cramp::Action
self.transport = :chunked
on_start :send_data
def send_data
render "Chunk 1"
render "Chunk 2"
end
end
== 0.14 Asgard (5 August, 2011)
* Add an option to the application generator for configuring async Active Record.
Example:
$ cramp new liveblog --with-active-record
or
$ cramp new liveblog -M
* Barebone application generator using Thor.
Example:
$ cramp new liveblog
== 0.13 Facelift (31 July, 2011)
* Added use_fiber_pool for wrapping every on_start/on_finish/periodic_timer callbacks within a Fiber. Default fiber pool size is 100.
Example:
class FibersController < Cramp::Action
use_fiber_pool :size => 200
def start
render "Hello World"
finish
end
end
* Vendor Mohammad Ali's awesome FiberPool
* Make it easy to choose the transport method dynamically using self.transport at class level or from before_start callbacks
* Added long polling support
* Added SSE support
== 0.12 Sanity Restored
* Fixed all the gem dependencies. Extracted tramp.