murmurhash3 0.1.4 → 0.1.5

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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a1a6909f920c21b919ae761a9fc5411737ef6ec
4
+ data.tar.gz: c474084ff76de915232898081b4238d661cbd0e8
5
+ SHA512:
6
+ metadata.gz: 523e834202901d89ce19b8fc0f33ee2769ff58040df511ede60b1c3a9064a6215da7d0065d1eb9799b25d164b713b915ee1c1daa6b5ade013ba49d671856b128
7
+ data.tar.gz: a447525272ea4c59fa1f3c68140c128949ef00359838d861ad059726ff45607612f7ed04eb8d4c9f1d09c524bb79e98ce9744feb2ddf2c65f8dc14e46e3ed82d
@@ -3,6 +3,6 @@ if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby'
3
3
  create_makefile("native_murmur")
4
4
  else
5
5
  File.open(File.dirname(__FILE__) + "/Makefile", 'w') do |f|
6
- f.write("install:\n\t#nothing to build")
6
+ f.write("install:\n\t")
7
7
  end
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module MurmurHash3
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: murmurhash3
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.1.4
4
+ version: 0.1.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - Sokolov Yura 'funny-falcon'
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-01-15 00:00:00.000000000 Z
11
+ date: 2014-12-23 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: implementation of murmur3 hashing function
15
14
  email:
@@ -19,37 +18,36 @@ extensions:
19
18
  - ext/murmurhash3/extconf.rb
20
19
  extra_rdoc_files: []
21
20
  files:
22
- - ext/murmurhash3/murmur3.c
23
21
  - ext/murmurhash3/extconf.rb
24
- - lib/murmurhash3/version.rb
25
- - lib/murmurhash3/pure_ruby.rb
22
+ - ext/murmurhash3/murmur3.c
26
23
  - lib/murmurhash3.rb
24
+ - lib/murmurhash3/pure_ruby.rb
25
+ - lib/murmurhash3/version.rb
27
26
  - test/test_murmur.rb
28
27
  homepage: https://github.com/funny-falcon/murmurhash3-ruby
29
28
  licenses:
30
29
  - MIT
30
+ metadata: {}
31
31
  post_install_message:
32
32
  rdoc_options: []
33
33
  require_paths:
34
34
  - lib
35
35
  - ext
36
36
  required_ruby_version: !ruby/object:Gem::Requirement
37
- none: false
38
37
  requirements:
39
- - - ! '>='
38
+ - - ">="
40
39
  - !ruby/object:Gem::Version
41
40
  version: '0'
42
41
  required_rubygems_version: !ruby/object:Gem::Requirement
43
- none: false
44
42
  requirements:
45
- - - ! '>='
43
+ - - ">="
46
44
  - !ruby/object:Gem::Version
47
45
  version: '0'
48
46
  requirements: []
49
47
  rubyforge_project:
50
- rubygems_version: 1.8.23
48
+ rubygems_version: 2.4.4
51
49
  signing_key:
52
- specification_version: 3
50
+ specification_version: 4
53
51
  summary: implements mumur3 hashing function
54
52
  test_files:
55
53
  - test/test_murmur.rb