Skip to content

Commit

Permalink
Update listen to support ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsppedro committed Mar 11, 2021
1 parent ccfd3ce commit 0e660b2
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 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.0.5'
gem 'listen', '~> 3.3.0'
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.0.5'
gem 'listen', '~> 3.3.0'
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.0.5'
gem 'listen', '~> 3.3.0'
gem 'spring-watcher-listen', '~> 2.0.0'

# Database adapters
Expand All @@ -96,7 +96,7 @@ appraise 'rails_6_0' do
gem 'jbuilder', '~> 2.7'
gem 'bcrypt', '~> 3.1.7'
gem 'capybara', '>= 2.15'
gem 'listen', '~> 3.2.0'
gem 'listen', '~> 3.3.0'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'selenium-webdriver'
gem 'webdrivers'
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.0.5"
gem "listen", "~> 3.3.0"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
10 changes: 5 additions & 5 deletions gemfiles/rails_5_0.gemfile.lock
Expand Up @@ -52,7 +52,7 @@ GEM
crass (1.0.6)
diff-lcs (1.4.4)
erubis (2.7.0)
ffi (1.14.2)
ffi (1.15.0)
fssm (0.2.10)
globalid (0.4.2)
activesupport (>= 4.2.0)
Expand All @@ -64,9 +64,9 @@ GEM
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
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.0.5)
listen (~> 3.3.0)
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.0.5"
gem "listen", "~> 3.3.0"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
10 changes: 5 additions & 5 deletions gemfiles/rails_5_1.gemfile.lock
Expand Up @@ -62,17 +62,17 @@ GEM
crass (1.0.6)
diff-lcs (1.4.4)
erubi (1.10.0)
ffi (1.14.2)
ffi (1.15.0)
fssm (0.2.10)
globalid (0.4.2)
activesupport (>= 4.2.0)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
jbuilder (2.11.2)
activesupport (>= 5.0.0)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
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.0.5)
listen (~> 3.3.0)
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.0.5"
gem "listen", "~> 3.3.0"
gem "spring-watcher-listen", "~> 2.0.0"
gem "pg", "~> 0.18"
gem "sqlite3", "~> 1.3.6"
10 changes: 5 additions & 5 deletions gemfiles/rails_5_2.gemfile.lock
Expand Up @@ -73,7 +73,7 @@ GEM
crass (1.0.6)
diff-lcs (1.4.4)
erubi (1.10.0)
ffi (1.14.2)
ffi (1.15.0)
fssm (0.2.10)
globalid (0.4.2)
activesupport (>= 4.2.0)
Expand All @@ -82,9 +82,9 @@ GEM
io-like (0.3.1)
jbuilder (2.11.2)
activesupport (>= 5.0.0)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
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.0.5)
listen (~> 3.3.0)
pg (~> 0.18)
pry
pry-byebug
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_0.gemfile
Expand Up @@ -30,7 +30,7 @@ gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.7"
gem "bcrypt", "~> 3.1.7"
gem "capybara", ">= 2.15"
gem "listen", "~> 3.2.0"
gem "listen", "~> 3.3.0"
gem "spring-watcher-listen", "~> 2.0.0"
gem "selenium-webdriver"
gem "webdrivers"
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_6_0.gemfile.lock
Expand Up @@ -82,15 +82,15 @@ GEM
crass (1.0.6)
diff-lcs (1.4.4)
erubi (1.10.0)
ffi (1.14.2)
ffi (1.15.0)
fssm (0.2.10)
globalid (0.4.2)
activesupport (>= 4.2.0)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
jbuilder (2.11.2)
activesupport (>= 5.0.0)
listen (3.2.1)
listen (3.3.4)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.9.0)
Expand Down Expand Up @@ -270,7 +270,7 @@ DEPENDENCIES
capybara (>= 2.15)
fssm
jbuilder (~> 2.7)
listen (~> 3.2.0)
listen (~> 3.3.0)
pg (>= 0.18, < 2.0)
pry
pry-byebug
Expand Down

0 comments on commit 0e660b2

Please sign in to comment.