javagems 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/bin/javagem CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'pathname'
3
- cp = Pathname(__FILE__).parent.parent + "jar/javagems.jar"
4
- exec("java", "-cp", cp.expand_path.to_s, "org.jruby.Main" , "-e", "require 'org/javagems/javagems'", *ARGV)
3
+ jar = Pathname(__FILE__).parent.parent + "jar/javagems.jar"
4
+ exec("java", "-jar", jar.expand_path.to_s, *ARGV)
data/jar/javagems.jar CHANGED
Binary file
data/javagems.gemspec ADDED
@@ -0,0 +1,51 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{javagems}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["ggironda", "jaknowlden"]
12
+ s.date = %q{2009-11-11}
13
+ s.description = %q{Provides gem-esque support to Java}
14
+ s.email = %q{gabriel.gironda@gmail.com}
15
+ s.executables = ["javagem", "javagem"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ ".gitignore",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "LICENSE",
26
+ "README.rdoc",
27
+ "Rakefile",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "bin/javagem",
31
+ "jar/.gitignore",
32
+ "jar/javagems.jar",
33
+ "lib/javagems.rb"
34
+ ]
35
+ s.homepage = %q{http://www.javagems.org/}
36
+ s.rdoc_options = ["--charset=UTF-8"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.3.5}
39
+ s.summary = %q{A gem for the javagems system}
40
+
41
+ if s.respond_to? :specification_version then
42
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
+ else
47
+ end
48
+ else
49
+ end
50
+ end
51
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: javagems
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ggironda
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-11-11 00:00:00 -06:00
13
+ date: 2009-11-12 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -34,6 +34,7 @@ files:
34
34
  - bin/javagem
35
35
  - jar/.gitignore
36
36
  - jar/javagems.jar
37
+ - javagems.gemspec
37
38
  - lib/javagems.rb
38
39
  has_rdoc: true
39
40
  homepage: http://www.javagems.org/