forked from pluginaweek/state_machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
state_machine.gemspec
21 lines (19 loc) · 951 Bytes
/
state_machine.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'state_machine/version'
Gem::Specification.new do |s|
s.name = "state_machine"
s.version = StateMachine::VERSION
s.authors = ["Aaron Pfeifer"]
s.email = "[email protected]"
s.homepage = "http://www.pluginaweek.org"
s.description = "Adds support for creating state machines for attributes on any Ruby class"
s.summary = "State machines for attributes"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.rdoc_options = %w(--line-numbers --inline-source --title state_machine --main README.md)
s.extra_rdoc_files = %w(README.md CHANGELOG.md LICENSE)
s.add_development_dependency("rake")
s.add_development_dependency("simplecov")
s.add_development_dependency("appraisal", "~> 0.4.0")
end