torquebox-generators 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -2,20 +2,17 @@
2
2
 
3
3
  Rails generators for apps using TorqueBox (http://www.torquebox.org).
4
4
 
5
- Two generators are provided:
5
+ Add "torquebox-generators" to your Gemfile, then "bundle install".
6
6
 
7
- 1. rails g torquebox:service MyService
8
- 2. rails g torquebox:job MyJob
7
+ Two generator commands are provided:
9
8
 
10
- == Contributing to torquebox-generators
9
+ 1. rails g torque_box:service MyService
11
10
 
12
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
13
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
14
- * Fork the project
15
- * Start a feature/bugfix branch
16
- * Commit and push until you are happy with your contribution
17
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
18
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
11
+ This command creates a Ruby class at app/services/my_service.rb with 4 predefined methods.
12
+
13
+ 2. rails g torque_box:job MyJob
14
+
15
+ This command creates a Ruby class at app/jobs/my_job.rb with a predefined run method.
19
16
 
20
17
  == Copyright
21
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -7,7 +7,7 @@ Description:
7
7
  This generator creates a Ruby class that implements a run() method.
8
8
 
9
9
  Example:
10
- rails g torquebox:job MyJob
10
+ rails g torque_box:job MyJob
11
11
 
12
12
  This will create:
13
13
  app/jobs/my_job.rb
@@ -3,7 +3,7 @@ Description:
3
3
  This generator creates a Ruby class that implements initialize(Hash), start() and stop() methods.
4
4
 
5
5
  Example:
6
- rails g torquebox:service MyService
6
+ rails g torque_box:service MyService
7
7
 
8
8
  This will create:
9
9
  app/services/my_service.rb
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{torquebox-generators}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Larry Staton Jr.}]
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.0
5
+ version: 0.2.1
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: -113300150717171270
85
+ hash: -1049507088222415960
86
86
  segments:
87
87
  - 0
88
88
  version: "0"