-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathlocalized_fields.gemspec
24 lines (20 loc) · 1.07 KB
/
localized_fields.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/localized_fields/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Tiago Rafael Godinho']
gem.email = ['[email protected]']
gem.description = %q{Helps you to create forms with localized fields using Mongoid.}
gem.summary = %q{Localized Fields provides form helpers to create forms with localized fields using Mongoid.}
gem.homepage = 'https://github.com/tiagogodinho/localized_fields'
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 = 'localized_fields'
gem.require_paths = ['lib']
gem.version = LocalizedFields::VERSION
gem.add_dependency 'mongoid', '>= 2.4', '< 5'
gem.add_dependency 'actionpack', '>= 3.0.0', '< 5'
gem.add_development_dependency 'rake', '~> 10.1.0'
gem.add_development_dependency 'rspec', '~> 2.14.0'
gem.add_development_dependency 'coveralls'
end