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