forked from pluginaweek/enumerate_by
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenumerate_by.gemspec
17 lines (17 loc) · 936 Bytes
/
enumerate_by.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
Gem::Specification.new do |s|
s.name = "enumerate_by"
s.version = '0.4.4.2'
s.authors = ["Aaron Pfeifer"]
s.email = "[email protected]"
s.homepage = "http://www.pluginaweek.org"
s.description = "Adds support for declaring an ActiveRecord class as an enumeration"
s.summary = "Enumerations in ActiveRecord"
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 enumerate_by --main README.rdoc)
s.extra_rdoc_files = %w(README.rdoc CHANGELOG.rdoc MIT-LICENSE)
s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.rdoc"]
end