Skip to content

Commit

Permalink
fix: various gemspec fixes; v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Jan 9, 2023
1 parent 306c0e0 commit 8df23cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ChangeLog
=========

0.1.2
-----
- Fix URIs in gemspec

0.1.1
-----
- Testing release for Github Actions integration
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_cloudflare_turnstile (0.1.1)
rails_cloudflare_turnstile (0.1.2)
faraday (>= 1.0, < 3.0)
rails (>= 5.0, < 7.1)

Expand Down
10 changes: 0 additions & 10 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
require "bundler/setup"

require "bundler/gem_tasks"

require "rake/testtask"

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.pattern = "test/**/*_test.rb"
t.verbose = false
end

task default: :test
2 changes: 1 addition & 1 deletion lib/rails_cloudflare_turnstile/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RailsCloudflareTurnstile
VERSION = "0.1.1"
VERSION = "0.1.2"
end
9 changes: 4 additions & 5 deletions rails-cloudflare-turnstile.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ Gem::Specification.new do |spec|
Rails extension for Cloudflare's Turnstile CAPTCHA alternative. This gem should work with
Rails 5.x, 6.x, and 7.x, and with Faraday 1.x and 2.x.
EOF
spec.homepage = "https://github.com/instrumentl/rails_cloudflare-turnstile"
spec.homepage = "https://github.com/instrumentl/rails-cloudflare-turnstile"
spec.license = "ISC"
spec.required_ruby_version = ">= 2.7.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/instrumentl/rails_cloudflare-turnstile"
spec.metadata["source_code_uri"] = "https://github.com/instrumentl/rails_cloudflare-turnstile"
spec.metadata["changelog_uri"] = "https://github.com/dotenv-org/cloudflare_turnstile"
spec.metadata["source_code_uri"] = "https://github.com/instrumentl/rails-cloudflare-turnstile"
spec.metadata["changelog_uri"] = "https://github.com/instrumentl/rails-cloudflare-turnstile/blob/main/CHANGELOG.md"

spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]

spec.add_dependency "rails", ">= 5.0", "< 7.1"
Expand Down

0 comments on commit 8df23cf

Please sign in to comment.