srchio 0.1.0 → 0.1.1
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 +13 -5
- data/lib/srchio/concern.rb +1 -1
- data/lib/srchio/version.rb +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
ZjAwYzcwZDUyMTMxN2FjMWEzMzk2MWMwMDljZWQyYzYzMmEzOWI3Nw==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
ZWE2NDkzNzBiMmYwMWYxNzk4ZjgyYzc1ODRjMGZkMzI4NWExMWU1NQ==
|
|
5
7
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
Y2NkYjcxNzU5YTcwNTdiNTM4MTFjNGZmYzZhZmQ5OThhMjkzNjBjMTA3ODU5
|
|
10
|
+
Y2E3N2JhYjhjNWE2NGZiYmFmZTEzNDAzZWQyNTA2NWUyNGI0YmY5ZGVmY2M0
|
|
11
|
+
ZmY4NWI5YTI0ODYzYjZmYjhiNzNmMGIyMjEyMjVmMmFjOTI2NzU=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
ZjRjNGMzMGI1MzliMWI5YTg0OGQ5MGQ1MzdiN2ZiNzk4ODFhMDMyNmMzYTYy
|
|
14
|
+
NDZiMjg1OTAyZWE3OWNhNGNjNDQyMjU0MWI4MTkwZmE3OGMwYzIyNGM5NTE4
|
|
15
|
+
ZTE2YjRiYmEwMGFjN2Q2NDgwZWJhNGY1NjA1Zjk1NTdjOGRiZjU=
|
data/lib/srchio/concern.rb
CHANGED
|
@@ -77,7 +77,7 @@ options:
|
|
|
77
77
|
srch_client: The client used to do all the API calls. The concern provides method wrappers for everything, so you probably don't need to call this directly.
|
|
78
78
|
=end
|
|
79
79
|
def srch_client
|
|
80
|
-
@@client ||=
|
|
80
|
+
@@client ||= Srchio::Client.new(:searcher_id => srch_config[:searcher_id])
|
|
81
81
|
end
|
|
82
82
|
|
|
83
83
|
=begin rdoc
|
data/lib/srchio/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module Srchio
|
|
2
|
-
VERSION = "0.1.
|
|
3
|
-
end
|
|
2
|
+
VERSION = "0.1.1"
|
|
3
|
+
end
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: srchio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Lawver
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - '>='
|
|
17
|
+
- - ! '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 0.12.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - '>='
|
|
24
|
+
- - ! '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.12.0
|
|
27
27
|
description: The official gem and wrapper for the srch.io API. More info @ http://srch.io
|
|
@@ -51,12 +51,12 @@ require_paths:
|
|
|
51
51
|
- lib
|
|
52
52
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
|
-
- - '>='
|
|
54
|
+
- - ! '>='
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: 1.9.3
|
|
57
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- - '>='
|
|
59
|
+
- - ! '>='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
requirements: []
|