Gemfile in activeadmin-rb-1.4.0 vs Gemfile in activeadmin-rb-1.5.0

- old
+ new

@@ -1,17 +1,11 @@ source 'https://rubygems.org' -# Trick to use https without warnings and without having to specify full URLs -# TODO: Can be removed when Bundler 2.x is released. -git_source(:github) do |repo_name| - repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") - "https://github.com/#{repo_name}.git" -end - # Optional dependencies gem 'cancan' gem 'pundit' +gem 'jruby-openssl', '~> 0.10.1', platforms: :jruby # Utility gems used in both development & test environments gem 'rake' gem 'parallel_tests' @@ -39,20 +33,18 @@ # Performance gem 'rack-mini-profiler' # Inline app profiler. See ?pp=help for options. end group :test do - gem 'capybara', '< 3.0' + gem 'capybara' gem 'simplecov', require: false # Test coverage generator. Go to /coverage/ after running tests gem 'codecov', require: false # Test coverage website. Go to https://codecov.io gem 'cucumber-rails', '~> 1.5', require: false gem 'cucumber' gem 'database_cleaner' gem 'jasmine' gem 'launchy' - gem 'rails-i18n' # Provides default i18n for many languages gem 'rspec-rails' gem 'i18n-spec' - gem 'shoulda-matchers', '<= 2.8.0' - gem 'sqlite3', platforms: :mri + gem 'sqlite3', '< 1.4', platforms: :mri gem 'poltergeist' end