rjack-guava 13.0.1.0-java
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.
- data/History.rdoc +2 -0
- data/Manifest.txt +11 -0
- data/NOTICE.txt +7 -0
- data/README.rdoc +43 -0
- data/Rakefile +12 -0
- data/assembly.xml +15 -0
- data/lib/rjack-guava.rb +25 -0
- data/lib/rjack-guava/base.rb +28 -0
- data/lib/rjack-guava/guava-13.0.1.jar +0 -0
- data/pom.xml +47 -0
- data/test/test_guava.rb +34 -0
- metadata +99 -0
data/History.rdoc
ADDED
data/Manifest.txt
ADDED
data/NOTICE.txt
ADDED
data/README.rdoc
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
= rjack-guava
|
2
|
+
|
3
|
+
* http://rjack.rubyforge.org/guava
|
4
|
+
* http://rjack.rubyforge.org
|
5
|
+
* https://github.com/dekellum/rjack
|
6
|
+
|
7
|
+
== Description
|
8
|
+
|
9
|
+
A gem packaging of {Guava}[http://code.google.com/p/guava-libraries/].
|
10
|
+
|
11
|
+
== License
|
12
|
+
|
13
|
+
=== rjack-guava gem
|
14
|
+
|
15
|
+
Copyright (c) 2013 David Kellum
|
16
|
+
|
17
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you
|
18
|
+
may not use this file except in compliance with the License. You
|
19
|
+
may obtain a copy of the License at:
|
20
|
+
|
21
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
22
|
+
|
23
|
+
Unless required by applicable law or agreed to in writing, software
|
24
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
25
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
26
|
+
implied. See the License for the specific language governing
|
27
|
+
permissions and limitations under the License.
|
28
|
+
|
29
|
+
=== Guava (java)
|
30
|
+
|
31
|
+
Copyright (c) 2012 The Guava Authors
|
32
|
+
|
33
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you
|
34
|
+
may not use this file except in compliance with the License. You
|
35
|
+
may obtain a copy of the License at:
|
36
|
+
|
37
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
38
|
+
|
39
|
+
Unless required by applicable law or agreed to in writing, software
|
40
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
41
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
42
|
+
implied. See the License for the specific language governing
|
43
|
+
permissions and limitations under the License.
|
data/Rakefile
ADDED
data/assembly.xml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
<assembly>
|
2
|
+
<id>bin</id>
|
3
|
+
<formats>
|
4
|
+
<format>dir</format>
|
5
|
+
</formats>
|
6
|
+
<includeBaseDirectory>false</includeBaseDirectory>
|
7
|
+
<dependencySets>
|
8
|
+
<dependencySet>
|
9
|
+
<useProjectArtifact>false</useProjectArtifact>
|
10
|
+
<includes>
|
11
|
+
<include>com.google.guava:guava</include>
|
12
|
+
</includes>
|
13
|
+
</dependencySet>
|
14
|
+
</dependencySets>
|
15
|
+
</assembly>
|
data/lib/rjack-guava.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2013 David Kellum
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
5
|
+
# may not use this file except in compliance with the License. You
|
6
|
+
# may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13
|
+
# implied. See the License for the specific language governing
|
14
|
+
# permissions and limitations under the License.
|
15
|
+
#++
|
16
|
+
|
17
|
+
require 'rjack-guava/base'
|
18
|
+
|
19
|
+
# Guava module
|
20
|
+
#
|
21
|
+
module RJack
|
22
|
+
module Guava
|
23
|
+
require "#{LIB_DIR}/guava-#{GUAVA_VERSION}.jar"
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2013 David Kellum
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
5
|
+
# may not use this file except in compliance with the License. You
|
6
|
+
# may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13
|
+
# implied. See the License for the specific language governing
|
14
|
+
# permissions and limitations under the License.
|
15
|
+
#++
|
16
|
+
|
17
|
+
module RJack
|
18
|
+
module Guava
|
19
|
+
|
20
|
+
# Guava (java) version
|
21
|
+
GUAVA_VERSION = '13.0.1'
|
22
|
+
|
23
|
+
# rjack gem version
|
24
|
+
VERSION = GUAVA_VERSION + '.0'
|
25
|
+
|
26
|
+
LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
|
27
|
+
end
|
28
|
+
end
|
Binary file
|
data/pom.xml
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2
|
+
|
3
|
+
<modelVersion>4.0.0</modelVersion>
|
4
|
+
<groupId>rjack</groupId>
|
5
|
+
<artifactId>rjack-guava</artifactId>
|
6
|
+
<packaging>pom</packaging>
|
7
|
+
<version>1.0</version>
|
8
|
+
<name>Guava for Gem</name>
|
9
|
+
|
10
|
+
<properties>
|
11
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12
|
+
</properties>
|
13
|
+
|
14
|
+
<dependencies>
|
15
|
+
<dependency>
|
16
|
+
<groupId>com.google.guava</groupId>
|
17
|
+
<artifactId>guava</artifactId>
|
18
|
+
<version>13.0.1</version>
|
19
|
+
</dependency>
|
20
|
+
</dependencies>
|
21
|
+
|
22
|
+
<build>
|
23
|
+
<plugins>
|
24
|
+
<plugin>
|
25
|
+
<artifactId>maven-assembly-plugin</artifactId>
|
26
|
+
<version>2.2.1</version>
|
27
|
+
<configuration>
|
28
|
+
<attach>false</attach>
|
29
|
+
<ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
|
30
|
+
<descriptors>
|
31
|
+
<descriptor>assembly.xml</descriptor>
|
32
|
+
</descriptors>
|
33
|
+
</configuration>
|
34
|
+
<executions>
|
35
|
+
<execution>
|
36
|
+
<id>assembly</id>
|
37
|
+
<phase>package</phase>
|
38
|
+
<goals>
|
39
|
+
<goal>single</goal>
|
40
|
+
</goals>
|
41
|
+
</execution>
|
42
|
+
</executions>
|
43
|
+
</plugin>
|
44
|
+
</plugins>
|
45
|
+
</build>
|
46
|
+
|
47
|
+
</project>
|
data/test/test_guava.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
#!/usr/bin/env jruby
|
2
|
+
#.hashdot.profile += jruby-shortlived
|
3
|
+
|
4
|
+
#--
|
5
|
+
# Copyright (c) 2013 David Kellum
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
8
|
+
# may not use this file except in compliance with the License. You
|
9
|
+
# may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
16
|
+
# implied. See the License for the specific language governing
|
17
|
+
# permissions and limitations under the License.
|
18
|
+
#++
|
19
|
+
|
20
|
+
require 'rubygems'
|
21
|
+
require 'bundler/setup'
|
22
|
+
|
23
|
+
require 'minitest/unit'
|
24
|
+
require 'minitest/autorun'
|
25
|
+
|
26
|
+
require 'rjack-guava'
|
27
|
+
|
28
|
+
class TestGuava < MiniTest::Unit::TestCase
|
29
|
+
|
30
|
+
def test_load
|
31
|
+
pass #FIXME
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rjack-guava
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 13.0.1.0
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- David Kellum
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-01-03 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: minitest
|
16
|
+
version_requirements: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '2.2'
|
21
|
+
none: false
|
22
|
+
requirement: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.2'
|
27
|
+
none: false
|
28
|
+
prerelease: false
|
29
|
+
type: :development
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rjack-tarpit
|
32
|
+
version_requirements: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ~>
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '2.0'
|
37
|
+
none: false
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ~>
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.0'
|
43
|
+
none: false
|
44
|
+
prerelease: false
|
45
|
+
type: :development
|
46
|
+
description:
|
47
|
+
email:
|
48
|
+
- dek-oss@gravitext.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files:
|
52
|
+
- History.rdoc
|
53
|
+
- README.rdoc
|
54
|
+
files:
|
55
|
+
- History.rdoc
|
56
|
+
- Manifest.txt
|
57
|
+
- NOTICE.txt
|
58
|
+
- README.rdoc
|
59
|
+
- Rakefile
|
60
|
+
- assembly.xml
|
61
|
+
- pom.xml
|
62
|
+
- lib/rjack-guava/base.rb
|
63
|
+
- lib/rjack-guava.rb
|
64
|
+
- test/test_guava.rb
|
65
|
+
- lib/rjack-guava/guava-13.0.1.jar
|
66
|
+
homepage: http://rjack.rubyforge.org/guava
|
67
|
+
licenses: []
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options:
|
70
|
+
- --main
|
71
|
+
- README.rdoc
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ! '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
segments:
|
80
|
+
- 0
|
81
|
+
hash: 2
|
82
|
+
none: false
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ! '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
segments:
|
89
|
+
- 0
|
90
|
+
hash: 2
|
91
|
+
none: false
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 1.8.24
|
95
|
+
signing_key:
|
96
|
+
specification_version: 3
|
97
|
+
summary: A gem packaging of Guava.
|
98
|
+
test_files: []
|
99
|
+
...
|