Skip to content

Commit dddbfee

Browse files
authored
Update getting started guide expectations (heroku#1650)
* Update getting started guide spec * Getting started app no longer uses sprockets
1 parent bd1c66b commit dddbfee

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

spec/hatchet/getting_started_spec.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
it "works on Heroku-24" do
55
Hatchet::Runner.new("ruby-getting-started", stack: "heroku-24").deploy do |app|
66
expect(app.output).to_not include("Purging Cache")
7-
# Assert sprockets build cache not present on runtime
8-
expect(app.run("ls tmp/cache/assets")).to_not match("sprockets")
97

108
# Re-deploy with cache
119
run!("git commit --allow-empty -m empty")
@@ -35,10 +33,10 @@
3533
export BUNDLE_PATH=${BUNDLE_PATH:-vendor/bundle}
3634
export BUNDLE_WITHOUT=${BUNDLE_WITHOUT:-development:test}
3735
export DISABLE_SPRING="1"
38-
export GEM_PATH="$HOME/vendor/bundle/ruby/3.2.0:$GEM_PATH"
36+
export GEM_PATH="$HOME/vendor/bundle/ruby/3.4.0:$GEM_PATH"
3937
export LANG=${LANG:-en_US.UTF-8}
4038
export MALLOC_ARENA_MAX=${MALLOC_ARENA_MAX:-2}
41-
export PATH="$HOME/bin:$HOME/vendor/bundle/bin:$HOME/vendor/bundle/ruby/3.2.0/bin:$PATH"
39+
export PATH="$HOME/bin:$HOME/vendor/bundle/bin:$HOME/vendor/bundle/ruby/3.4.0/bin:$PATH"
4240
export PUMA_PERSISTENT_TIMEOUT=${PUMA_PERSISTENT_TIMEOUT:-95}
4341
export RACK_ENV=${RACK_ENV:-production}
4442
export RAILS_ENV=${RAILS_ENV:-production}

0 commit comments

Comments
 (0)