dependencies: need should, test-unit for testing. but no rspec.
This commit is contained in:
parent
486cf53495
commit
28936187de
1
Gemfile
1
Gemfile
|
@ -1,3 +1,2 @@
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
gemspec
|
gemspec
|
||||||
gem "rake", "~> 12"
|
|
||||||
|
|
|
@ -16,8 +16,6 @@ Gem::Specification.new do |spec|
|
||||||
spec.metadata["source_code_uri"] = spec.homepage
|
spec.metadata["source_code_uri"] = spec.homepage
|
||||||
spec.metadata["changelog_uri"] = spec.homepage
|
spec.metadata["changelog_uri"] = spec.homepage
|
||||||
|
|
||||||
spec.add_development_dependency "rspec", "~> 3.2"
|
|
||||||
|
|
||||||
# Specify which files should be added to the gem when it is released.
|
# 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.
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
||||||
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
||||||
|
@ -26,7 +24,10 @@ Gem::Specification.new do |spec|
|
||||||
spec.bindir = "bin"
|
spec.bindir = "bin"
|
||||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
spec.require_paths = ["lib"]
|
|
||||||
|
|
||||||
spec.add_runtime_dependency %q<ffi-libc>, '>= 0.1.1'
|
spec.add_runtime_dependency 'ffi-libc', '>= 0.1.1'
|
||||||
|
spec.add_development_dependency 'test-unit'
|
||||||
|
spec.add_development_dependency 'shoulda'
|
||||||
|
spec.add_development_dependency 'rake'
|
||||||
|
spec.add_development_dependency 'bundler'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue