forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ref: - rails/rails#43058 Fix activeadmin#7196
- Loading branch information
Showing
7 changed files
with
472 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gem 'inherited_resources', github: 'tagliala/inherited_resources', branch: 'feature/railties-7' # FIXME: blocking | ||
gem 'ransack', github: 'activerecord-hackery/ransack' # FIXME: blocking | ||
|
||
group :development, :test do | ||
gem "rake" | ||
gem "pry" # Easily debug from your console with `binding.pry` | ||
gem "pry-byebug", platform: :mri # Step-by-step debugging | ||
|
||
gem "cancancan" | ||
gem "pundit" | ||
gem "jruby-openssl", platform: :jruby | ||
|
||
gem "draper" | ||
gem "devise" | ||
|
||
gem "rails", "~> 7.0.0" | ||
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby | ||
|
||
gem "sprockets-rails" | ||
gem "sassc-rails" | ||
end | ||
|
||
group :test do | ||
gem "cuprite" | ||
gem "capybara" | ||
gem "webrick" | ||
gem "db-query-matchers" # FIXME: should be upgraded | ||
|
||
gem "simplecov", require: false # Test coverage generator. Go to /coverage/ after running tests | ||
gem "cucumber-rails", github: 'erikaxel/cucumber-rails', require: false # FIXME: blocking | ||
gem "cucumber" | ||
gem "database_cleaner" | ||
gem "jasmine" | ||
gem "jasmine-core" | ||
gem "launchy" | ||
gem "parallel_tests" | ||
gem "rails-i18n", github: 'f6p/rails-i18n', branch: 'rails7' # Provides default i18n for many languages # FIXME: blocking | ||
gem "rspec-rails" | ||
gem "sqlite3", platform: :mri | ||
end | ||
|
||
gemspec path: "../.." |
Oops, something went wrong.