Sha256: ec9ac135050b5ea9a5664c3035154117330f0f5aa7549c825fe3ae010c4fc77c
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*"] 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jdbc-postgres-8.2 | Rakefile |