torquebox-generators 0.2.1 → 0.2.2
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 +3 -3
- data/VERSION +1 -1
- data/lib/generators/torquebox/job/USAGE +1 -1
- data/lib/generators/torquebox/job/job_generator.rb +1 -1
- data/lib/generators/torquebox/service/USAGE +1 -1
- data/lib/generators/torquebox/service/service_generator.rb +1 -1
- data/torquebox-generators.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
= torquebox-generators
|
2
2
|
|
3
|
-
Rails generators for apps using TorqueBox (http://www.torquebox.org).
|
3
|
+
Rails 3 generators for apps using TorqueBox (http://www.torquebox.org).
|
4
4
|
|
5
5
|
Add "torquebox-generators" to your Gemfile, then "bundle install".
|
6
6
|
|
7
7
|
Two generator commands are provided:
|
8
8
|
|
9
|
-
1. rails g
|
9
|
+
1. rails g torquebox:service MyService
|
10
10
|
|
11
11
|
This command creates a Ruby class at app/services/my_service.rb with 4 predefined methods.
|
12
12
|
|
13
|
-
2. rails g
|
13
|
+
2. rails g torquebox:job MyJob
|
14
14
|
|
15
15
|
This command creates a Ruby class at app/jobs/my_job.rb with a predefined run method.
|
16
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: torquebox-generators
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.2.
|
5
|
+
version: 0.2.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Larry Staton Jr.
|
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
82
|
requirements:
|
83
83
|
- - ">="
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
hash:
|
85
|
+
hash: 959422179257246647
|
86
86
|
segments:
|
87
87
|
- 0
|
88
88
|
version: "0"
|