forked from fabn/activeadmin-globalize
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from fabn/develop
Update from fabn fork
- Loading branch information
Showing
30 changed files
with
304 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
sudo: false | ||
language: ruby | ||
# Limit ruby versions to currently supported versions to avoid a big build matrix | ||
rvm: | ||
- 1.9.3 | ||
- 2.0.0 | ||
- 2.2 | ||
- 2.3.0 | ||
# Update bundler on travis, since current one is broken, see https://github.com/rubygems/rubygems/issues/1419 | ||
before_install: | ||
- gem install bundler | ||
# Load database schema before rake | ||
before_script: bundle exec rake db:schema:load | ||
before_script: bundle exec rake db:schema:load | ||
# Test on all supported rails versions | ||
gemfile: | ||
- gemfiles/activeadmin_master.gemfile | ||
- gemfiles/rails4_1.gemfile | ||
- gemfiles/rails4_2.gemfile |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
appraise 'rails4_1' do | ||
gem 'rails', '~> 4.1.12' | ||
gem 'globalize', '~> 4.0.3' | ||
end | ||
|
||
appraise 'rails4_2' do | ||
gem 'rails', '~> 4.2.3' | ||
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' | ||
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ar: | ||
active_admin: | ||
globalize: | ||
translations: "ترجمة" | ||
language: | ||
de: "ألماني" | ||
en: "الإنجليزية" | ||
es: "الأسبانية" | ||
fr: "اللغة الفرنسية" | ||
hu: "الهنغارية" | ||
it: "الإيطالي" | ||
pt-BR: "البرتغالية" | ||
pt-PT: "البرتغالية (البرتغال)" | ||
tr: "اللغة التركية" | ||
he: "العبرية" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ de: | |
pt-BR: "Portugiesisch" | ||
pt-PT: "Portugiesisch (Portugal)" | ||
tr: "Türkisch" | ||
he: "Hebräisch" | ||
ar: "Arabisch" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ en: | |
pt-BR: "Portuguese" | ||
pt-PT: "Portuguese (Portugal)" | ||
tr: "Turkish" | ||
he: "Hebrew" | ||
ar: "Arabic" | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
es: | ||
active_admin: | ||
globalize: | ||
translations: "Traducciones" | ||
language: | ||
de: "Alemán" | ||
en: "Inglés" | ||
es: "Español" | ||
fr: "Francés" | ||
hu: "Húngaro" | ||
it: "Italiano" | ||
pt-BR: "Portugués" | ||
pt-PT: "Portugués (Portugal)" | ||
tr: "Turco" | ||
he: "Hebreo" | ||
ar: "Arábica" | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
he: | ||
active_admin: | ||
globalize: | ||
translations: "תרגומים" | ||
language: | ||
de: "גרמנית" | ||
en: "אנגלית" | ||
es: "ספרדית" | ||
fr: "צרפתית" | ||
hu: "הונגרית" | ||
it: "איטלקית" | ||
pt-BR: "פורטוגזית" | ||
pt-PT: "פורטוגזית (פורטוגל)" | ||
tr: "טורקית" | ||
he: "עברית" | ||
ar: "ערבית" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ hu: | |
pt-BR: "Portuguese" | ||
pt-PT: "Portuguese (Portugal)" | ||
tr: "Török" | ||
he: "Héber" | ||
ar: "Arab" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ it: | |
pt-BR: "Portoghese" | ||
pt-PT: "Portoghese (Portogallo)" | ||
tr: "Turco" | ||
he: "Ebraico" | ||
ar: "Arabo" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ pt-BR: | |
pt-BR: "Português" | ||
pt-PT: "Português (Portugal)" | ||
tr: "Turco" | ||
he: "Hebraico" | ||
ar: "Árabe" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ pt-PT: | |
pt-BR: "Português" | ||
pt-PT: "Português (Portugal)" | ||
tr: "Turco" | ||
he: "Hebraico" | ||
ar: "Árabe" | ||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "sass-rails" | ||
gem "coffee-rails" | ||
gem "therubyracer", :platforms => :ruby | ||
gem "uglifier" | ||
gem "jquery-rails" | ||
gem "devise", "~> 3.2" | ||
gem "rails", "~> 4.2.0" | ||
gem "activeadmin", :github => "activeadmin/activeadmin" | ||
|
||
group :test do | ||
gem "sqlite3", "~> 1.3.5" | ||
gem "rspec-rails", "~> 2.14.0" | ||
gem "factory_girl_rails", "~> 4.2.1" | ||
gem "database_cleaner", "~> 1.0.1" | ||
gem "spring", :require => false | ||
gem "spring-commands-rspec", :require => false | ||
gem "capybara", "~> 2.1.0" | ||
gem "capybara-screenshot" | ||
gem "poltergeist" | ||
gem "fuubar" | ||
gem "appraisal" | ||
gem "awesome_print" | ||
gem "pry" | ||
end | ||
|
||
gemspec :path => "../" |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "sass-rails" | ||
gem "coffee-rails" | ||
gem "therubyracer", :platforms => :ruby | ||
gem "uglifier" | ||
gem "jquery-rails" | ||
gem "devise", "~> 3.2" | ||
gem "rails", "~> 4.1.12" | ||
gem "globalize", "~> 4.0.3" | ||
|
||
group :test do | ||
gem "sqlite3", "~> 1.3.5" | ||
gem "rspec-rails", "~> 2.14.0" | ||
gem "factory_girl_rails", "~> 4.2.1" | ||
gem "database_cleaner", "~> 1.0.1" | ||
gem "spring", :require => false | ||
gem "spring-commands-rspec", :require => false | ||
gem "capybara", "~> 2.1.0" | ||
gem "capybara-screenshot" | ||
gem "poltergeist" | ||
gem "fuubar" | ||
gem "appraisal" | ||
gem "awesome_print" | ||
gem "pry" | ||
end | ||
|
||
gemspec :path => "../" |
Oops, something went wrong.