nymeria 2.0.7 → 2.0.8
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.
- checksums.yaml +4 -4
- data/lib/nymeria.rb +4 -4
- data/nymeria.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '048c6b4e6a33d3bdd733cf17f7d11b605194d52e1d5492308429a77d55ee31e7'
|
|
4
|
+
data.tar.gz: a14cc73ac513f9dd4ebe1e6b16739e3ea1cf7f7f6067868c1a6b0daa2ed6b33d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d09abfbb39eca187ebb042bed09b728944f029a54804329d33307db9b097ddf4cb4bcf810114754f678dec4cb2a6f85adff251e3fca32c7091fd52f9afe8017a
|
|
7
|
+
data.tar.gz: 699f8497df8c5024ef44f3be8e2e29d5297f1c8210284a4db8c1c0f5c957bd00cecd289cbbe411fa2a7f13239adcf8669ba527b6631b0aa02bba9049318a8bc5
|
data/lib/nymeria.rb
CHANGED
|
@@ -7,12 +7,12 @@ require 'nymeria/person'
|
|
|
7
7
|
require 'json'
|
|
8
8
|
require 'net/http'
|
|
9
9
|
|
|
10
|
-
API_KEY = ''
|
|
11
|
-
BASE_URL = 'https://www.nymeria.io/api/v4'
|
|
12
|
-
USER_AGENT = 'nymeria.rb/2.0.6'
|
|
13
|
-
|
|
14
10
|
# Nymeria is our primary module namespace.
|
|
15
11
|
module Nymeria
|
|
12
|
+
API_KEY = ''
|
|
13
|
+
BASE_URL = 'https://www.nymeria.io/api/v4'
|
|
14
|
+
USER_AGENT = 'nymeria.rb/2.0.8'
|
|
15
|
+
|
|
16
16
|
class << self
|
|
17
17
|
def request(req)
|
|
18
18
|
req['X-Api-Key'] = API_KEY
|
data/nymeria.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'nymeria'
|
|
5
|
-
s.version = '2.0.
|
|
5
|
+
s.version = '2.0.8'
|
|
6
6
|
s.summary = 'Easily interact with Nymeria\'s API to find and verify people\'s contact information.'
|
|
7
7
|
s.description = 'Nymeria enables people to easily discover and connect with people. This gem is a light weight wrapper around Nymeria\'s API. With this gem you can easily interact with the API to find and verify people\'s contact information.'
|
|
8
8
|
s.authors = ['Nymeria, LLC']
|