minimal_state_machine 0.0.1 → 0.0.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/lib/generators/minimal_state_machine/minimal_state_machine_generator.rb +1 -1
- data/lib/generators/minimal_state_machine/templates/create_msm_states.rb +9 -0
- data/lib/minimal_state_machine/version.rb +1 -1
- data/minimal_state_machine.gemspec +1 -1
- metadata +3 -3
- data/lib/generators/minimal_state_machine/templates/create_states.rb +0 -9
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
|
|
9
9
|
gem.authors = ["Matteo Depalo"]
|
10
10
|
gem.email = ["matteodepalo@gmail.com"]
|
11
11
|
gem.description = %q{A state machine for activerecord implemented with the state pattern}
|
12
|
-
gem.summary = %q{A state machine
|
12
|
+
gem.summary = %q{A state machine}
|
13
13
|
gem.homepage = ""
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal_state_machine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -90,7 +90,7 @@ files:
|
|
90
90
|
- Rakefile
|
91
91
|
- db/minimal_state_machine.sqlite3
|
92
92
|
- lib/generators/minimal_state_machine/minimal_state_machine_generator.rb
|
93
|
-
- lib/generators/minimal_state_machine/templates/
|
93
|
+
- lib/generators/minimal_state_machine/templates/create_msm_states.rb
|
94
94
|
- lib/minimal_state_machine.rb
|
95
95
|
- lib/minimal_state_machine/state.rb
|
96
96
|
- lib/minimal_state_machine/version.rb
|
@@ -120,7 +120,7 @@ rubyforge_project:
|
|
120
120
|
rubygems_version: 1.8.24
|
121
121
|
signing_key:
|
122
122
|
specification_version: 3
|
123
|
-
summary: A state machine
|
123
|
+
summary: A state machine
|
124
124
|
test_files:
|
125
125
|
- spec/minimal_state_machine_spec.rb
|
126
126
|
- spec/spec_helper.rb
|