Files
jasmine/Rakefile
Gregg Van Hove and Rajan Agaskar 5017d1a4f1 Make rake jasmine:ci run specs correctly.
- Will replace rake core_specs.
- Remove obsolete dependencies & files -- most of these were for build tasks we
  are no longer using. Notably, rspec and spec_helper were deleted.
2013-09-25 10:11:02 -07:00

14 lines
324 B
Ruby

require "bundler"
Bundler::GemHelper.install_tasks
require "json"
require "jasmine"
load "jasmine/tasks/jasmine.rake"
# TODO: Is there better way to invoke this using Jasmine gem???
desc "Run jasmine core specs in a browser."
task :core_spec do
exec "ruby spec/jasmine_self_test_spec.rb"
end
task :default => :core_spec