Skip to content
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

Fix version parser for phantomjs 1.5 (development) #26

Merged
merged 1 commit into from
Jan 11, 2012
Merged
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
2 changes: 2 additions & 0 deletions lib/guard/jasmine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ def jasmine_runner_available?(url)
def phantomjs_bin_valid?(bin)
if bin && !bin.empty?
version = `#{ bin } --version`
# remove all but version from "1.5 (development)"
version = version.match(/(\d\.\d)/)[0]

if !version
notify_failure('PhantomJS executable missing', "PhantomJS executable doesn't exist at #{ bin }")
Expand Down