forked from mdh/ssm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_state_machine.gemspec
31 lines (28 loc) · 1.16 KB
/
simple_state_machine.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_state_machine/version"
Gem::Specification.new do |s|
s.name = %q{simple_state_machine}
s.version = SimpleStateMachine::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Marek de Heus", "Petrik de Heus"]
s.description = %q{Simple State Machine is a state machine that focuses on events instead of states}
s.email = ["[email protected]"]
s.homepage = %q{http://github.com/mdh/ssm}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A simple DSL to decorate existing methods with logic that guards state transitions.}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.add_development_dependency "rake"
s.add_development_dependency "ZenTest"
s.add_development_dependency "rspec"
s.add_development_dependency "activerecord", "~>2.3.5"
s.add_development_dependency "sqlite3-ruby"
end