Skip to content

Commit

Permalink
Tweak jruby-openssl Rakefile and version for 0.8.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Dec 11, 2012
1 parent fb52d06 commit 91202e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gems/jruby-openssl/Rakefile
@@ -1,7 +1,7 @@
require 'rake' require 'rake'
require 'rake/testtask' require 'rake/testtask'


MANIFEST = FileList["Rakefile", "History.txt", "Manifest.txt", "README.txt", "License.txt", "../../lib/ruby/shared/jopenssl.jar", "lib/**/*", "test/**/*"] MANIFEST = FileList["Rakefile", "History.txt", "Manifest.txt", "README.txt", "License.txt", "lib/shared/jopenssl.jar", "lib/**/*", "test/**/*"]
BC_JARS = FileList["../../build_lib/bc*.jar"] BC_JARS = FileList["../../build_lib/bc*.jar"]


task :default => [:java_compile, :test] task :default => [:java_compile, :test]
Expand Down Expand Up @@ -40,10 +40,10 @@ task :java_compile do
sh "javac @pkg/compile_options @pkg/compile_classpath @pkg/compile_sourcefiles" sh "javac @pkg/compile_options @pkg/compile_classpath @pkg/compile_sourcefiles"
sh "jar cf ../../lib/ruby/shared/jopenssl.jar -C pkg/classes/ ." sh "jar cf ../../lib/ruby/shared/jopenssl.jar -C pkg/classes/ ."
end end
file "../../lib/ruby/shared/jopenssl.jar" => :java_compile file "lib/shared/jopenssl.jar" => :java_compile


task :more_clean do task :more_clean do
rm_f FileList['../../lib/ruby/shared/jopenssl.jar'] rm_f FileList['lib/shared/jopenssl.jar']
end end
task :clean => :more_clean task :clean => :more_clean


Expand Down
2 changes: 1 addition & 1 deletion lib/ruby/shared/jopenssl/version.rb
@@ -1,5 +1,5 @@
module Jopenssl module Jopenssl
module Version module Version
VERSION = "0.8.2.dev" VERSION = "0.8.2"
end end
end end

0 comments on commit 91202e4

Please sign in to comment.