Rake and Bundler as runtime deps

To support Rakefile running at install. See #329
This commit is contained in:
Olle Jonsson 2016-02-23 23:39:53 +01:00
parent 4ceb065cae
commit 06585b1c69

View File

@ -24,11 +24,9 @@ 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 "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")
# Development only
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
end end