Sha256: fad054916e11073f621a3d2f5a8830f033334f21a3d9c282fdfa82840c6e2d97
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 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/h2" begin require 'hoe' Hoe.plugin :gemcutter Hoe.plugin :rubyforge Hoe.spec("jdbc-h2") do |p| version = Jdbc::H2::VERSION version += '.' + ENV['DRIVER_REV'] if ENV['DRIVER_REV'] p.version = version 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 = "H2 JDBC driver for Java and H2/ActiveRecord-JDBC." p.changes = "Updated to H2 version #{Jdbc::H2::VERSION}." p.description = "Install this gem and require 'h2' 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-h2-1.3.154 | Rakefile |