-
Notifications
You must be signed in to change notification settings - Fork 116
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
Improve dev env experience after Ruby version updates #11670
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -2,6 +2,5 @@ brew 'postgresql@14' | |
brew 'redis' | ||
brew 'node@22' | ||
brew 'yarn' | ||
brew '[email protected]' | ||
brew 'jq' | ||
cask 'chromedriver' |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,6 +96,8 @@ gem 'zxcvbn', '0.1.12' | |
group :development do | ||
gem 'better_errors', '>= 2.5.1' | ||
gem 'derailed_benchmarks' | ||
# Putting foreman here saves developers from having bin/setup when the Ruby version changes | ||
gem 'foreman', require: false | ||
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. We might want to change the 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. That's a good point. In my environment, I tried adding this line to the Gemfile to see if using Here's what happened when I added it to the Gemfile before and after running `bundle install`
[etc] 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. Foreman recommends against putting it in the Gemfile:
The reasoning described in the wiki article seems sensible enough to me to not include it. |
||
gem 'irb' | ||
gem 'letter_opener', '~> 1.8' | ||
gem 'rack-mini-profiler', '>= 1.1.3', require: false | ||
|
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.
Some of our deployed environments still use openssl 1.1, so I think it'd be preferable to keep it as-is for consistency.
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.
Is there a way to resolve the fact that this prevents engs from deploying idp on their local environments?
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.
What's the dependency for the environments that still use openssl 1.1? Login.gov is very good about keeping important things like Ruby versions up to date, which is why this change felt safe to me.