Sha256: 9620c77a26935bf15f3ae33428cb999f213f2693460831497574192e8d436432

Contents?: true

Size: 806 Bytes

Versions: 93

Compression:

Stored size: 806 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Myreplicator'
  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'



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

93 entries across 93 versions & 1 rubygems

Version Path
myreplicator-1.1.73 Rakefile
myreplicator-1.1.71 Rakefile
myreplicator-1.1.69 Rakefile
myreplicator-1.1.68 Rakefile
myreplicator-1.1.67 Rakefile
myreplicator-1.1.66 Rakefile
myreplicator-1.1.65 Rakefile
myreplicator-1.1.64 Rakefile
myreplicator-1.1.63 Rakefile
myreplicator-1.1.62 Rakefile
myreplicator-1.1.61 Rakefile
myreplicator-1.1.58 Rakefile
myreplicator-1.1.57 Rakefile
myreplicator-1.1.56 Rakefile
myreplicator-1.1.55 Rakefile
myreplicator-1.1.54 Rakefile
myreplicator-1.1.53 Rakefile
myreplicator-1.1.52 Rakefile
myreplicator-1.1.51 Rakefile
myreplicator-1.1.50 Rakefile