forked from lucascaton/enumerate_it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenumerate_it.gemspec
22 lines (18 loc) · 1.12 KB
/
enumerate_it.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/enumerate_it/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Cássio Marques"]
gem.email = ["[email protected]"]
gem.description = %q{Have a legacy database and need some enumerations in your models to match those stupid '4 rows/2 columns' tables with foreign keys and stop doing joins just to fetch a simple description? Or maybe use some integers instead of strings as the code for each value of your enumerations? Here's EnumerateIt.}
gem.summary = %q{Ruby Enumerations}
gem.homepage = "http://github.com/cassiomarques/enumerate_it"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "enumerate_it"
gem.require_paths = ["lib"]
gem.version = EnumerateIt::VERSION
gem.add_dependency "activesupport", ">= 2.3.2"
gem.add_development_dependency "rspec", ">= 2.5.0"
gem.add_development_dependency "activerecord", ">= 3.0.5"
end