micromachine 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. data/micromachine.gemspec +2 -1
  2. metadata +15 -4
data/micromachine.gemspec CHANGED
@@ -1,10 +1,11 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'micromachine'
3
- s.version = '1.0.2'
3
+ s.version = '1.0.3'
4
4
  s.summary = %{Minimal Finite State Machine.}
5
5
  s.description = %Q{There are many finite state machine implementations for Ruby, and they all provide a nice DSL for declaring events, exceptions, callbacks, and all kinds of niceties in general.\n\nBut if all you want is a finite state machine, look no further: this has less than 50 lines of code and provides everything a finite state machine must have, and nothing more.}
6
6
  s.author = "Michel Martens"
7
7
  s.email = "michel@soveran.com"
8
8
  s.homepage = "http://github.com/soveran/micromachine"
9
9
  s.files = Dir["lib/**/*.rb", "README*", "LICENSE", "Rakefile", "*.gemspec", "example/**/*.*"]
10
+ s.add_development_dependency 'contest'
10
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: micromachine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,19 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-30 00:00:00.000000000 Z
13
- dependencies: []
12
+ date: 2012-04-16 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: contest
16
+ requirement: &2156010040 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *2156010040
14
25
  description: ! 'There are many finite state machine implementations for Ruby, and
15
26
  they all provide a nice DSL for declaring events, exceptions, callbacks, and all
16
27
  kinds of niceties in general.
@@ -49,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
60
  version: '0'
50
61
  requirements: []
51
62
  rubyforge_project:
52
- rubygems_version: 1.8.10
63
+ rubygems_version: 1.8.11
53
64
  signing_key:
54
65
  specification_version: 3
55
66
  summary: Minimal Finite State Machine.