snappy-jars 1.1.0-java → 1.1.0.1-java

Sign up to get free protection for your applications and to get access to all the features.
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.
@@ -0,0 +1,5 @@
1
+ require "java"
2
+
3
+ Dir["#{File.expand_path('..', __FILE__)}/snappy-*.jar"].each { |jar| require(jar) }
4
+
5
+ java_import org.xerial.snappy.Snappy
Binary file
@@ -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: