Skip to content

Commit 39128aa

Browse files
committed
Use upstream version of memfs
1 parent 822296b commit 39128aa

8 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,8 @@ jobs:
6767
env:
6868
# $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
6969
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.rails }}.gemfile
70-
71-
# reenable me later
72-
# RUBYOPT: "--enable=frozen-string-literal --debug=frozen-string-literal"
70+
# Check for frozen strings
71+
RUBYOPT: "--enable=frozen-string-literal --debug=frozen-string-literal"
7372

7473
steps:
7574
- name: Checkout

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gemspec
77
# Dev libs
88
gem 'appraisal', git: 'https://github.com/thoughtbot/appraisal.git'
99
gem 'capybara'
10-
gem 'memfs', '~> 0.4.1'
10+
gem 'memfs', git: 'https://github.com/simonc/memfs.git'
1111
gem 'rake'
1212
gem 'rdoc'
1313
gem 'rspec'

gemfiles/rails_6.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

gemfiles/rails_7.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

gemfiles/rails_7.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

gemfiles/rails_7.2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

gemfiles/rails_8.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

gemfiles/rails_8.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
66
gem "capybara"
7-
gem "memfs", "~> 0.4.1"
7+
gem "memfs", git: "https://github.com/simonc/memfs.git"
88
gem "rake"
99
gem "rdoc"
1010
gem "rspec"

0 commit comments

Comments
 (0)