-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstate_pattern.gemspec
More file actions
27 lines (25 loc) · 910 Bytes
/
state_pattern.gemspec
File metadata and controls
27 lines (25 loc) · 910 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{state_pattern}
s.description = "A ruby state pattern implementation"
s.version = "2.0.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Daniel Cadenas"]
s.date = %q{2010-10-09}
s.email = %q{dcadenas@gmail.com}
s.files = [
".document",
".gitignore",
"LICENSE",
"README.md",
"Rakefile",
"rails/init.rb"
] + Dir[File.join(File.dirname(__FILE__),'lib/**/*')]
s.homepage = %q{http://github.com/dcadenas/state_pattern}
s.require_paths = ["lib"]
s.rubyforge_project = %q{statepattern}
s.rubygems_version = %q{1.8.16}
s.summary = %q{A Ruby state pattern implementation}
s.licenses = ['MIT']
s.test_files = Dir[File.join(File.dirname(__FILE__),'examples/**/*')] + Dir[File.join(File.dirname(__FILE__),'test/**/*')]
end