enrichment_db 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +17 -0
  3. metadata +87 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 727cbbf853ae7fb62f2e7d97e550c88985791594
4
+ data.tar.gz: 0e4134f0e635ce60e6c94e036372b6fc84ac0eec
5
+ SHA512:
6
+ metadata.gz: 8c4211fa6c0713e4f0f00daf2528bf496d7a1ffb37af5b1f1160dfcff9f0856e0481e7a27940743555eaf473c8b81107edb64c4b1b21b6923c87dbcc173e4f3b
7
+ data.tar.gz: 6e270d0a60d366dd2742dd09df999096a0a594e620d9da13cd52a328ac2cecce766aec804e7980724dfa78ea548137b616c91ad03cb39b3375c32e8b4d68ccb5
@@ -0,0 +1,17 @@
1
+ # enrichment-db.gem
2
+
3
+ This is a Gem that allows access to read from the enrichment database that contains static datasets used for enrichment.
4
+
5
+ The design of this gem is to allow easy querying of the data in the enrichment database and scalability as more data is added to the enrichment database.
6
+
7
+ # Tests
8
+
9
+ Run tests:
10
+ bundle exec rake test
11
+
12
+ # IRB
13
+
14
+ If you need to have a laugh and play around with gem:
15
+ irb -rubygems -I lib -r $PWD/lib/enrichment_db.rb
16
+
17
+
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: enrichment_db
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Wallis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: multi_json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pg
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pr_geohash
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Consume static data from the Lexer Enrichment database.
56
+ email: code@Lexer.io
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - README.md
62
+ homepage: https://github.com/lexerdev/enrichment-db.gem
63
+ licenses:
64
+ - MIT
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubyforge_project:
82
+ rubygems_version: 2.2.2
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: Lexer Enrichment Database Gem
86
+ test_files:
87
+ - README.md