Skip to content

Commit

Permalink
Fix gemspec include files
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Feb 9, 2022
1 parent 08bb196 commit 9c3b868
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rucaptcha/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RuCaptcha
VERSION = "2.6.0"
VERSION = "2.6.1"
end
6 changes: 5 additions & 1 deletion rucaptcha.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ Gem::Specification.new do |s|
s.version = RuCaptcha::VERSION
s.authors = "Jason Lee"
s.email = "[email protected]"
s.files = Dir.glob("{lib,ext,app,config}/**/*.{rb}") + %w[README.md CHANGELOG.md]
s.files = Dir.glob("lib/**/*.{rb}") +
Dir.glob("ext/**/*.{h,c,rb}") +
Dir.glob("app/**/*") +
Dir.glob("config/**/*") +
%w[README.md CHANGELOG.md]
s.homepage = "https://github.com/huacnlee/rucaptcha"
s.require_paths = ["lib"]
s.extensions = %w[ext/rucaptcha/extconf.rb]
Expand Down

0 comments on commit 9c3b868

Please sign in to comment.