2015-05-06 15:31:24 -04:00
|
|
|
# Since we no longer explicitly require the 'jasmine' gem, we lost the
|
|
|
|
# `jasmine:ci` task used by GitLab CI jobs.
|
|
|
|
#
|
|
|
|
# This provides a simple alias to run the `spec:javascript` task from the
|
|
|
|
# 'jasmine-rails' gem.
|
|
|
|
task jasmine: ['jasmine:ci']
|
|
|
|
|
|
|
|
namespace :jasmine do
|
|
|
|
task :ci do
|
2015-05-06 17:04:09 -04:00
|
|
|
Rake::Task['teaspoon'].invoke
|
2015-05-06 15:31:24 -04:00
|
|
|
end
|
|
|
|
end
|