Sha256: 45ab7c3322ba02114bad6b3e6b2454ee8dd131bb6e3bc6ca38f20691cba34655

Contents?: true

Size: 716 Bytes

Versions: 9

Compression:

Stored size: 716 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    = 'VerticaHistory'
  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

9 entries across 9 versions & 1 rubygems

Version Path
vertica_history-2.1.1 Rakefile
vertica_history-2.1.0 Rakefile
vertica_history-2.0.1 Rakefile
vertica_history-2.0.0 Rakefile
vertica_history-1.0.2 Rakefile
vertica_history-1.0.1 Rakefile
vertica_history-1.0.0 Rakefile
vertica_history-0.1.1 Rakefile
vertica_history-0.0.1 Rakefile