forked from kaminari/kaminari
-
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.
- Loading branch information
Showing
8 changed files
with
41 additions
and
3 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,3 +1,7 @@ | ||
== Next | ||
|
||
* Mongoid 5 ready! [dblock] | ||
|
||
== 0.16.2 | ||
|
||
* Fixed a bug where cloned Relations remember previous relations' | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'railties', '~> 4.0' | ||
gem 'mongoid', '~> 5.0.0' | ||
gem 'rspec-rails', '~> 2.14.1' | ||
|
||
group :development, :test do | ||
# see https://github.com/DatabaseCleaner/database_cleaner/issues/390, upgrade to 1.5.1 when released | ||
gem 'database_cleaner', github: 'DatabaseCleaner/database_cleaner' | ||
end | ||
|
||
platforms :mri do | ||
gem 'test-unit' if RUBY_VERSION > '2.1.0' | ||
end | ||
|
||
platforms :rbx do | ||
gem 'rubysl', '~> 2.0' | ||
gem 'racc' | ||
gem 'minitest' | ||
gem 'rubinius-developer_tools' | ||
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
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,7 @@ | ||
RSpec.configure do |config| | ||
config.before :suite do | ||
# Mongoid 5 is very noisy at DEBUG level by default | ||
Mongoid.logger.level = Logger::INFO | ||
Mongo::Logger.logger.level = Logger::INFO if defined?(Mongo) | ||
end | ||
end if defined? Mongoid |