thrustio-ruby 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/README.rdoc +15 -5
  3. data/VERSION +1 -1
  4. data/thrustio-ruby.gemspec +2 -2
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTJjYTVlMzAxMGIyNjBkMDM4MzAzNWMwNTA0ZDczMTJiMDU5NDlmYQ==
4
+ ZTYzY2QzNjkyZmNiNGI1ZGIxOTg2MDc1Zjc2MGJkOTFjMDkzMDU4Nw==
5
5
  data.tar.gz: !binary |-
6
- ODFiYjQxODg1YTZiZTMyMmY1NDhhODk4NWYwYThjNDM0NDVjNDhjZA==
6
+ NGFhZTY0YmMxOGU2N2U3NmIwMzY5YmM1NTczNGE4MWYzZTk4YjczMA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTdjMWY0NGMyODBmNzAzODNlMzlmNjUyYjdhOWJiNWRmZGIzNzlkZDU0NzQz
10
- NTE4MzgwNThkMmJmMDE3NDA5NjVkMGEyYzE2YmRkMzBlMjhkOWU1NjM4MzRl
11
- NGRmYTlmYTdiZDkwMjVkMTZiOTE2MmE4NjFiNjU1MmUxNTU1N2E=
9
+ YjY3YjkwN2MxMTc2OWNkNTU4ZWQ1Y2JmNjYzYmY1Y2FhZTE3ZDEyODk3ZjVh
10
+ ZDY2YjEwZDc0NjA4OTJmYTEzODU1NTllNzQ2ODMyMzIxYTBlNjM1Y2E3NDI1
11
+ YjQ4Mzg2OWU4M2UyYWM0MWRkN2IzM2VkNWRlM2E1MWUzMjY3ODA=
12
12
  data.tar.gz: !binary |-
13
- NDRkOTQ4ZGRmYjU2MmRhMjAyYTg5Mjk5MDRhMGFhOGJhNzE0Mjk4NjQ4NDE5
14
- ZWIzNDRlMGE1MzZhODQyNzBkYjY1ZDIwM2MyNTcwZTVhMmI3NGRkNzNhODEy
15
- MjRiZjg3N2RjNzA0MWZhZDBhNzMyNTIzOTdlZjgxNTUxMDllZjA=
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
- == Usage
5
+ == Installation
6
+ Via RubyGems
7
+ gem install thrustio-ruby
8
+
9
+ == Include
10
+ require 'thrustio-ruby'
6
11
 
7
- client = Thrust::AnyMail::Client.new(<secret_key>) #eg: Thrust::AnyMail::Client.new('yourkey')
8
- client.search(<full_name_to_search>, <domain>) #eg: client.search("Gautam Chandra", "gmail.com")
9
- client.searchesLeft
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.0
1
+ 0.1.1
@@ -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.0 ruby lib
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.0"
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"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrustio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gautam Chandra