Sha256: a45f5653982bef19b6e533c22d4f48454615a5dde6bae4e80a0ad8a595fd1371

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 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

require File.dirname(__FILE__) + "/../../lib/arjdbc/version"
$LOAD_PATH << File.dirname(__FILE__) + "/../../drivers/mysql/lib"
require "jdbc/mysql"

begin
  require 'hoe'
  Hoe.plugin :gemcutter
  hoe = Hoe.spec("activerecord-jdbcmysql-adapter") do |p|
    p.version = ArJdbc::Version::VERSION
    p.spec_extras[:platform] = Gem::Platform.new("java")
    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 = "MySQL JDBC adapter for JRuby on Rails."
    p.changes = "Updated to MySQL version #{Jdbc::MySQL::VERSION}."
    p.description = "Install this gem to use MySQL with JRuby on Rails."
    p.extra_deps += [
      ['activerecord-jdbc-adapter', "= #{ArJdbc::Version::VERSION}"],
      ['jdbc-mysql', ">= #{Jdbc::MySQL::VERSION}"]]
  end
  task :gemspec do
    File.open("#{hoe.name}.gemspec", "w") {|f| f << hoe.spec.to_ruby }
  end
  task :package => :gemspec
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

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-jdbcmysql-adapter-1.0.1-java Rakefile
activerecord-jdbcmysql-adapter-1.0.0-java Rakefile
activerecord-jdbcmysql-adapter-1.0.0.beta2-java Rakefile
activerecord-jdbcmysql-adapter-1.0.0.beta1-java Rakefile