Sha256: fd23c4a5ed6a51312a49f0aefa43e7ea25768b843ce3ebc163f41d26d3f8deb1

Contents?: true

Size: 566 Bytes

Versions: 1

Compression:

Stored size: 566 Bytes

Contents

#!/usr/bin/env rake
ENV['JASMINE_SPEC_FORMAT'] = 'Fuubar'
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'yajl/json_gem'
Bundler::GemHelper.install_tasks

require 'jshint/tasks'

begin
  require 'jasmine'
  load 'jasmine/tasks/jasmine.rake'
rescue LoadError
  task :jasmine do
    abort 'Jasmine is not available. In order to run jasmine, you must: (sudo) gem install jasmine'
  end
end

JSHint.config_path = 'config/jshint.yml'
task :default => [:jshint, :'jasmine:ci']

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
backbone_extensions-0.0.24 Rakefile