Skip to content

Commit

Permalink
It works with bundle install.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Aug 8, 2019
1 parent 9d895fd commit 9ec7c43
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 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
@@ -1,4 +1,9 @@
source "https://rubygems.org"

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

group :development do
gem "bundler"
gem "rake"
gem "test-unit"
end
15 changes: 4 additions & 11 deletions benchmark.gemspec
Expand Up @@ -8,15 +8,12 @@ Gem::Specification.new do |spec|
spec.authors = ["Hiroshi SHIBATA"]
spec.email = ["hsbt@ruby-lang.org"]

spec.summary = %q{TODO: Write a short summary, because RubyGems requires one.}
spec.description = %q{TODO: Write a longer description or delete this line.}
spec.homepage = "TODO: Put your gem's website or public repo URL here."

spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.summary = %q{Write a short summary, because RubyGems requires one.}
spec.description = %q{Write a longer description or delete this line.}
spec.homepage = "https://github.com/ruby/benchmark"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
spec.metadata["source_code_uri"] = spec.homepage

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand All @@ -26,8 +23,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.0"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
end

0 comments on commit 9ec7c43

Please sign in to comment.