Skip to content

Commit

Permalink
[HOTFIX] Fix the gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Arne De Herdt committed Sep 13, 2022
1 parent 1731405 commit 72627a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 2 additions & 1 deletion is_it_up.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion lib/is_it_up/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module IsItUp
VERSION = '1.1.0'.freeze
VERSION = '1.1.1'.freeze

public_constant :VERSION
end

0 comments on commit 72627a9

Please sign in to comment.