forked from pbyrne/enumerated_field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enumerated_field.gemspec
37 lines (32 loc) · 1.52 KB
/
enumerated_field.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
31
32
33
34
35
36
37
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "enumerated_field/version"
AUTHORS = {
"Luke Ludwig" => "luke.ludwig@tstmedia.com",
"Patrick Byrne" => "patrick.byrne@tstmedia.com",
"Jon Karna" => "jon.karna@tstmedia.com",
}
Gem::Specification.new do |s|
s.name = "enumerated_field"
s.version = EnumeratedField::VERSION
s.platform = Gem::Platform::RUBY
s.authors = AUTHORS.keys
s.email = AUTHORS.values
s.homepage = "https://github.com/sportngin/enumerated_field"
s.summary = %q{EnumeratedField is a library that provides some nice methods when a string column is used like an enumeration.}
s.description = %q{EnumeratedField is a library that provides some nice methods when a string column is used like an enumeration, meaning there is a list of allowable values for the string column.}
s.rubyforge_project = "enumerated_field"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'activemodel', '~> 3.0.0'
s.add_dependency 'activesupport', '~> 3.0.0'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler'
s.add_development_dependency 'turn'
s.add_development_dependency 'shoulda', '~> 2'
s.add_development_dependency 'activerecord', '~> 3.0.0'
s.add_development_dependency 'sqlite3'
end