From 28936187de8d8dccaa578656b0fd0b7989210476 Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Sun, 12 Dec 2021 18:16:14 +0100 Subject: [PATCH] dependencies: need should, test-unit for testing. but no rspec. --- Gemfile | 1 - timeout-interrupt.gemspec | 9 +++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 274ea6c..3be9c3c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,2 @@ source "https://rubygems.org" gemspec -gem "rake", "~> 12" diff --git a/timeout-interrupt.gemspec b/timeout-interrupt.gemspec index be62c31..0fb6775 100644 --- a/timeout-interrupt.gemspec +++ b/timeout-interrupt.gemspec @@ -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, '>= 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