From 50cd7b64708bd99ddc683334c21b50eb19e3060e Mon Sep 17 00:00:00 2001 From: Patrik Wenger Date: Tue, 7 Jan 2025 22:48:04 +0100 Subject: [PATCH] make rubocop happy --- Gemfile | 2 +- gemfiles/mongoid_7.0.gemfile | 4 ++-- gemfiles/mongoid_8.0.gemfile | 4 ++-- gemfiles/rails_6.1.gemfile | 6 +++--- gemfiles/rails_7.0.gemfile | 6 +++--- gemfiles/sequel_5.0.gemfile | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Gemfile b/Gemfile index d7245eb..1204ee7 100644 --- a/Gemfile +++ b/Gemfile @@ -10,9 +10,9 @@ gemspec gem 'appraisal', git: 'https://github.com/thoughtbot/appraisal.git', branch: :main gem 'bigdecimal' -gem 'ostruct' gem 'fakefs', '~> 1.2' gem 'nokogiri', '~> 1.16.7' +gem 'ostruct' gem 'pry' gem 'rspec', '~> 3.9' gem 'rubocop', '~> 1.20' diff --git a/gemfiles/mongoid_7.0.gemfile b/gemfiles/mongoid_7.0.gemfile index 73ad4de..4afd719 100644 --- a/gemfiles/mongoid_7.0.gemfile +++ b/gemfiles/mongoid_7.0.gemfile @@ -4,13 +4,13 @@ source "https://rubygems.org" gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git", branch: :main gem "bigdecimal" -gem "ostruct" gem "fakefs", "~> 1.2" +gem "mongoid", "~> 7.0.0" gem "nokogiri", "~> 1.16.7" +gem "ostruct" gem "pry" gem "rspec", "~> 3.9" gem "rubocop", "~> 1.20" gem "rubocop-rspec", "~> 2.4" -gem "mongoid", "~> 7.0.0" gemspec path: "../" diff --git a/gemfiles/mongoid_8.0.gemfile b/gemfiles/mongoid_8.0.gemfile index 41604f9..ebafde6 100644 --- a/gemfiles/mongoid_8.0.gemfile +++ b/gemfiles/mongoid_8.0.gemfile @@ -4,13 +4,13 @@ source "https://rubygems.org" gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git", branch: :main gem "bigdecimal" -gem "ostruct" gem "fakefs", "~> 1.2" +gem "mongoid", "~> 8.0.0" gem "nokogiri", "~> 1.16.7" +gem "ostruct" gem "pry" gem "rspec", "~> 3.9" gem "rubocop", "~> 1.20" gem "rubocop-rspec", "~> 2.4" -gem "mongoid", "~> 8.0.0" gemspec path: "../" diff --git a/gemfiles/rails_6.1.gemfile b/gemfiles/rails_6.1.gemfile index 0232c6c..59d0ad1 100644 --- a/gemfiles/rails_6.1.gemfile +++ b/gemfiles/rails_6.1.gemfile @@ -2,17 +2,17 @@ source "https://rubygems.org" +gem "activerecord-jdbcsqlite3-adapter", "~> 61.0", platform: :jruby gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git", branch: :main gem "bigdecimal" -gem "ostruct" gem "fakefs", "~> 1.2" gem "nokogiri", "~> 1.16.7" +gem "ostruct" gem "pry" +gem "rails", "~> 6.1.0" gem "rspec", "~> 3.9" gem "rubocop", "~> 1.20" gem "rubocop-rspec", "~> 2.4" -gem "activerecord-jdbcsqlite3-adapter", "~> 61.0", platform: :jruby -gem "rails", "~> 6.1.0" gem "sqlite3", "~> 1.4", platform: :mri gemspec path: "../" diff --git a/gemfiles/rails_7.0.gemfile b/gemfiles/rails_7.0.gemfile index 5659858..67db444 100644 --- a/gemfiles/rails_7.0.gemfile +++ b/gemfiles/rails_7.0.gemfile @@ -2,17 +2,17 @@ source "https://rubygems.org" +gem "activerecord-jdbcsqlite3-adapter", "~> 70.0", platform: :jruby gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git", branch: :main gem "bigdecimal" -gem "ostruct" gem "fakefs", "~> 1.2" gem "nokogiri", "~> 1.16.7" +gem "ostruct" gem "pry" +gem "rails", "~> 7.0.0" gem "rspec", "~> 3.9" gem "rubocop", "~> 1.20" gem "rubocop-rspec", "~> 2.4" -gem "activerecord-jdbcsqlite3-adapter", "~> 70.0", platform: :jruby -gem "rails", "~> 7.0.0" gem "sqlite3", "~> 1.4", platform: :mri gemspec path: "../" diff --git a/gemfiles/sequel_5.0.gemfile b/gemfiles/sequel_5.0.gemfile index f5d3721..98d3f94 100644 --- a/gemfiles/sequel_5.0.gemfile +++ b/gemfiles/sequel_5.0.gemfile @@ -4,14 +4,14 @@ source "https://rubygems.org" gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git", branch: :main gem "bigdecimal" -gem "ostruct" gem "fakefs", "~> 1.2" +gem "jdbc-sqlite3", platform: :jruby gem "nokogiri", "~> 1.16.7" +gem "ostruct" gem "pry" gem "rspec", "~> 3.9" gem "rubocop", "~> 1.20" gem "rubocop-rspec", "~> 2.4" -gem "jdbc-sqlite3", platform: :jruby gem "sequel", "~> 5.0" gem "sqlite3", "~> 1.4", platform: :mri