Sha256: 3ca2b234479e362325ee0f5f0c1501ec3c0bde61a776b75e4ea38733e0f563b4

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 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/sqlite3"
begin
  require 'hoe'
  Hoe.new("jdbc-sqlite3", Jdbc::SQLite3::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 = "SQLite3 JDBC driver for Java and SQLite3/ActiveRecord-JDBC."
    p.changes = "Updated to SQLite3 version #{Jdbc::SQLite3::VERSION}."
    p.description = "Install this gem and require 'sqlite3' 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

3 entries across 3 versions & 2 rubygems

Version Path
saturnflyer-activerecord-jdbc-adapter-0.9.3 drivers/sqlite3/Rakefile
jdbc-sqlite3-3.5.8 Rakefile
jdbc-sqlite3-3.6.3.054 Rakefile