Skip to content

Commit

Permalink
Use Gemfile instead of Gem::Specification#add_development_dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Aug 3, 2019
1 parent a382e06 commit 9df7d79
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@
/pkg/
/spec/reports/
/tmp/
Gemfile.lock
7 changes: 6 additions & 1 deletion Gemfile
Expand Up @@ -2,5 +2,10 @@ source "https://rubygems.org"

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

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

group :development do
gem "bundler"
gem "rake"
gem "test-unit"
end
4 changes: 0 additions & 4 deletions tracer.gemspec
Expand Up @@ -20,8 +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"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
end

0 comments on commit 9df7d79

Please sign in to comment.