Sha256: 2d9d8f3dcd540d020de58a691e86363f5847d4014b0a679297ded0920b5f9002

Contents?: true

Size: 844 Bytes

Versions: 26

Compression:

Stored size: 844 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
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'TbCore'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require 'rake'

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

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
tb_core-1.3.10 Rakefile
tb_core-1.3.9 Rakefile
tb_core-1.3.7 Rakefile
tb_core-1.3.6 Rakefile
tb_core-1.3.5 Rakefile
tb_core-1.3.4 Rakefile
tb_core-1.3.3 Rakefile
tb_core-1.3.2 Rakefile
tb_core-1.3.1 Rakefile
tb_core-1.3.0 Rakefile
tb_core-1.3.0.beta2 Rakefile
tb_core-1.3.0.beta1 Rakefile
tb_core-1.2.8 Rakefile
tb_core-1.2.7 Rakefile
tb_core-1.2.6 Rakefile
tb_core-1.2.4 Rakefile
tb_core-1.2.3 Rakefile
tb_core-1.2.2 Rakefile
tb_core-1.2.1 Rakefile
tb_core-1.2.0 Rakefile