infrataster.gemspec in infrataster-0.1.0 vs infrataster.gemspec in infrataster-0.1.1

- old
+ new

@@ -10,11 +10,13 @@ spec.email = ["ryota.arai@gmail.com"] spec.summary = %q{Infrastructure Behavior Testing Framework} spec.homepage = "https://github.com/ryotarai/infrataster" spec.license = "MIT" - spec.files = `git ls-files -z`.split("\x0") + spec.files = `git ls-files -z`.split("\x0").delete_if do |path| + path.start_with?('example/') + end spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_runtime_dependency "rspec" @@ -22,9 +24,11 @@ spec.add_runtime_dependency "net-ssh-gateway" spec.add_runtime_dependency "mysql2" spec.add_runtime_dependency "capybara" spec.add_runtime_dependency "selenium-webdriver" spec.add_runtime_dependency "browsermob-proxy" + spec.add_runtime_dependency "faraday" spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" + spec.add_development_dependency "berkshelf", '~> 3.1.1' end