google_hash 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ChangeLog.txt +4 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/ext/clean.bat +0 -0
- data/ext/clean.sh +0 -0
- data/ext/extconf.rb +3 -1
- data/ext/go.bat +0 -0
- data/ext/sparsehash-2.0.2/config.guess +0 -0
- data/ext/sparsehash-2.0.2/config.sub +0 -0
- data/ext/sparsehash-2.0.2/configure +0 -0
- data/ext/sparsehash-2.0.2/depcomp +0 -0
- data/ext/sparsehash-2.0.2/install-sh +0 -0
- data/ext/sparsehash-2.0.2/missing +0 -0
- data/ext/sparsehash-2.0.2/packages/deb.sh +0 -0
- data/ext/sparsehash-2.0.2/packages/deb/rules +0 -0
- data/ext/sparsehash-2.0.2/packages/rpm.sh +0 -0
- data/ext/sparsehash-2.0.2/sparsehash.sln +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/hashtable_test/hashtable_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/libc_allocator_with_realloc_test/libc_allocator_with_realloc_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/simple_test/simple_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/sparsetable_unittest/sparsetable_unittest.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/time_hash_map/time_hash_map.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/type_traits_unittest/type_traits_unittest.vcproj +0 -0
- data/ext/spec.bat +0 -0
- metadata +23 -29
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d23f86698ca9d5943672bcedce1b34d927bb8c9e
|
4
|
+
data.tar.gz: 7998d5064e4ec2ca240370c73d36f3414c5e5015
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 286db97c34501bf64c1356a1ed34e5fe1a4db4a28e2a79eabdeef401f1352f33b3806ac53589697a04f2d2529943c55256232eefb9b5afed88d7410125b93129
|
7
|
+
data.tar.gz: 79c9cedde68e56d87160c7178524895fcf48d2d57a97eab17bbeabfc9a6426a000937fdecc6b88ad23d9b159a64700333094e17ddd4d607782eef3e2c972e70a
|
data/ChangeLog.txt
CHANGED
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ Jeweler::Tasks.new do |gemspec|
|
|
8
8
|
gemspec.email = "rogerdpack@gmail.com"
|
9
9
|
gemspec.homepage = "http://github.com/rdp/ruby_google_hash"
|
10
10
|
gemspec.authors = ["rogerdpack"]
|
11
|
-
gemspec.
|
12
|
-
gemspec.add_development_dependency('hitimes')
|
11
|
+
gemspec.add_runtime_dependency 'sane', '~> 0' # real dependency as it's used for building the gem, in the extconf.rb file itself
|
12
|
+
gemspec.add_development_dependency('hitimes', '~> 0')
|
13
13
|
end
|
14
14
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.
|
1
|
+
0.8.4
|
data/ext/clean.bat
CHANGED
File without changes
|
data/ext/clean.sh
CHANGED
File without changes
|
data/ext/extconf.rb
CHANGED
@@ -20,6 +20,8 @@ end
|
|
20
20
|
|
21
21
|
$CFLAGS += " -I./local_installed/include "
|
22
22
|
$CPPFLAGS += " -I./local_installed/include "
|
23
|
+
|
24
|
+
puts "running from #{Dir.pwd}"
|
23
25
|
|
24
26
|
if RUBY_VERSION < '1.9'
|
25
27
|
# appears to need this to link using gcc on 1.8 [mingw at least]
|
@@ -106,7 +108,7 @@ end
|
|
106
108
|
template = ERB.new(File.read('template/main.cpp.erb'))
|
107
109
|
File.write 'main.cpp', template.result(binding)
|
108
110
|
|
109
|
-
|
111
|
+
RbConfig::CONFIG['CPP'] = "g++ -E" # else cannot check for c++ headers? huh wuh?
|
110
112
|
have_header('tr1/functional')
|
111
113
|
|
112
114
|
if have_header('functional') && OS.x? && !have_header('tr1/functional')
|
data/ext/go.bat
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/ext/spec.bat
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,48 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google_hash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
5
|
-
prerelease:
|
4
|
+
version: 0.8.4
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- rogerdpack
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2014-
|
11
|
+
date: 2014-06-06 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: sane
|
16
|
-
|
17
|
-
none: false
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
|
-
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
26
21
|
requirements:
|
27
|
-
- -
|
22
|
+
- - ~>
|
28
23
|
- !ruby/object:Gem::Version
|
29
24
|
version: '0'
|
25
|
+
prerelease: false
|
26
|
+
type: :runtime
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: hitimes
|
32
|
-
|
33
|
-
none: false
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
|
-
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
42
35
|
requirements:
|
43
|
-
- -
|
36
|
+
- - ~>
|
44
37
|
- !ruby/object:Gem::Version
|
45
38
|
version: '0'
|
39
|
+
prerelease: false
|
40
|
+
type: :development
|
46
41
|
description: Ruby wrappers to the google hash library
|
47
42
|
email: rogerdpack@gmail.com
|
48
43
|
executables: []
|
@@ -171,26 +166,25 @@ files:
|
|
171
166
|
- to_build_locally_run_ext_go_bat
|
172
167
|
homepage: http://github.com/rdp/ruby_google_hash
|
173
168
|
licenses: []
|
174
|
-
|
169
|
+
metadata: {}
|
170
|
+
post_install_message:
|
175
171
|
rdoc_options: []
|
176
172
|
require_paths:
|
177
173
|
- lib
|
178
174
|
required_ruby_version: !ruby/object:Gem::Requirement
|
179
|
-
none: false
|
180
175
|
requirements:
|
181
|
-
- -
|
176
|
+
- - '>='
|
182
177
|
- !ruby/object:Gem::Version
|
183
178
|
version: '0'
|
184
179
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
185
|
-
none: false
|
186
180
|
requirements:
|
187
|
-
- -
|
181
|
+
- - '>='
|
188
182
|
- !ruby/object:Gem::Version
|
189
183
|
version: '0'
|
190
184
|
requirements: []
|
191
|
-
rubyforge_project:
|
192
|
-
rubygems_version:
|
193
|
-
signing_key:
|
194
|
-
specification_version:
|
185
|
+
rubyforge_project:
|
186
|
+
rubygems_version: 2.2.2
|
187
|
+
signing_key:
|
188
|
+
specification_version: 4
|
195
189
|
summary: Ruby wrappers to the google hash library
|
196
190
|
test_files: []
|