Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Commit

Permalink
Merge pull request #111 from rjackson/ensure_bundled_after_checkout
Browse files Browse the repository at this point in the history
Ensure bundle install is called after checking out.
  • Loading branch information
rwjblue committed Dec 8, 2013
2 parents 3c984d5 + 463489c commit ef16d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ember-dev/test_support.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def prepare_for_branch_tests(branch)
end

def build
backtick("bundle exec rake ember:dist")
backtick("bundle install && bundle exec rake ember:dist")

$?.success?
end
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/test_support_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def support.backtick_calls; @backtick_calls; end

support.build

assert_equal ["bundle exec rake ember:dist"], support.backtick_calls
assert_equal ["bundle install && bundle exec rake ember:dist"], support.backtick_calls
end
end

Expand Down

0 comments on commit ef16d02

Please sign in to comment.