Skip to content

Commit

Permalink
fixup! Update listen to support ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsppedro committed Mar 21, 2021
1 parent aa58975 commit 83bca79
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Appraisals
Expand Up @@ -34,7 +34,7 @@ appraise 'rails_5_0' do
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bcrypt', '~> 3.1.7'
gem 'listen', '~> 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring-watcher-listen', '~> 2.0.0'

# Database adapters
Expand All @@ -54,7 +54,7 @@ appraise 'rails_5_1' do
gem 'bcrypt', '~> 3.1.7'
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'listen', '~> 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring-watcher-listen', '~> 2.0.0'

# Database adapters
Expand All @@ -76,7 +76,7 @@ appraise 'rails_5_2' do
gem 'capybara', '~> 3.1.1'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'listen', '~> 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring-watcher-listen', '~> 2.0.0'

# Database adapters
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_0.gemfile
Expand Up @@ -29,7 +29,7 @@ gem "jquery-rails"
gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.5"
gem "bcrypt", "~> 3.1.7"
gem "listen", "~> 3.3.0"
gem "listen", "~> 3.0.5"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
8 changes: 4 additions & 4 deletions gemfiles/rails_5_0.gemfile.lock
Expand Up @@ -64,9 +64,9 @@ GEM
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
loofah (2.9.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
Expand Down Expand Up @@ -223,7 +223,7 @@ DEPENDENCIES
fssm
jbuilder (~> 2.5)
jquery-rails
listen (~> 3.3.0)
listen (~> 3.0.5)
pg (~> 0.18)
pry
pry-byebug
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_1.gemfile
Expand Up @@ -30,7 +30,7 @@ gem "jbuilder", "~> 2.5"
gem "bcrypt", "~> 3.1.7"
gem "capybara", "~> 2.13"
gem "selenium-webdriver"
gem "listen", "~> 3.3.0"
gem "listen", "~> 3.0.5"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
8 changes: 4 additions & 4 deletions gemfiles/rails_5_1.gemfile.lock
Expand Up @@ -70,9 +70,9 @@ GEM
concurrent-ruby (~> 1.0)
jbuilder (2.11.2)
activesupport (>= 5.0.0)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
loofah (2.9.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
Expand Down Expand Up @@ -236,7 +236,7 @@ DEPENDENCIES
capybara (~> 2.13)
fssm
jbuilder (~> 2.5)
listen (~> 3.3.0)
listen (~> 3.0.5)
pg (~> 0.18)
pry
pry-byebug
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_2.gemfile
Expand Up @@ -32,7 +32,7 @@ gem "bcrypt", "~> 3.1.7"
gem "capybara", "~> 3.1.1"
gem "selenium-webdriver"
gem "chromedriver-helper"
gem "listen", "~> 3.3.0"
gem "listen", "~> 3.0.5"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
8 changes: 4 additions & 4 deletions gemfiles/rails_5_2.gemfile.lock
Expand Up @@ -82,9 +82,9 @@ GEM
io-like (0.3.1)
jbuilder (2.11.2)
activesupport (>= 5.0.0)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
loofah (2.9.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
Expand Down Expand Up @@ -255,7 +255,7 @@ DEPENDENCIES
chromedriver-helper
fssm
jbuilder (~> 2.5)
listen (~> 3.3.0)
listen (~> 3.0.5)
pg (~> 0.18)
pry
pry-byebug
Expand Down

0 comments on commit 83bca79

Please sign in to comment.