Sha256: 430aa078c18c0c28bddefd58b929fedb7c9aa639d948731d5ccc351e0cc879cc

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt",
                    "History.txt", "lib/**/*"].sort

file "Manifest.txt" => :manifest
task :manifest do
  File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
end
Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files

$LOAD_PATH << "lib"
require "jdbc/postgres"
begin
  require 'hoe'
  Hoe.new("jdbc-postgres", Jdbc::Postgres::VERSION) do |p|
    p.rubyforge_name = "jruby-extras"
    p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
    p.author = "Nick Sieger, Ola Bini and JRuby contributors"
    p.email = "nick@nicksieger.com, ola.bini@gmail.com"
    p.summary = "PostgreSQL JDBC driver for Java and PostgreSQL/ActiveRecord-JDBC."
    p.changes = "Updated to PostgreSQL version #{Jdbc::Postgres::VERSION}."
    p.description = "Install this gem and require 'postgres' within JRuby to load the driver."
  end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
rescue LoadError
  puts "You really need Hoe installed to be able to package this gem"
rescue => e
  puts "ignoring error while loading hoe: #{e.to_s}"
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
saturnflyer-activerecord-jdbc-adapter-0.9.3 drivers/postgres/Rakefile
jdbc-postgres-8.3.604 Rakefile