diff --git a/Gemfile b/Gemfile index f3fd554..a95993a 100755 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ gem "rake" gem "rspec-core" gem "rspec-expectations" gem "rspec-mocks" -gem "rspec-rails", "~> 4.0.0" +gem "rspec-rails", "~> 6.0.0" gem "rspec-support" gem "rubocop", "~> 1.29.1" gem "rubocop-performance", require: false diff --git a/gemfiles/Gemfile.common.rb b/gemfiles/Gemfile.common.rb index 1e4b1fe..b22da0c 100644 --- a/gemfiles/Gemfile.common.rb +++ b/gemfiles/Gemfile.common.rb @@ -11,5 +11,5 @@ gem "rspec-core" gem "rspec-expectations" gem "rspec-mocks" -gem "rspec-rails", "~> 4.0.0" +gem "rspec-rails", "~> 6.0.0" gem "rspec-support" diff --git a/spec/dummy/config/mongoid8.yml b/spec/dummy/config/mongoid8.yml new file mode 100644 index 0000000..e5bc584 --- /dev/null +++ b/spec/dummy/config/mongoid8.yml @@ -0,0 +1,19 @@ +development: + clients: + default: + database: doorkeeper-mongoid8-development + hosts: + - localhost:27017 + options: + write: + w: 1 + +test: + clients: + default: + database: doorkeeper-mongoid7-test + hosts: + - localhost:27017 + options: + write: + w: 1