tachiban.gemspec in tachiban-0.3.0 vs tachiban.gemspec in tachiban-0.5.0

- old
+ new

@@ -12,22 +12,21 @@ spec.summary = %q{Tachiban provides simple password hashing for user authentication with bcrypt for Hanami web applications.} spec.homepage = "https://github.com/sebastjan-hribar/tachiban" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - spec.bindir = "exe" - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "hanami-model", "~> 1.0" spec.add_development_dependency "timecop", "0.8.1" spec.add_development_dependency 'hanami-controller', "~> 1.0" - spec.add_development_dependency 'hanami-router' + spec.add_development_dependency 'hanami-router', "~> 1.0" spec.add_development_dependency 'pry' spec.add_runtime_dependency "bcrypt", "~> 3.1" spec.add_runtime_dependency 'hanami-controller', "~> 1.0" - spec.add_runtime_dependency 'hanami-router' + spec.add_runtime_dependency 'hanami-router', "~> 1.0" end