Skip to content

Commit

Permalink
Move development dependencies from gemspec to Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
orien committed Jan 25, 2024
1 parent 44f2e45 commit 98879f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 7 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
source "https://rubygems.org"
source 'https://rubygems.org'

gemspec

group :development do
gem 'pry'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
end
5 changes: 0 additions & 5 deletions forked.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,4 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "pry"
end

0 comments on commit 98879f1

Please sign in to comment.