Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
require:
- rubocop-capybara

plugins:
- rubocop-capybara
- rubocop-performance
- rubocop-rake
- rubocop-rspec
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Add support for Ruby 3.4. (Tristan Dunn)
* Drop support for Ruby 3.1. (Tristan Dunn)
* Update development dependencies. (Tristan Dunn)
* Remove the sinatra dependency. (Tristan Dunn)

## 6.0.0 — March 21st, 2024

Expand Down
21 changes: 10 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,19 @@ gemspec

gem "capybara", "3.40.0"
gem "mutex_m", "0.3.0"
gem "ostruct", "0.6.1"
gem "puma", "6.6.0"
gem "ostruct", "0.6.3"
gem "puma", "7.1.0"
gem "pusher", "2.0.3"
gem "rake", "13.2.1"
gem "rspec", "3.13.0"
gem "rubocop", "1.72.2"
gem "rubocop-capybara", "2.21.0"
gem "rubocop-performance", "1.24.0"
gem "rake", "13.3.1"
gem "rspec", "3.13.2"
gem "rubocop", "1.81.7"
gem "rubocop-capybara", "2.22.1"
gem "rubocop-performance", "1.26.1"
gem "rubocop-rake", "0.7.1"
gem "rubocop-rspec", "3.5.0"
gem "selenium-webdriver", "4.28.0"
gem "sinatra", "3.2.0"
gem "rubocop-rspec", "3.8.0"
gem "selenium-webdriver", "4.38.0"
gem "yard", "0.9.37"

group :test do
gem "simplecov-console", "0.9.3", require: false
gem "simplecov-console", "0.9.4", require: false
end
2 changes: 1 addition & 1 deletion pusher-fake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ Gem::Specification.new do |s|
s.add_dependency "em-websocket", "~> 0.5"
s.add_dependency "multi_json", "~> 1.6"
s.add_dependency "mutex_m", "~> 0.3.0"
s.add_dependency "thin", "~> 1"
s.add_dependency "thin", ">= 1.8", "< 2"
end