simple_state_machine 0.3.1 → 0.3.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/Rakefile +1 -1
- data/VERSION +1 -1
- data/simple_state_machine.gemspec +2 -2
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -8,7 +8,7 @@ begin
|
|
|
8
8
|
gem.summary = %Q{A statemachine that focuses on events instead of states}
|
|
9
9
|
gem.description = %Q{A simple DSL to decorate existing methods with logic that guards state transitions.}
|
|
10
10
|
gem.email = ["FIX@example.com"]
|
|
11
|
-
gem.homepage = "http://github.com/
|
|
11
|
+
gem.homepage = "http://github.com/mdh/ssm"
|
|
12
12
|
gem.authors = ["Marek de Heus", "Petrik de Heus"]
|
|
13
13
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
14
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.2
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{simple_state_machine}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Marek de Heus", "Petrik de Heus"]
|
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
|
37
37
|
"spec/spec.opts",
|
|
38
38
|
"spec/spec_helper.rb"
|
|
39
39
|
]
|
|
40
|
-
s.homepage = %q{http://github.com/
|
|
40
|
+
s.homepage = %q{http://github.com/mdh/ssm}
|
|
41
41
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
42
42
|
s.require_paths = ["lib"]
|
|
43
43
|
s.rubygems_version = %q{1.3.7}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_state_machine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.3.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Marek de Heus
|
|
@@ -66,7 +66,7 @@ files:
|
|
|
66
66
|
- spec/spec.opts
|
|
67
67
|
- spec/spec_helper.rb
|
|
68
68
|
has_rdoc: true
|
|
69
|
-
homepage: http://github.com/
|
|
69
|
+
homepage: http://github.com/mdh/ssm
|
|
70
70
|
licenses: []
|
|
71
71
|
|
|
72
72
|
post_install_message:
|