Sha256: f70f065122cb1d897d8cdb27d0a44b99dfcf36e34c28ee0bb6c8641df1f15a61

Contents?: true

Size: 705 Bytes

Versions: 28

Compression:

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

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


load 'rails/tasks/statistics.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
bot-0.0.46 Rakefile
bot-0.0.45 Rakefile
bot-0.0.44 Rakefile
bot-0.0.43 Rakefile
bot-0.0.42 Rakefile
bot-0.0.41 Rakefile
bot-0.0.40 Rakefile
bot-0.0.39 Rakefile
bot-0.0.38 Rakefile
bot-0.0.37 Rakefile
bot-0.0.35 Rakefile
bot-0.0.34 Rakefile
bot-0.0.33 Rakefile
bot-0.0.32 Rakefile
bot-0.0.31 Rakefile
bot-0.0.30 Rakefile
bot-0.0.29 Rakefile
bot-0.0.28 Rakefile
bot-0.0.27 Rakefile
bot-0.0.26 Rakefile