-
Notifications
You must be signed in to change notification settings - Fork 54
/
activeadmin-globalize.gemspec
27 lines (21 loc) · 1 KB
/
activeadmin-globalize.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'active_admin/globalize/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'activeadmin-globalize'
s.version = ActiveAdmin::Globalize::VERSION
s.authors = ['Stefano Verna', 'Fabio Napoleoni']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/fabn/activeadmin-globalize'
s.summary = 'Handles globalize translations'
s.description = 'Handles globalize translations in ActiveAdmin 1.0 and Rails 4.x-5.x'
s.files = Dir['{app,config,db,lib}/**/*'] + %w(MIT-LICENSE README.md)
s.add_dependency 'activeadmin', '>= 1.0', '< 1.2'
# Try to support rails from 3.2 up to 4.2.x
s.add_dependency 'globalize', '>= 3.1.0', '< 6.0'
# development dependencies
s.add_development_dependency 'bundler', '>= 1.6.1'
s.add_development_dependency 'rake'
# Other development dependencies moved into Gemfile
end