-
-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove platform duplicates #356
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 5.2' | ||
gem 'rails', '~> 7.0.4' | ||
gem 'rails-html-sanitizer', '~> 1.4.3' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'activerecord', '3.2.10' | ||
gem 'nokogiri', '1.13.6' |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,14 @@ GEM | |
concurrent-ruby (1.1.7) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
mini_portile2 (2.8.0) | ||
multi_json (1.15.0) | ||
nokogiri (1.13.6) | ||
mini_portile2 (~> 2.8.0) | ||
racc (~> 1.4) | ||
nokogiri (1.13.6-x86_64-linux) | ||
racc (~> 1.4) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we are going to test |
||
racc (1.6.0) | ||
tzinfo (0.3.58) | ||
|
||
PLATFORMS | ||
|
@@ -26,6 +33,7 @@ PLATFORMS | |
|
||
DEPENDENCIES | ||
activerecord (= 3.2.10) | ||
nokogiri (= 1.13.6) | ||
|
||
BUNDLED WITH | ||
2.2.0 | ||
2.3.4 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ module Fixtures | |
module Database | ||
PATH = File.join(ROOT,'database') | ||
|
||
COMMIT = '89cdde9a725bb6f8a483bca97c5da344e060ac61' | ||
COMMIT = '137a425b9f4f30f895df8765b0e773400170803d' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed to get latest advisory for nokogiri |
||
|
||
def self.clone | ||
system 'git', 'clone', '--quiet', Bundler::Audit::Database::URL, PATH | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need after changing the fixed commit of the advisory db
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we need to bump the
rails
version and theruby-advisory-db
commit, that can be done in a separate PR which I can immediately merge.