torquebox-generators 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 torque_box:service MyService
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 torque_box:job MyJob
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
1
+ 0.2.2
@@ -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 torque_box:job MyJob
10
+ rails g torquebox:job MyJob
11
11
 
12
12
  This will create:
13
13
  app/jobs/my_job.rb
@@ -1,4 +1,4 @@
1
- module TorqueBox
1
+ module Torquebox
2
2
  class JobGenerator < Rails::Generators::NamedBase
3
3
  source_root File.expand_path('../templates', __FILE__)
4
4
 
@@ -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 torque_box:service MyService
6
+ rails g torquebox:service MyService
7
7
 
8
8
  This will create:
9
9
  app/services/my_service.rb
@@ -1,4 +1,4 @@
1
- module TorqueBox
1
+ module Torquebox
2
2
  class ServiceGenerator < Rails::Generators::NamedBase
3
3
  source_root File.expand_path('../templates', __FILE__)
4
4
 
@@ -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.1"
8
+ s.version = "0.2.2"
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.1
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: -1049507088222415960
85
+ hash: 959422179257246647
86
86
  segments:
87
87
  - 0
88
88
  version: "0"