Sha256: 7a4e373a8324cea5663f9f5975214c0c18a74c862babb5190cd891ffe408e9da

Contents?: true

Size: 1.17 KB

Versions: 20

Compression:

Stored size: 1.17 KB

Contents

require 'rubygems'
require 'bundler'
require 'bundler/gem_tasks'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

require 'rake'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

RSpec::Core::RakeTask.new(:rcov) do |t|
  t.rcov = true
  t.rcov_opts =  ['--exclude', '/Library,spec/']
end

desc "Clear test database"
task :clear do
  require "./spec/spec_helper"
  ActiveRecord::Base.establish_connection(CONNECTION_PARAMS)
  require "active_support/core_ext"
  ActiveRecord::Base.connection.execute_structure_dump(ActiveRecord::Base.connection.full_drop)
  ActiveRecord::Base.connection.execute("PURGE RECYCLEBIN") rescue nil
end

# Clear test database before running spec and rcov
task :spec => :clear
task :rcov => :clear

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'doc'
  rdoc.title = "activerecord-oracle_enhanced-adapter #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
activerecord-oracle_enhanced-adapter-1.7.11 Rakefile
activerecord-oracle_enhanced-adapter-1.7.10 Rakefile
activerecord-oracle_enhanced-adapter-1.7.9 Rakefile
activerecord-oracle_enhanced-adapter-1.7.8 Rakefile
activerecord-oracle_enhanced-adapter-1.7.7 Rakefile
activerecord-oracle_enhanced-adapter-1.7.6 Rakefile
activerecord-oracle_enhanced-adapter-1.7.5 Rakefile
activerecord-oracle_enhanced-adapter-1.7.4 Rakefile
activerecord-oracle_enhanced-adapter-1.7.3 Rakefile
activerecord-oracle_enhanced-adapter-1.7.2 Rakefile
activerecord-oracle_enhanced-adapter-1.7.1 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.rc1 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta7 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta6 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta5 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta4 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta3 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta2 Rakefile
activerecord-oracle_enhanced-adapter-1.7.0.beta1 Rakefile