Skip to content

Commit

Permalink
Don't use git in gemspec, require safe rake version
Browse files Browse the repository at this point in the history
  • Loading branch information
Hampei committed Mar 25, 2021
1 parent 63ffc26 commit c10e8b4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions opencpu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ Gem::Specification.new do |spec|
spec.homepage = "http://roqua.nl"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.files = Dir["{lib,vendor}/**/*"] + ["README.md", "LICENSE.txt"]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.require_paths = Dir["spec/**/*"]

spec.required_ruby_version = '>= 1.9.3'
spec.required_ruby_version = '>= 2.5.0'

spec.add_dependency 'yajl-ruby', '~> 1.3', '>= 1.3.1'
spec.add_dependency 'httparty', '~> 0.16'
Expand Down

0 comments on commit c10e8b4

Please sign in to comment.