1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00
teampoltergeist--poltergeist/Rakefile

12 lines
285 B
Ruby

require 'rspec/core/rake_task'
task :autocompile do
system "coffee --compile --bare --watch " \
"--output lib/capybara/poltergeist/client/compiled " \
"lib/capybara/poltergeist/client/*.coffee"
end
RSpec::Core::RakeTask.new('test') do
end
task :default => :test