Skip to content

Commit

Permalink
Move development dependencies out of test group
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Sep 14, 2023
1 parent fdc3e73 commit d01f072
Showing 1 changed file with 12 additions and 19 deletions.
31 changes: 12 additions & 19 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
source "https://rubygems.org"

gem "jruby-openssl", platforms: :jruby
gem "rake"
gem "yard"

group :development do
gem "pry"
end

group :test do
gem "rspec", ">= 3.12"
gem "rubocop", ">= 1.44.1"
gem "rubocop-performance"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "simplecov", ">= 0.22"
gem "timecop"
gem "webmock"
gem "yardstick"
end
gem "jruby-openssl", ">=0.14.2", platforms: :jruby
gem "rake", ">= 13.0.6"
gem "rspec", ">= 3.12"
gem "rubocop", ">= 1.44.1"
gem "rubocop-performance", ">= 1.19"
gem "rubocop-rake", ">= 0.6"
gem "rubocop-rspec", ">= 2.24"
gem "simplecov", ">= 0.22"
gem "timecop", ">= 0.9.8"
gem "webmock", ">= 3.19.1"
gem "yard", ">= 0.9.34"
gem "yardstick", ">= 0.9.9"

gemspec

0 comments on commit d01f072

Please sign in to comment.