Sha256: 41f841ae8f03ea033d8cf4c42aaee135cece5c622553ae59268e4cac4e98448c

Contents?: true

Size: 528 Bytes

Versions: 2

Compression:

Stored size: 528 Bytes

Contents

#!/usr/bin/env rake
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

2 entries across 2 versions & 1 rubygems

Version Path
backbone_extensions-0.0.26 Rakefile
backbone_extensions-0.0.25 Rakefile