reststop 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.txt +21 -1
- data/LICENSE.txt +159 -668
- data/Manifest.txt +7 -4
- data/README.txt +52 -8
- data/Rakefile +3 -2
- data/examples/blog.rb +345 -0
- data/lib/restr.rb +126 -0
- data/lib/reststop.rb +226 -39
- data/lib/reststop/version.rb +9 -0
- metadata +17 -10
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: reststop
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.2.0
|
7
|
+
date: 2007-12-18 00:00:00 -05:00
|
8
8
|
summary: Convenient RESTfulness for all your Camping needs (i.e. makes it easy to implement RESTful controllers in Camping).
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -29,21 +29,28 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Matt Zukowski
|
31
31
|
files:
|
32
|
-
- Rakefile
|
33
|
-
- README.txt
|
34
32
|
- CHANGELOG.txt
|
35
33
|
- LICENSE.txt
|
36
34
|
- Manifest.txt
|
37
|
-
-
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- examples/blog.rb
|
38
|
+
- lib/restr.rb
|
38
39
|
- lib/reststop.rb
|
39
|
-
-
|
40
|
+
- lib/reststop/version.rb
|
41
|
+
- setup.rb
|
40
42
|
- test/reststop_test.rb
|
43
|
+
- test/test_helper.rb
|
41
44
|
test_files:
|
42
45
|
- test/reststop_test.rb
|
43
|
-
rdoc_options:
|
44
|
-
|
45
|
-
|
46
|
-
|
46
|
+
rdoc_options:
|
47
|
+
- --main
|
48
|
+
- README.txt
|
49
|
+
extra_rdoc_files:
|
50
|
+
- CHANGELOG.txt
|
51
|
+
- LICENSE.txt
|
52
|
+
- Manifest.txt
|
53
|
+
- README.txt
|
47
54
|
executables: []
|
48
55
|
|
49
56
|
extensions: []
|