Sha256: 7656d72025d887ec806b93a3f70ca890f955e2959ab42f29141a8c15f42ec907

Contents?: true

Size: 1007 Bytes

Versions: 14

Compression:

Stored size: 1007 Bytes

Contents

def java_classpath_arg # myriad of ways to discover JRuby classpath
  begin
    cpath  = Java::java.lang.System.getProperty('java.class.path').split(File::PATH_SEPARATOR)
    cpath += Java::java.lang.System.getProperty('sun.boot.class.path').split(File::PATH_SEPARATOR)
    jruby_cpath = cpath.compact.join(File::PATH_SEPARATOR)
  rescue => e
  end
  unless jruby_cpath
    jruby_cpath = ENV['JRUBY_PARENT_CLASSPATH'] || ENV['JRUBY_HOME'] &&
      FileList["#{ENV['JRUBY_HOME']}/lib/*.jar"].join(File::PATH_SEPARATOR)
  end
  jruby_cpath ? "-cp \"#{jruby_cpath}\"" : ""
end

desc "Compile the native Java code."
task :java_compile do
  pkg_classes = File.join(*%w(pkg classes))
  jar_name = File.join(*%w(lib jdbc_adapter jdbc_adapter_internal.jar))
  mkdir_p pkg_classes
  sh "javac -target 1.5 -source 1.5 -d pkg/classes #{java_classpath_arg} #{FileList['src/java/**/*.java'].join(' ')}"
  sh "jar cf #{jar_name} -C #{pkg_classes} ."
end
file "lib/jdbc_adapter/jdbc_adapter_internal.jar" => :java_compile

Version data entries

14 entries across 14 versions & 4 rubygems

Version Path
saturnflyer-activerecord-jdbc-adapter-0.9.3 rakelib/compile.rake
kb-activerecord-jdbc-adapter-0.9.7.1-java rakelib/compile.rake
activerecord-jdbc-adapter-0.9.7-java rakelib/compile.rake
activerecord-jdbc-adapter-0.9.6-java rakelib/compile.rake
activerecord-jdbc-adapter-0.9.5-java rakelib/compile.rake
activerecord-jdbc-adapter-0.9.4-java rakelib/compile.rake
activerecord-jdbc-adapter-0.9.3-java rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.6 rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.5 rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.4 rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.3 rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.2 rakelib/compile.rake
jpzwarte-activerecord-jdbc-adapter-0.9.2.1 rakelib/compile.rake
activerecord-jdbc-adapter-0.9.2 rakelib/compile.rake