Sha256: 9e80830a80ee72f481613df86e3c43ec0b161c51ed39f97f1d4620bfb85c0be4

Contents?: true

Size: 677 Bytes

Versions: 9

Compression:

Stored size: 677 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require 'bundler/gem_tasks'
require 'rubygems'
require 'rspec/core/rake_task'
require 'rdoc/task'

task :default => :spec

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

RSpec::Core::RakeTask.new(:spec)

RDoc::Task.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "activerecord-postgres-hstore #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
activerecord-postgres-earthdistance-0.4.4 Rakefile
activerecord-postgres-earthdistance-0.4.3 Rakefile
activerecord-postgres-earthdistance-0.4.2 Rakefile
activerecord-postgres-earthdistance-0.4.1 Rakefile
activerecord-postgres-earthdistance-0.4.0 Rakefile
activerecord-postgres-earthdistance-0.3.2 Rakefile
activerecord-postgres-earthdistance-0.3.1 Rakefile
activerecord-postgres-earthdistance-0.3.0 Rakefile
activerecord-postgres-earthdistance-0.2.0 Rakefile