Sha256: f058507de155e156a42428ac81a57ae9f5b1313c6f0da8ed639560a20db76389

Contents?: true

Size: 661 Bytes

Versions: 35

Compression:

Stored size: 661 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    = 'Kithe'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

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

35 entries across 35 versions & 1 rubygems

Version Path
kithe-2.16.0 Rakefile
kithe-2.15.1 Rakefile
kithe-2.15.0 Rakefile
kithe-2.14.0 Rakefile
kithe-2.13.0 Rakefile
kithe-2.12.0 Rakefile
kithe-2.11.0 Rakefile
kithe-2.10.0 Rakefile
kithe-2.9.1 Rakefile
kithe-2.9.0 Rakefile
kithe-2.8.0 Rakefile
kithe-2.7.1 Rakefile
kithe-2.7.0 Rakefile
kithe-2.6.1 Rakefile
kithe-2.6.0 Rakefile
kithe-2.5.0 Rakefile
kithe-2.4.0 Rakefile
kithe-2.3.0 Rakefile
kithe-2.2.0 Rakefile
kithe-2.1.0 Rakefile