Skip to content

Commit

Permalink
add log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Jun 25, 2024
1 parent 25edd25 commit de5bfaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
git config user.email "[email protected]"
git config user.name "Your Name"
git commit -am "stop generators from complaining about uncommitted code"
- run: bundle info shakapacker
- run: cd spec/dummy && bundle info shakapacker
- name: Main CI
run: bundle exec rake run_rspec:all_dummy
- name: Store test results
Expand Down
2 changes: 2 additions & 0 deletions rakelib/shakapacker_examples.rake
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ namespace :shakapacker_examples do # rubocop:disable Metrics/BlockLength
example_type.rails_options += "--skip-javascript"
sh_in_dir(examples_dir, "rails new #{example_type.name} #{example_type.rails_options}")
sh_in_dir(example_type.dir, "touch .gitignore")
sh_in_dir(example_type.dir, "cat Gemfile")
append_to_gemfile(example_type.gemfile, example_type.dir)
sh_in_dir(example_type.dir, "cat Gemfile")
bundle_install_in(example_type.dir)
sh_in_dir(example_type.dir, "rake shakapacker:install")
sh_in_dir(example_type.dir, example_type.generator_shell_commands)
Expand Down
2 changes: 2 additions & 0 deletions rakelib/webpacker_examples.rake
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ namespace :webpacker_examples do # rubocop:disable Metrics/BlockLength
example_type.rails_options += "--skip-javascript"
sh_in_dir(examples_dir, "rails new #{example_type.name} #{example_type.rails_options}")
sh_in_dir(example_type.dir, "touch .gitignore")
sh_in_dir(example_type.dir, "cat Gemfile")
append_to_gemfile(example_type.gemfile, example_type.dir)
sh_in_dir(example_type.dir, "cat Gemfile")
bundle_install_in(example_type.dir)
sh_in_dir(example_type.dir, "rake webpacker:install")
sh_in_dir(example_type.dir, example_type.generator_shell_commands)
Expand Down

0 comments on commit de5bfaf

Please sign in to comment.