Sha256: 77a7dab7f82cad9a335609b023282af542855d749e60dac4b6374ddc4f22bbb6

Contents?: true

Size: 504 Bytes

Versions: 21

Compression:

Stored size: 504 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

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

21 entries across 21 versions & 1 rubygems

Version Path
backbone_extensions-0.0.23 Rakefile
backbone_extensions-0.0.22 Rakefile
backbone_extensions-0.0.21 Rakefile
backbone_extensions-0.0.20 Rakefile
backbone_extensions-0.0.19 Rakefile
backbone_extensions-0.0.18 Rakefile
backbone_extensions-0.0.17 Rakefile
backbone_extensions-0.0.16 Rakefile
backbone_extensions-0.0.15 Rakefile
backbone_extensions-0.0.14 Rakefile
backbone_extensions-0.0.13 Rakefile
backbone_extensions-0.0.12 Rakefile
backbone_extensions-0.0.11 Rakefile
backbone_extensions-0.0.10 Rakefile
backbone_extensions-0.0.9 Rakefile
backbone_extensions-0.0.8 Rakefile
backbone_extensions-0.0.7 Rakefile
backbone_extensions-0.0.6 Rakefile
backbone_extensions-0.0.5 Rakefile
backbone_extensions-0.0.3 Rakefile