Sha256: 8950a970670e376f35a92413affa123ebbf2253f991c3bc323b3a7947d03ef08

Contents?: true

Size: 759 Bytes

Versions: 17

Compression:

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

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

Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = 'spec/**/*_spec.rb'
end

task :default => :spec

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
postgres_ext-2.1.3 Rakefile
postgres_ext-2.1.2 Rakefile
postgres_ext-2.1.1 Rakefile
postgres_ext-2.1.0 Rakefile
postgres_ext-2.0.0 Rakefile
postgres_ext-1.0.0 Rakefile
postgres_ext-0.4.0 Rakefile
postgres_ext-0.3.1 Rakefile
postgres_ext-0.3.0 Rakefile
postgres_ext-0.2.2 Rakefile
postgres_ext-0.2.1 Rakefile
postgres_ext-0.2.0 Rakefile
postgres_ext-0.1.0 Rakefile
postgres_ext-0.0.10 Rakefile
postgres_ext-0.0.9 Rakefile
postgres_ext-0.0.8 Rakefile
postgres_ext-0.0.7 Rakefile