guava-rb 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ .DS_Store
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm --create use jruby-1.6.2@guava-rb
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source :rubygems
2
+
3
+ gemspec
4
+
@@ -0,0 +1,14 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ guava-rb (09)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+
10
+ PLATFORMS
11
+ java
12
+
13
+ DEPENDENCIES
14
+ guava-rb!
data/README ADDED
File without changes
@@ -0,0 +1,26 @@
1
+ # encoding: utf-8
2
+
3
+ $: << File.expand_path('../lib', __FILE__)
4
+
5
+ require 'guava/version'
6
+
7
+ Dir['ext/*.jar'].each { |jar| require jar }
8
+
9
+
10
+ Gem::Specification.new do |s|
11
+ s.name = 'guava-rb'
12
+ s.version = Guava::VERSION
13
+ s.platform = Gem::Platform::RUBY
14
+ s.authors = ['Daniel Gaiottino']
15
+ s.email = ['daniel@burtcorp.com']
16
+ s.homepage = 'http://github.com/gaiottino/guava-rb'
17
+ s.summary = %q{Google Guava Wrapper}
18
+ s.description = %q{A simple JRuby wrapper for Google Guava}
19
+
20
+ s.rubyforge_project = 'guava-rb'
21
+
22
+ s.files = `git ls-files`.split("\n")
23
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
24
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
25
+ s.require_paths = %w(lib)
26
+ end
Binary file
@@ -0,0 +1,5 @@
1
+ # encoding: utf-8
2
+
3
+ require 'java'
4
+
5
+ require 'ext/guava-r09'
@@ -0,0 +1,5 @@
1
+ # encoding: utf-8
2
+
3
+ module Guava
4
+ VERSION = '1.0.9'
5
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guava-rb
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 9
9
+ version: 1.0.9
10
+ platform: ruby
11
+ authors:
12
+ - Daniel Gaiottino
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-06-09 00:00:00 +02:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: A simple JRuby wrapper for Google Guava
22
+ email:
23
+ - daniel@burtcorp.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - .gitignore
32
+ - .rvmrc
33
+ - Gemfile
34
+ - Gemfile.lock
35
+ - README
36
+ - guava.gemspec
37
+ - lib/ext/guava-r09.jar
38
+ - lib/guava.rb
39
+ - lib/guava/version.rb
40
+ has_rdoc: true
41
+ homepage: http://github.com/gaiottino/guava-rb
42
+ licenses: []
43
+
44
+ post_install_message:
45
+ rdoc_options: []
46
+
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ segments:
63
+ - 0
64
+ version: "0"
65
+ requirements: []
66
+
67
+ rubyforge_project: guava-rb
68
+ rubygems_version: 1.3.7
69
+ signing_key:
70
+ specification_version: 3
71
+ summary: Google Guava Wrapper
72
+ test_files: []
73
+