public
Description: response for lets you decorate your actions respond_to blocks
Homepage: http://blog.ardes.com/response_for
Clone URL: git://github.com/ianwhite/response_for.git
Click here to lend your support to: response_for and make a donation at www.pledgie.com !
Adding stuff for 0.2.1
ianwhite (author)
Fri Oct 10 01:13:56 -0700 2008
commit  3d94fabcf545d0c46710b1c3832be9bd774259b4
tree    0886157f2bbc1acb075a93862954b3b3528c43ab
parent  d8ca73c5b9a8deb0b879eaff4d6c2f7cf8faf003
...
 
 
1
2
3
...
1
2
3
4
5
0
@@ -1,3 +1,5 @@
0
+* Added VERSION introspection, this is 0.2.1
0
+
0
 * To facilitate making reusable chunks of actions and responses, simply extend Ardes::ResponsesModule into
0
   your action modules.  See Ardes::ResponsesModule for details
0
 
...
163
164
165
 
 
 
 
 
 
 
 
166
167
168
...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
0
@@ -163,5 +163,13 @@ module Ardes #:nodoc:
0
         end
0
       end
0
     end
0
+    
0
+    module VERSION #:nodoc:
0
+      MAJOR = 0
0
+      MINOR = 2
0
+      TINY  = 1
0
+
0
+      STRING = [MAJOR, MINOR, TINY].join('.')
0
+    end
0
   end
0
 end
0
\ No newline at end of file

Comments