forked from mongodb/mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MONGOID-5051 Fix JRuby test failures on master (mongodb#4957)
* .dockerignore copied from driver * ignore tmp * restrict to i18n < 1.8.8 * dry gemfiles * Always install tzdata Co-authored-by: Oleg Pudeyev <[email protected]>
- Loading branch information
Showing
17 changed files
with
98 additions
and
375 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,6 @@ | ||
/.git | ||
/yard-docs | ||
Gemfile.lock | ||
gemfiles/*.lock | ||
.env.private* | ||
/tmp |
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,35 +1,18 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem 'rake' | ||
gem 'actionpack' | ||
gem 'activemodel' | ||
require_relative './gemfiles/standard' | ||
|
||
gem 'i18n', '~> 1.0', '>= 1.1' | ||
standard_dependencies | ||
|
||
group :development do | ||
gem 'yard' | ||
end | ||
gem 'actionpack' | ||
gem 'activemodel' | ||
|
||
group :development, :test do | ||
gem 'rspec-core', '~> 3.7' | ||
|
||
platform :jruby do | ||
gem 'ruby-debug' | ||
end | ||
i18n_versions = ['~> 1.0', '>= 1.1'] | ||
if RUBY_PLATFORM =~ /java/ | ||
# https://github.com/jruby/jruby/issues/6573 | ||
i18n_versions << '< 1.8.8' | ||
end | ||
|
||
group :test do | ||
gem 'timecop' | ||
gem 'rspec-retry' | ||
gem 'benchmark-ips' | ||
gem 'rspec-expectations', '~> 3.7', '>= 3.8.4' | ||
gem 'rspec-mocks-diag', '~> 3.0' | ||
gem 'fuubar' | ||
gem 'rfc' | ||
gem 'childprocess' | ||
platforms :mri do | ||
gem 'timeout-interrupt' | ||
gem 'byebug' | ||
end | ||
end | ||
gem 'i18n', *i18n_versions |
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
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
Oops, something went wrong.