Sha256: 5c4d9bb51859697e843676eb5b5515a33cb69c1912e00c0beaa1cfd473a9ff44
Contents?: true
Size: 725 Bytes
Versions: 4
Compression:
Stored size: 725 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rdoc/task' require 'appraisal' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'ChinaCity' 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 'rspec/core' require 'rspec/core/rake_task' desc "Run all specs in spec directory (excluding plugin specs)" RSpec::Core::RakeTask.new(:spec) task :default => :spec load 'lib/china_city_tasks.rake'
Version data entries
4 entries across 4 versions & 4 rubygems
Version | Path |
---|---|
soaring_china_city-0.0.6 | Rakefile |
clwy_china_city-0.0.6 | Rakefile |
china_city_custom-0.0.7 | Rakefile |
china_city-0.0.6 | Rakefile |