Skip to content

Commit

Permalink
Move development dependencies to Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed May 5, 2024
1 parent 84e8512 commit ead1536
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 10 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,13 @@ local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.exist?(local_gemfile)
eval_gemfile local_gemfile
end

group :development do
gem 'test-unit'
gem 'rake'
gem 'simplecov'
gem 'bundler'
gem 'irb', '>= 1.3.1'
gem 'byebug'
gem 'benchmark-ips'
end
7 changes: 0 additions & 7 deletions power_assert.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@ Gem::Specification.new do |s|
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_development_dependency 'test-unit'
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'bundler'
s.add_development_dependency 'irb', '>= 1.3.1'
s.add_development_dependency 'byebug'
s.add_development_dependency 'benchmark-ips'
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--main', 'README.md']
s.licenses = ['BSD-2-Clause', "Ruby"]
Expand Down

0 comments on commit ead1536

Please sign in to comment.