Skip to content

Commit

Permalink
Remove unneeded dependency locks (#1342)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarroll32 authored Jun 12, 2022
1 parent 8946268 commit 5d4c4d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ rails_version = case rails
rails
end

gem 'faker', '~> 2.0'
gem 'sqlite3', '~> 1.4.1'
gem 'pg', '~> 1.0'
gem 'pry', '~> 0.12.2'
gem 'faker'
gem 'sqlite3'
gem 'pg'
gem 'pry'
gem 'byebug'

case rails
Expand All @@ -42,11 +42,11 @@ else
gem 'actionpack'
end
end
gem 'mysql2', '~> 0.5.2'
gem 'mysql2'

group :test do
gem 'machinist', '~> 1.0.6'
gem 'rspec', '~> 3'
gem 'rspec'
gem 'simplecov', :require => false
end

Expand Down

0 comments on commit 5d4c4d8

Please sign in to comment.