-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, test against ActiveAdmin 1.0 and add Rails 5.0 a…
…nd 5.1
- Loading branch information
Lawrence Oluyede
committed
Aug 28, 2017
1 parent
91184c3
commit 4101fdd
Showing
9 changed files
with
48 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
appraise 'rails4_1' do | ||
gem 'rails', '~> 4.1.12' | ||
gem 'globalize', '~> 4.0.3' | ||
appraise 'rails4_2' do | ||
gem 'rails', '~> 4.2.9' | ||
gem 'globalize', '~> 5.0.0' | ||
end | ||
|
||
appraise 'rails4_2' do | ||
gem 'rails', '~> 4.2.3' | ||
appraise 'rails5_0' do | ||
gem 'rails', '~> 4.2.9' | ||
gem 'globalize', '~> 5.0.0' | ||
end | ||
|
||
# Run tests on latest github version of ActiveAdmin | ||
appraise 'activeadmin_master' do | ||
gem 'rails', '~> 4.2.0' | ||
gem 'activeadmin', github: 'activeadmin/activeadmin' | ||
appraise 'rails5_1' do | ||
gem 'devise', '~> 4.3' | ||
gem 'rails', '~> 5.1.3' | ||
gem 'globalize', '~> 5.1.0.beta2' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,11 @@ Gem::Specification.new do |s| | |
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 0.6.3 and Rails 3.2.x' | ||
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' | ||
s.add_dependency 'activeadmin', '>= 1.0', '< 1.1' | ||
# Try to support rails from 3.2 up to 4.2.x | ||
s.add_dependency 'globalize', '>= 3.1.0', '< 6.0' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module ActiveAdmin | ||
module Globalize | ||
VERSION = '1.1.0' | ||
VERSION = '1.0.0' | ||
end | ||
end |