Skip to content

Commit

Permalink
possible fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Aug 27, 2024
1 parent 36b375d commit b30a3f8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ namespace :run_spec do
"bundle install",
"yalc link shakapacker",
"yarn install",
"yarn list shakapacker",
"bundle exec rspec"
])
end
Expand Down
2 changes: 1 addition & 1 deletion spec/dummy/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4060,7 +4060,7 @@ [email protected]:
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==

"shakapacker@file:.yalc/shakapacker":
version "8.0.0-rc.2"
version "8.0.1"
dependencies:
js-yaml "^4.1.0"
path-complete-extname "^1.0.0"
Expand Down
6 changes: 1 addition & 5 deletions spec/generator_specs/generator_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,9 @@
it "adds binstubs" do
expected_binstubs = []
Dir.chdir(File.join(GEM_ROOT, "lib/install/bin")) do
expected_binstubs = Dir.glob("bin/*")
expected_binstubs = Dir.glob("*")
end

puts "ZYXYZ"
puts expected_binstubs
puts Dir.entries(File.join(GEM_ROOT, "lib/install/bin"))

Dir.chdir(File.join(TEMP_RAILS_APP_PATH, "bin")) do
actual_binstubs = Dir.glob("*")
expect(actual_binstubs).to include(*expected_binstubs)
Expand Down

0 comments on commit b30a3f8

Please sign in to comment.