Sha256: 79bba25a5ea2483e46541c9550edd19fa4608ee540b48c344b40aa505938ef79
Contents?: true
Size: 722 Bytes
Versions: 16
Compression:
Stored size: 722 Bytes
Contents
require "rspec/core/rake_task" begin require 'bundler/setup' require "bundler/gem_tasks" rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rdoc/task' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Site Framework' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('lib/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' RSpec::Core::RakeTask.new Bundler::GemHelper.install_tasks Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'spec' t.pattern = 'spec/**/*_spec.rb' t.verbose = false end task default: :spec task :test => :spec
Version data entries
16 entries across 16 versions & 1 rubygems