diff --git a/CHANGELOG.md b/CHANGELOG.md index 49aaa1f..5d0da3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # IsItUp Changelog +## 1.1.1 +- Fixed the gemspec + ## 1.1.0 - Added support for testing against all known Ruby and Rails versions diff --git a/is_it_up.gemspec b/is_it_up.gemspec index 9589d99..b680feb 100644 --- a/is_it_up.gemspec +++ b/is_it_up.gemspec @@ -14,9 +14,10 @@ Gem::Specification.new do |spec| spec.files = ::Dir.glob(::Pathname.new(__dir__).join("lib/**/**")).reject do |file| file.match(%r{^(test|spec|features)/}) || ::File.directory?(file) 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.bindir = ["bin"] spec.add_dependency "rack" diff --git a/lib/is_it_up/version.rb b/lib/is_it_up/version.rb index bd65e9c..d44de22 100644 --- a/lib/is_it_up/version.rb +++ b/lib/is_it_up/version.rb @@ -1,5 +1,5 @@ module IsItUp - VERSION = '1.1.0'.freeze + VERSION = '1.1.1'.freeze public_constant :VERSION end