diff --git a/.circleci/config.yml b/.circleci/config.yml index a0248b3..bc5a2df 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -50,6 +50,7 @@ workflows: - Gemfile.rails60 - Gemfile.rails61 - Gemfile.rails70 + - Gemfile.rails71 ruby-version: - ruby26 - ruby27 @@ -57,3 +58,5 @@ workflows: exclude: - gemfile: Gemfile.rails70 ruby-version: ruby26 + - gemfile: Gemfile.rails71 + ruby-version: ruby26 diff --git a/Gemfile.rails71 b/Gemfile.rails71 new file mode 100644 index 0000000..3606490 --- /dev/null +++ b/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] diff --git a/spec/layout_spec.rb b/spec/layout_spec.rb index b18b1bc..e847b3e 100644 --- a/spec/layout_spec.rb +++ b/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" diff --git a/spec/props_template_spec.rb b/spec/props_template_spec.rb index e121e47..16f5f5a 100644 --- a/spec/props_template_spec.rb +++ b/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 diff --git a/spec/searcher_spec.rb b/spec/searcher_spec.rb index 7acc579..8d41298 100644 --- a/spec/searcher_spec.rb +++ b/spec/searcher_spec.rb @@ -1,4 +1,4 @@ -require_relative "./support/helper" +require_relative "support/helper" class Collection def initialize(ary, rspec)