Skip to content
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

Add option to install local build #1241

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

stevepolitodesign
Copy link
Contributor

@stevepolitodesign stevepolitodesign commented Dec 5, 2024

In the process of supporting Rails 8 via #1213, we realized we needed to
install a local build.

This commit simply introduces a --suspenders-local option, and
documents how to build locally.

Comment on lines +30 to +31
elsif ARGV.include?("--suspenders-local") && ENV["SUSPENDERS_LOCAL_PATH"]
gem "suspenders", path: ENV.fetch("SUSPENDERS_LOCAL_PATH")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This feels a little redundant. Would this be better?

Suggested change
elsif ARGV.include?("--suspenders-local") && ENV["SUSPENDERS_LOCAL_PATH"]
gem "suspenders", path: ENV.fetch("SUSPENDERS_LOCAL_PATH")
elsif ENV["SUSPENDERS_LOCAL_PATH"].present?
gem "suspenders", path: ENV.fetch("SUSPENDERS_LOCAL_PATH")

Then, we could omit --suspenders-local altogether.

SUSPENDERS_LOCAL_PATH=/path/to/suspenders \
 rails new app_name \
 --skip-rubocop \
 --skip-test \
 -d=postgresql \
 -m=https://raw.githubusercontent.com/thoughtbot/suspenders/main/lib/install/web.rb

In the process of supporting Rails 8 via #1213, we realized we needed to
install a local build.

This commit simply introduces a `--suspenders-local` option, and
documents how to build locally.

Co-Authored-By: Nick Charlton <[email protected]>
@stevepolitodesign stevepolitodesign force-pushed the sp-update-contributing-guide branch from ae32054 to c69f21a Compare December 5, 2024 16:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant