forked from paraseba/enum_field
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathenum_field.gemspec
25 lines (21 loc) · 966 Bytes
/
enum_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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'enum_field/version'
Gem::Specification.new do |s|
s.name = 'galetahub-enum_field'
s.version = EnumField::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = 'Enumerated attributes for any ruby class aka Active Record'
s.description = 'Enables Active Record attributes to point to enum like objects, by saving in your database only an integer ID'
s.authors = ['Igor Galeta', 'Pavlo Galeta']
s.email = '[email protected]'
s.homepage = 'https://github.com/galetahub/enum_field'
s.files = Dir['{app,lib,config}/**/*'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['{spec}/**/*']
s.extra_rdoc_files = ['README.md']
s.require_paths = ['lib']
s.add_dependency 'activesupport'
s.add_development_dependency 'bundler', '~> 1.12'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 3.0'
end