Gemfile in jb-0.8.0 vs Gemfile in jb-0.8.1

- old
+ new

@@ -3,7 +3,20 @@ source 'https://rubygems.org' # Specify your gem's dependencies in jb.gemspec gemspec +if ENV['RAILS_VERSION'] == 'edge' + gem 'rails', git: 'https://github.com/rails/rails.git', branch: 'main' +elsif ENV['RAILS_VERSION'] + gem 'rails', "~> #{ENV['RAILS_VERSION']}.0" +else + gem 'rails' +end + +gem 'nokogiri', RUBY_VERSION < '2.1' ? '~> 1.6.0' : '>= 1.7' +gem 'loofah', RUBY_VERSION < '2.5' ? '< 2.21.0' : '>= 0' +gem 'selenium-webdriver' +gem 'net-smtp' if RUBY_VERSION >= '3.1' + # For benchmarking gem 'action_args'