Sha256: afabc1bc1658603713fc67664387559afdcb38b626f9db034337cbdf96c7dbb7
Contents?: true
Size: 696 Bytes
Versions: 13
Compression:
Stored size: 696 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' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Kms' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/internal/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 => 'app:db:test:prepare') task default: :spec
Version data entries
13 entries across 13 versions & 1 rubygems