Permalink
Please sign in to comment.
Showing
with
54 additions
and 17 deletions.
- +6 −0 gem/DEV_INSTRUCTIONS
- +2 −4 gem/History.txt
- +3 −1 gem/Manifest.txt
- +13 −8 gem/README.txt
- +22 −1 gem/Rakefile
- +5 −3 gem/lib/jruby-jars.rb
- +3 −0 gem/lib/jruby-jars/version.rb
@@ -0,0 +1,6 @@ | ||
+In order to build a new jruby-jars gem, here is the process: | ||
+ | ||
+* Run 'rake update' to update the version.rb file and generate the jar files | ||
+* Run 'rake gem' and other Hoe targets as normal | ||
+ | ||
+The 'update' task will update version.rb and create the jar files. You may commit the contents of the version.rb file, but it is not a requirement. However update should always be run before building the gem to ensure the latest code is pulled in. |
@@ -1,6 +1,4 @@ | ||
-=== 1.0.0 / 2008-08-17 | ||
+=== 1.3.1 / 2009-08-24 | ||
-* 1 major enhancement | ||
- | ||
- * Birthday! | ||
+* JRuby 1.3.1 version, and initial gem release | ||
@@ -1,5 +1,7 @@ | ||
History.txt | ||
Manifest.txt | ||
README.txt | ||
-Rakefile | ||
+lib/jruby-jars/version.rb | ||
lib/jruby-jars.rb | ||
+lib/jruby-core-1.3.1.jar | ||
+lib/jruby-stdlib-1.3.1.jar |
23
gem/Rakefile
@@ -1,11 +1,13 @@ | ||
+require File.join(File.expand_path(File.dirname(__FILE__)), 'jruby-jars/version.rb') | ||
+ | ||
module JRubyJars | ||
PATH = File.expand_path(File.dirname(__FILE__)) | ||
- def self.jruby_jar_path | ||
- PATH + "/jruby-#{JRUBY_VERSION}.jar" | ||
+ def self.core_jar_path | ||
+ PATH + "/jruby-core-#{VERSION}.jar" | ||
end | ||
def self.stdlib_jar_path | ||
- PATH + "/jruby-stdlib-#{JRUBY_VERSION}.jar" | ||
+ PATH + "/jruby-stdlib-#{VERSION}.jar" | ||
end | ||
end |
@@ -0,0 +1,3 @@ | ||
+module JRubyJars | ||
+ VERSION = '1.3.1' | ||
+end |
0 comments on commit
9b8dd53