Sha256: 34594f763dadcae46e5033453e46c3620691571699cf5961b2527d252f7f95a2

Contents?: true

Size: 681 Bytes

Versions: 7

Compression:

Stored size: 681 Bytes

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.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

7 entries across 7 versions & 1 rubygems

Version Path
activerecord-postgres-earthdistance-0.7.2 Rakefile
activerecord-postgres-earthdistance-0.7.1 Rakefile
activerecord-postgres-earthdistance-0.7.0 Rakefile
activerecord-postgres-earthdistance-0.6.0 Rakefile
activerecord-postgres-earthdistance-0.5.2 Rakefile
activerecord-postgres-earthdistance-0.5.1 Rakefile
activerecord-postgres-earthdistance-0.5.0 Rakefile