-
-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
1,140 additions
and
796 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## What I tried to do | ||
|
||
* Fill this out! | ||
|
||
## What I expected to happen | ||
|
||
* Fill this out! | ||
|
||
## What actually happened | ||
|
||
* Fill this out! | ||
|
||
## Versions of i18n, rails, and anything else you think is neccessary | ||
|
||
* Fill this out! | ||
|
||
---- | ||
|
||
Bonus points for providing an application or a small code example which reproduces the issue. | ||
|
||
Thanks! :heart: |
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,13 +1,48 @@ | ||
before_install: | ||
- gem install bundler | ||
|
||
rvm: | ||
- 1.8.7 | ||
- 1.9.2 | ||
- 1.9.3 | ||
- 2.0.0 | ||
- ree | ||
- 2.1.8 | ||
- 2.2.4 | ||
- 2.3.1 | ||
- ruby-head | ||
- rbx | ||
- jruby | ||
|
||
gemfile: | ||
- ci/Gemfile.no-rails | ||
- ci/Gemfile.rails-2.3.x | ||
- ci/Gemfile.rails-3.x | ||
- Gemfile | ||
- gemfiles/Gemfile.rails-3.2.x | ||
- gemfiles/Gemfile.rails-4.0.x | ||
- gemfiles/Gemfile.rails-4.1.x | ||
- gemfiles/Gemfile.rails-4.2.x | ||
- gemfiles/Gemfile.rails-5.0.x | ||
- gemfiles/Gemfile.rails-master | ||
|
||
matrix: | ||
exclude: | ||
# Rails 5+ requires Ruby >= 2.2.2 | ||
- rvm: 1.9.3 | ||
gemfile: gemfiles/Gemfile.rails-master | ||
- rvm: 2.0.0 | ||
gemfile: gemfiles/Gemfile.rails-master | ||
- rvm: 2.1.8 | ||
gemfile: gemfiles/Gemfile.rails-master | ||
- rvm: 1.9.3 | ||
gemfile: gemfiles/Gemfile.rails-5.0.x | ||
- rvm: 2.0.0 | ||
gemfile: gemfiles/Gemfile.rails-5.0.x | ||
- rvm: 2.1.8 | ||
gemfile: gemfiles/Gemfile.rails-5.0.x | ||
# activesupport has a dependency on json, which does not build on this version | ||
- rvm: ruby-head | ||
gemfile: gemfiles/Gemfile.rails-4.1.x | ||
# activesupport has a dependency on json, which does not build on this version | ||
- rvm: ruby-head | ||
gemfile: gemfiles/Gemfile.rails-4.2.x | ||
allow_failures: | ||
- rvm: 2.2 | ||
- rvm: rbx | ||
- rvm: jruby | ||
fast_finish: true |
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,13 @@ | ||
# master | ||
|
||
* `Hash#slice` ignores non existing keys. | ||
|
||
# 0.7.0 | ||
|
||
* Drop support to Ruby 1.8.7 / REE | ||
* Drop support to Rails 2.3 / 3.0 / 3.1 | ||
* Remove deprecated stuff: | ||
- Setting `:default_exception_hander` Symbol to `I18n.exception_handler`. | ||
- `normalize_translation_keys` in favor of `normalize_keys`. | ||
- `:rescue_format` option on the exception handler. | ||
- `enforce_available_locales` now defaults to true with no deprecation message. |
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,8 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem 'mocha' | ||
gem 'test_declarative' | ||
gem 'rake' | ||
gem 'minitest' |
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,28 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
i18n (0.8.0.beta1) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
mocha (0.9.9) | ||
rake | ||
rake (0.8.7) | ||
test_declarative (0.0.4) | ||
metaclass (0.0.4) | ||
minitest (5.10.1) | ||
mocha (1.2.1) | ||
metaclass (~> 0.0.1) | ||
rake (11.3.0) | ||
test_declarative (0.0.5) | ||
|
||
PLATFORMS | ||
java | ||
ruby | ||
|
||
DEPENDENCIES | ||
i18n! | ||
minitest | ||
mocha | ||
rake | ||
test_declarative | ||
|
||
BUNDLED WITH | ||
1.13.6 |
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,27 +1,13 @@ | ||
require 'bundler/gem_tasks' | ||
require 'rake/testtask' | ||
|
||
task :default => [:test] | ||
|
||
Rake::TestTask.new(:test) do |t| | ||
t.libs << 'lib' | ||
t.libs << 'test' | ||
t.pattern = "#{File.dirname(__FILE__)}/test/all.rb" | ||
t.pattern = "test/**/*_test.rb" | ||
t.verbose = true | ||
t.warning = true | ||
end | ||
Rake::Task['test'].comment = "Run all i18n tests" | ||
|
||
# require "rake/gempackagetask" | ||
# require "rake/clean" | ||
# CLEAN << "pkg" << "doc" << "coverage" << ".yardoc" | ||
# | ||
# Rake::GemPackageTask.new(eval(File.read("i18n.gemspec"))) { |pkg| } | ||
# | ||
# begin | ||
# require "yard" | ||
# YARD::Rake::YardocTask.new do |t| | ||
# t.options = ["--output-dir=doc"] | ||
# t.options << "--files" << ["CHANGELOG.textile", "contributors.txt", "MIT-LICENSE"].join(",") | ||
# end | ||
# rescue LoadError | ||
# 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.