-
Notifications
You must be signed in to change notification settings - Fork 3
/
globalize-automatic.gemspec
28 lines (23 loc) · 1.04 KB
/
globalize-automatic.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
$:.push File.expand_path('../lib', __FILE__)
require 'globalize/automatic/version'
Gem::Specification.new do |s|
s.name = 'globalize-automatic'
s.version = Globalize::Automatic::VERSION
s.authors = ['Yuichi Takeuchi']
s.email = ['info@takeyu-web.com']
s.homepage = 'https://github.com/takeyuweb/globalize-automatic/'
s.summary = 'Adapter for using automatic translation gems with Globalize'
s.description = 'Provides support for using automatic translation gems with Globalize.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'globalize', '>= 5.0.0', '< 6'
s.add_dependency 'globalize-accessors'
s.add_dependency 'after_commit_action'
s.add_dependency 'easy_translate'
s.add_dependency 'activerecord'
s.add_dependency 'activejob'
s.add_development_dependency 'rails', '~> 4.2.0'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'rspec-activemodel-mocks'
end