Get rid of rbx specific dependencies

- We're no longer CIing against rbx since 5.years.ago
- rubysl depends on rubysl-irb https://rubygems.org/gems/rubysl-irb/versions/2.1.1 which depends on ruby 2.x,
  and this prevents running tests on ruby 3 https://github.com/haml/haml-rails/runs/5609888796
This commit is contained in:
Akira Matsuda 2022-03-29 09:39:03 +09:00
parent c833d7e42d
commit 7c94b39cdb
3 changed files with 0 additions and 4 deletions

View File

@ -3,6 +3,4 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in haml-rails.gemspec
gemspec
gem 'rubysl', '~> 2.0', platforms: :rbx
gem 'minitest', platforms: :rbx
gem 'html2haml'

View File

@ -2,7 +2,6 @@
source "https://rubygems.org"
gem "rubysl", "~> 2.0", :platforms => :rbx
gem "minitest", :platforms => :rbx
gem "html2haml"
gem "rails", "~> 5.1.0"

View File

@ -2,7 +2,6 @@
source "https://rubygems.org"
gem "rubysl", "~> 2.0", :platforms => :rbx
gem "minitest", :platforms => :rbx
gem "html2haml"
gem "rails", "~> 5.2.0"