Sha256: f0ffca1a6cae61efc696688a2ce36e7d346750e8eda0643ebb1348924024ad56
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
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 'bundler/gem_tasks' require 'rdoc/task' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'BackboneRails' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README.md') rdoc.rdoc_files.include('lib/**/*.rb') end require 'rake/testtask' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = false end task :default => :test namespace :thorax do desc "Download the latest releases of backbone, underscore, handlebars, and thorax" task :download_latest do files = { 'underscore.js' => 'http://underscorejs.org/underscore.js', 'backbone.js' => 'http://backbonejs.org/backbone.js', 'handlebars.js' => 'https://raw.github.com/wycats/handlebars.js/master/lib/handlebars.js', 'thorax.js' => 'https://github.com/components/thorax/blob/master/thorax.js' } vendor_dir = "vendor/assets/javascripts/thorax" require 'open-uri' files.each do |local, remote| puts "Downloading #{local} from #{remote}" File.open "#{vendor_dir}/#{local}", 'w' do |f| f.write open(remote).read end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
thorax-rails-0.0.0 | Rakefile |
thorax-0.0.0 | Rakefile |