resource_controller 0.5.0 → 0.5.1
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/README.rdoc +8 -0
- data/lib/resource_controller/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -6,10 +6,18 @@ resource_controller makes RESTful controllers easier, more maintainable, and sup
|
|
6
6
|
|
7
7
|
Add it as a gem dependency
|
8
8
|
|
9
|
+
config.gem 'resource_controller'
|
10
|
+
|
11
|
+
...or for the development version
|
12
|
+
|
9
13
|
config.gem 'giraffesoft-resource_controller', :lib => 'resource_controller', :source => 'http://gems.github.com'
|
10
14
|
|
11
15
|
Or install it as a gem manually
|
12
16
|
|
17
|
+
sudo gem install resource_controller
|
18
|
+
|
19
|
+
...or for the development version
|
20
|
+
|
13
21
|
sudo gem install giraffesoft-resource_controller
|
14
22
|
|
15
23
|
Or grab the source
|