thrustio-ruby 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 +8 -8
- data/README.rdoc +15 -5
- data/VERSION +1 -1
- data/thrustio-ruby.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZTYzY2QzNjkyZmNiNGI1ZGIxOTg2MDc1Zjc2MGJkOTFjMDkzMDU4Nw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NGFhZTY0YmMxOGU2N2U3NmIwMzY5YmM1NTczNGE4MWYzZTk4YjczMA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjY3YjkwN2MxMTc2OWNkNTU4ZWQ1Y2JmNjYzYmY1Y2FhZTE3ZDEyODk3ZjVh
|
|
10
|
+
ZDY2YjEwZDc0NjA4OTJmYTEzODU1NTllNzQ2ODMyMzIxYTBlNjM1Y2E3NDI1
|
|
11
|
+
YjQ4Mzg2OWU4M2UyYWM0MWRkN2IzM2VkNWRlM2E1MWUzMjY3ODA=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MWQ3MTJkN2U5YjZiMWY5M2ZmNDhhN2MyMDc5ZGE5NWFjYWZjNzNjYzI4YWVk
|
|
14
|
+
ZDUzNWJjOGQ1ZDhiY2FkN2Q2NTc4MmU2MDZlNTZhMDg0MTViZTdkYmNkZmQ1
|
|
15
|
+
NGQyYjg5ZWI4ZjA2MDVjNWIxNDU2MjgyMThkYmRhMWVkOGVlNTQ=
|
data/README.rdoc
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
= thrustio-ruby
|
|
2
2
|
|
|
3
|
-
Ruby gem for thrustio api
|
|
3
|
+
Ruby gem for thrustio api. Only anymail apis are supported as of now.
|
|
4
4
|
|
|
5
|
-
==
|
|
5
|
+
== Installation
|
|
6
|
+
Via RubyGems
|
|
7
|
+
gem install thrustio-ruby
|
|
8
|
+
|
|
9
|
+
== Include
|
|
10
|
+
require 'thrustio-ruby'
|
|
6
11
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
client
|
|
12
|
+
== Usage
|
|
13
|
+
|
|
14
|
+
# To instantiate the anymail client
|
|
15
|
+
client = Thrust::AnyMail::Client.new(<secret_key>)
|
|
16
|
+
# To search for email addresses
|
|
17
|
+
client.search("Gautam Chandra", "gmail.com")
|
|
18
|
+
# To get the count of searches left
|
|
19
|
+
client.searchesLeft
|
|
10
20
|
|
|
11
21
|
== Contributing to thrustio-ruby
|
|
12
22
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/thrustio-ruby.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: thrustio-ruby 0.1.
|
|
5
|
+
# stub: thrustio-ruby 0.1.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "thrustio-ruby"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|