Skip to content

Commit

Permalink
Add rails 71 (#9)
Browse files Browse the repository at this point in the history
* Add rails 7.1 to test matrix

* Standard fix
  • Loading branch information
jho406 committed Oct 8, 2023
1 parent 27fdb18 commit 509b34d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Expand Up @@ -50,10 +50,13 @@ workflows:
- Gemfile.rails60
- Gemfile.rails61
- Gemfile.rails70
- Gemfile.rails71
ruby-version:
- ruby26
- ruby27
- ruby30
exclude:
- gemfile: Gemfile.rails70
ruby-version: ruby26
- gemfile: Gemfile.rails71
ruby-version: ruby26
7 changes: 7 additions & 0 deletions Gemfile.rails71
@@ -0,0 +1,7 @@
source "https://rubygems.org"
gemspec

gem "rspec"
gem "byebug"
gem "rails", "~> 7.1.0"
gem "standard", group: [:development, :test]
4 changes: 2 additions & 2 deletions spec/layout_spec.rb
@@ -1,5 +1,5 @@
require_relative "./support/helper"
require_relative "./support/rails_helper"
require_relative "support/helper"
require_relative "support/rails_helper"
require "props_template/layout_patch"
require "action_controller"

Expand Down
2 changes: 1 addition & 1 deletion spec/props_template_spec.rb
@@ -1,4 +1,4 @@
require_relative "./support/helper"
require_relative "support/helper"

RSpec.describe "Props::Base" do
it "initializes" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searcher_spec.rb
@@ -1,4 +1,4 @@
require_relative "./support/helper"
require_relative "support/helper"

class Collection
def initialize(ary, rspec)
Expand Down

0 comments on commit 509b34d

Please sign in to comment.