Use less restrictive versioning so we don't block other projects

This commit is contained in:
John Keiser 2016-02-24 12:55:39 -08:00
parent 2f179649b9
commit b5df8e1e76
2 changed files with 10 additions and 10 deletions

View File

@ -2,11 +2,13 @@ PATH
remote: . remote: .
specs: specs:
github_changelog_generator (1.10.4) github_changelog_generator (1.10.4)
bundler (~> 1.7) bundler (>= 1.7)
colorize (~> 0.7) colorize (~> 0.7)
github_api (~> 0.12) github_api (~> 0.12)
overcommit (~> 0.31) overcommit (>= 0.31)
rake (~> 10.0) rake (>= 10.0)
rspec (>= 3.2)
rubocop (>= 0.31)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
@ -99,8 +101,6 @@ DEPENDENCIES
codeclimate-test-reporter (~> 0.4) codeclimate-test-reporter (~> 0.4)
coveralls (~> 0.8) coveralls (~> 0.8)
github_changelog_generator! github_changelog_generator!
rspec (~> 3.2)
rubocop (~> 0.31)
simplecov (~> 0.10) simplecov (~> 0.10)
BUNDLED WITH BUNDLED WITH

View File

@ -24,11 +24,11 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"] spec.require_paths = ["lib"]
spec.add_runtime_dependency "rake", "~> 10.0" spec.add_runtime_dependency "rake", ">= 10.0"
spec.add_runtime_dependency "bundler", "~> 1.7" spec.add_runtime_dependency "bundler", ">= 1.7"
spec.add_runtime_dependency("github_api", ["~> 0.12"]) spec.add_runtime_dependency("github_api", ["~> 0.12"])
spec.add_runtime_dependency("colorize", ["~> 0.7"]) spec.add_runtime_dependency("colorize", ["~> 0.7"])
spec.add_runtime_dependency("overcommit", "~>0.31") spec.add_runtime_dependency("overcommit", ">= 0.31")
spec.add_runtime_dependency("rubocop", "~>0.31") spec.add_runtime_dependency("rubocop", ">= 0.31")
spec.add_runtime_dependency("rspec", "~>3.2") spec.add_runtime_dependency("rspec", ">= 3.2")
end end