snappy-jars 1.1.0-java → 1.1.0.1-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/.gitignore +1 -0
- data/README.md +13 -0
- data/lib/snappy-jars.rb +5 -0
- data/lib/snappy-java-1.1.0-M3.jar +0 -0
- data/snappy-jars.gemspec +16 -0
- metadata +7 -2
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/
|
data/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Snappy JARs
|
|
2
|
+
===========
|
|
3
|
+
|
|
4
|
+
This is the Snappy-Java JAR wrapped in a RubyGem. See the original at
|
|
5
|
+
https://github.com/xerial/snappy-java
|
|
6
|
+
|
|
7
|
+
Usage
|
|
8
|
+
-----
|
|
9
|
+
See Snappy-Java's documentation.
|
|
10
|
+
|
|
11
|
+
License
|
|
12
|
+
-------
|
|
13
|
+
Per the real implementation, Apache License v2.0.
|
data/lib/snappy-jars.rb
ADDED
|
Binary file
|
data/snappy-jars.gemspec
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |gem|
|
|
5
|
+
gem.name = "snappy-jars"
|
|
6
|
+
gem.version = "1.1.0.1"
|
|
7
|
+
gem.platform = "java"
|
|
8
|
+
gem.homepage = "https://github.com/doxavore/snappy-jars"
|
|
9
|
+
gem.authors = ["Doug Mayer"]
|
|
10
|
+
gem.email = ["doxavore@gmail.com"]
|
|
11
|
+
gem.summary = "Google Snappy compression JNI wrapper JARs."
|
|
12
|
+
gem.description = %q{Google Snappy compression JNI wrapper JARs.}
|
|
13
|
+
|
|
14
|
+
gem.files = `git ls-files`.split("\n")
|
|
15
|
+
gem.require_paths = ["lib"]
|
|
16
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: snappy-jars
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.0
|
|
4
|
+
version: 1.1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
@@ -17,7 +17,12 @@ email:
|
|
|
17
17
|
executables: []
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
|
-
files:
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- README.md
|
|
23
|
+
- lib/snappy-jars.rb
|
|
24
|
+
- lib/snappy-java-1.1.0-M3.jar
|
|
25
|
+
- snappy-jars.gemspec
|
|
21
26
|
homepage: https://github.com/doxavore/snappy-jars
|
|
22
27
|
licenses: []
|
|
23
28
|
post_install_message:
|