Sha256: 9b2471ea6d56cd32e1cac4cef3863c8f79822d099e3e4f2702c5dd9976c8039b
Contents?: true
Size: 477 Bytes
Versions: 3
Compression:
Stored size: 477 Bytes
Contents
# Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. Dir['lib/tasks/*.rake'].each { |rake| load rake } require "rubygems" require "bundler/setup" require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :test => :spec task :default => :spec namespace :spec do task :coverage do ENV['INVOKE_SIMPLECOV'] = 'true' Rake::Task[:spec].invoke end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
obitum-rails_admin-0.0.5 | Rakefile |
drewda_rails_admin-0.0.1 | Rakefile |
obitum-rails_admin-0.0.4 | Rakefile |