Skip to content

Commit

Permalink
improved Gemfiles for testing and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
spaquet committed Jul 3, 2023
1 parent 20bfb27 commit f83baec
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gemspec
gem "rake", "~> 13.0"

group :development, :test do
gem "minitest"
# gem "minitest"
gem "actionview", "~> 7.0.0"
end

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
simple_icons_rails (0.2.20)
simple_icons_rails (0.2.22)
rails (>= 5.0, < 8.0)
uri

Expand Down
8 changes: 6 additions & 2 deletions gemfiles/Gemfile.rails5
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
source "https://rubygems.org"

# Specify your gem's dependencies in simple_icons_rails.gemspec
gemspec
# gemspec

gem "rake", "~> 13.0"

group :development, :test do
gem "minitest"
gem "bundler"
gem "rails", "~> 5.0.0"
gem "actionview", "~> 5.0.0"
gem "minitest"
gem "uri"
end

gem "simplecov", require: false, group: :test
8 changes: 6 additions & 2 deletions gemfiles/Gemfile.rails6
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
source "https://rubygems.org"

# Specify your gem's dependencies in simple_icons_rails.gemspec
gemspec
# gemspec

gem "rake", "~> 13.0"

group :development, :test do
gem "minitest"
gem "bundler"
gem "rails", "~> 6.0.0"
gem "actionview", "~> 6.0.0"
gem "minitest"
gem "uri"
end

gem "simplecov", require: false, group: :test
8 changes: 6 additions & 2 deletions gemfiles/Gemfile.rails7
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
source "https://rubygems.org"

# Specify your gem's dependencies in simple_icons_rails.gemspec
gemspec
# gemspec

gem "rake", "~> 13.0"

group :development, :test do
gem "minitest"
gem "bundler"
gem "rails", "~> 7.0.0"
gem "actionview", "~> 7.0.0"
gem "minitest"
gem "uri"
end

gem "simplecov", require: false, group: :test

0 comments on commit f83baec

Please sign in to comment.