forked from covermymeds/rubocop-thread_safety
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from viralpraxis/fix-appraisal-conf
Fix appraisal configuration
- Loading branch information
Showing
4 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
# frozen_string_literal: true | ||
|
||
customize_gemfiles do | ||
{ | ||
single_quotes: true, | ||
heading: <<~HEADING.strip | ||
frozen_string_literal: true | ||
This file was generated by Appraisal | ||
HEADING | ||
} | ||
end | ||
|
||
appraise 'rubocop-1.48' do | ||
gem 'base64', '~> 0.1.1' | ||
gem 'rubocop', '~> 1.48.0' | ||
end | ||
|
||
appraise 'rubocop-1.66' do | ||
gem 'rubocop', '-> 1.66.0' | ||
gem 'rubocop', '~> 1.66.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "base64", "~> 0.1.1" | ||
gem "rubocop", "~> 1.48.0" | ||
gem 'base64', '~> 0.1.1' | ||
gem 'rubocop', '~> 1.48.0' | ||
|
||
gemspec path: "../" | ||
gemspec path: '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "rubocop", "~> 1.66.0" | ||
gem 'rubocop', '~> 1.66.0' | ||
|
||
gemspec path: "../" | ||
gemspec path: '../' |