Skip to content

Commit

Permalink
Added guard-phantomjs-jasmine gem.
Browse files Browse the repository at this point in the history
Added Guardfile and Rakefile.
  • Loading branch information
stas committed Oct 27, 2013
1 parent c4d674d commit a38b457
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source :rubygems

gem 'guard-phantomjs-jasmine', :github => 'stas/guard-phantomjs-jasmine'
gem 'rb-inotify'
25 changes: 25 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
GIT
remote: git://github.com/stas/guard-phantomjs-jasmine.git
revision: c0b225fe2c3f8b0154e5f2a4c4c45ccc542f77fe
specs:
guard-phantomjs-jasmine (0.0.1)
guard

GEM
remote: http://rubygems.org/
specs:
ffi (1.1.5)
guard (1.3.2)
listen (>= 0.4.2)
thor (>= 0.14.6)
listen (0.5.0)
rb-inotify (0.8.8)
ffi (>= 0.5.0)
thor (0.16.0)

PLATFORMS
ruby

DEPENDENCIES
guard-phantomjs-jasmine!
rb-inotify
7 changes: 7 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'phantomjs-jasmine', :runner => 'spec/runner.html' do
watch(%r{src/.+\.js})
watch(%r{^spec/.+_spec\.js})
end
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require 'guard/phantomjs-jasmine/task'

Guard::PhantomJsJasmineTask.new

task :default => 'phantomjs:jasmine:ci'

0 comments on commit a38b457

Please sign in to comment.