murmurhash3 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: dc1eb26dcf133d8d15e55951ce0f818dbc9ee2b0
4
- data.tar.gz: f3281c6c42e173c307f3ddbbf4618af4c3e36e41
2
+ SHA256:
3
+ metadata.gz: 03bdf8c3195285182ef8e3c6106764fdebdbac4d1615b0a8684c2a4433d1f3d7
4
+ data.tar.gz: 670bf1fb798cff08c3a96e9e95aa668cdbbaf4bff32de5a43cdea15ad2253e2f
5
5
  SHA512:
6
- metadata.gz: 3e85d8b4ea683f0b50216ef68256fa8d3377fdda8559f91c56fe6684edf83f8b02be1fdc2fb1d63c1202fda0460d3967ef4ff7f61b58d463e96139f10d3d4ff4
7
- data.tar.gz: bedd27dc2dd6e57d9078213d74285e7d0bc76d5b5d876fc44c555f5c50ff947386b4844f6938dc878b0bd5645808839dd146484a55fd57a472c3512648a6b388
6
+ metadata.gz: 8f4823a22bef08e9341f393ab19fa4494f34566f0df0d285d8b6b4a5d984c8a004140952f8044e1a714df415be7720f392e827ca07bdc9351d5a99e84861eecf
7
+ data.tar.gz: 5969b9d64ad4c294d38ea856b60b1dfa70782d50e3d6c43aadc9b22e515b70a25bb0f2e2caac2a9efc207921d7e8b3cb9df169a0bccd0cf0300e6dc1632f394e
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Sokolov Yura 'funny-falcon'
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby'
2
2
  require 'mkmf'
3
- create_makefile("native")
3
+ create_makefile("murmurhash3/native")
4
4
  else
5
5
  File.open(File.dirname(__FILE__) + "/Makefile", 'w') do |f|
6
6
  f.write("install:\n\t")
@@ -1,3 +1,3 @@
1
1
  module MurmurHash3
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: murmurhash3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sokolov Yura 'funny-falcon'
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-24 00:00:00.000000000 Z
11
+ date: 2023-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -32,12 +32,12 @@ extensions:
32
32
  - ext/murmurhash3/extconf.rb
33
33
  extra_rdoc_files: []
34
34
  files:
35
+ - LICENSE
35
36
  - ext/murmurhash3/extconf.rb
36
37
  - ext/murmurhash3/murmur3.c
37
38
  - lib/murmurhash3.rb
38
39
  - lib/murmurhash3/aliaser.rb
39
40
  - lib/murmurhash3/native_murmur.rb
40
- - lib/murmurhash3/native_ruby.rb
41
41
  - lib/murmurhash3/pure_ruby.rb
42
42
  - lib/murmurhash3/version.rb
43
43
  - test/test_murmur.rb
@@ -61,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
- rubyforge_project:
65
- rubygems_version: 2.4.4
64
+ rubygems_version: 3.3.5
66
65
  signing_key:
67
66
  specification_version: 4
68
67
  summary: implements mumur3 hashing function
@@ -1,15 +0,0 @@
1
- require 'murmurhash3/aliaser'
2
- if RUBY_ENGINE == 'jruby'
3
- require 'murmurhash3/native'
4
- else
5
- require 'murmurhash3/native'
6
- end
7
-
8
- module MurmurHash3
9
- module Native32
10
- include MurmurHash3::Alias32
11
- end
12
- #module Native128
13
- # include MurmurHash3::Alias128
14
- #end
15
- end