Sha256: 81e8c87db491b13133b25cde7a7015ae02bf1841bcd4d554194f7fab178cefab

Contents?: true

Size: 507 Bytes

Versions: 3

Compression:

Stored size: 507 Bytes

Contents

require 'rake'
require 'rdoc/task'

desc 'Test the postgres_arrays plugin.'
task :test do
  Dir.chdir(File.dirname(__FILE__)) do
    Process.wait2 spawn('rspec spec')
  end
end

task :default do
  # nothing
end

desc 'Generate documentation for the postgres_arrays plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'PostgresArrays'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ar_pg_array-0.10.2 Rakefile
ar_pg_array-0.11.2 Rakefile
ar_pg_array-0.11.1 Rakefile