Skip to content

Commit

Permalink
Merge pull request #7 from nulogy/update-dependencies
Browse files Browse the repository at this point in the history
Adds support for Rails 7.x, bumps version
  • Loading branch information
jayuen authored Sep 21, 2022
2 parents cf2018d + 3c1528f commit 221c282
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@

# Appraisals
*.gemfile.lock
/gemfiles/.bundle
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ end
appraise "rails-6-1" do
gem "rails", "6.1.4"
end

appraise "rails-7" do
gem "rails", "7.0.4"
gem "sprockets-rails", "3.4.2"
end
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

_none_

## 2.1.1 (2022-09-21)

**Changes**
* Support Rails 7

## 2.1.0 (2022-02-10)

**Changes**
Expand Down
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ source "https://rubygems.org"

# Specify your gem's dependencies in nulogy_graphql_api.gemspec
gemspec

gem "rake", "~> 13.0"
gem "rspec", "~> 3.9"
2 changes: 0 additions & 2 deletions gemfiles/rails_6.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

source "https://rubygems.org"

gem "rake", "~> 13.0"
gem "rspec", "~> 3.9"
gem "rails", "6.0.3.7"

gemspec path: "../"
2 changes: 0 additions & 2 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

source "https://rubygems.org"

gem "rake", "~> 13.0"
gem "rspec", "~> 3.9"
gem "rails", "6.1.4"

gemspec path: "../"
8 changes: 8 additions & 0 deletions gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "7.0.4"
gem "sprockets-rails", "3.4.2"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/nulogy_graphql_api/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module NulogyGraphqlApi
VERSION = "2.1.0"
VERSION = "2.1.1"
end
3 changes: 2 additions & 1 deletion nulogy_graphql_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ Gem::Specification.new do |spec|

spec.add_dependency "graphql", "~> 2.0"
spec.add_dependency "graphql-schema_comparator", "~> 1.0"
spec.add_dependency "rails", ">= 6.0", "< 7.0"
spec.add_dependency "rails", ">= 6.0", "< 8.0"
spec.add_dependency "rainbow", "~> 3.0"

spec.add_development_dependency "appraisal", "~> 2.4"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.9"
spec.add_development_dependency "rspec-rails", "~> 5.1"
spec.add_development_dependency "rubocop", "~> 1.25"
spec.add_development_dependency "rubocop-performance", "~> 1.13"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 221c282

Please sign in to comment.