Skip to content

test: restore the ability to inject tailwindcss-ruby bundler opts #472

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

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/integration/user_install_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ bundle add rails --skip-install ${RAILSOPTS:-}

# use the tailwindcss-rails under test
bundle add tailwindcss-rails --skip-install --path="../.."
bundle add tailwindcss-ruby --skip-install ${TAILWINDCSSOPTS:-}
bundle install --prefer-local
bundle show --paths
bundle show --paths | fgrep tailwind
bundle binstubs --all

# install tailwindcss
Expand Down
6 changes: 3 additions & 3 deletions test/integration/user_upgrade_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bundle add rails --skip-install ${RAILSOPTS:-}
bundle add tailwindcss-rails --skip-install --version 3.3.0
bundle add tailwindcss-ruby --skip-install --version 3.4.17
bundle install --prefer-local
bundle show --paths
bundle show --paths | fgrep tailwind
bundle binstubs --all

# install tailwindcss
Expand All @@ -51,10 +51,10 @@ bundle remove tailwindcss-rails --skip-install
bundle remove tailwindcss-ruby --skip-install

bundle add tailwindcss-rails --skip-install --path="../.."
bundle add tailwindcss-ruby --skip-install --version 4.0.0
bundle add tailwindcss-ruby --skip-install ${TAILWINDCSSOPTS:---version 4.0.0}

bundle install --prefer-local
bundle show --paths
bundle show --paths | fgrep tailwind
bundle binstubs --all

# create a postcss file
Expand Down
Loading