dependencies: need should, test-unit for testing. but no rspec.

master
Denis Knauf 2021-12-12 18:16:14 +01:00
parent 486cf53495
commit 28936187de
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,2 @@
source "https://rubygems.org"
gemspec
gem "rake", "~> 12"

View File

@ -16,8 +16,6 @@ Gem::Specification.new do |spec|
spec.metadata["source_code_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.
# 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
@ -26,7 +24,10 @@ Gem::Specification.new do |spec|
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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