whoosh-ruby 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 819bccd0dea782a7d16d73cfe5b84a3d522c035a1a982b78b54f3e0a699df21a
4
- data.tar.gz: c4f7e0c57d13ba915512b4679858f012a874a72e93451b7293d2cca557352b88
3
+ metadata.gz: 2f501c74c65546910b75412215ac07c87cda36ce583a7fdf3bc768e180058d37
4
+ data.tar.gz: 3e8723fd10d7db49ae9cc0691ee9f38f7ec69f06c65da5b7fc3419060f4972b4
5
5
  SHA512:
6
- metadata.gz: 30c8468349989cb39f41ae6f7b4294effe2aaa79c3d6b53a962f3eb867d317284dc60874ff6b9adec5be50083b91d1af693291d323c9b2eb50a5ca162d724a3b
7
- data.tar.gz: c3a899d0bc0aefabc187531cb1bffe7ef066505c883d85e4f56c0d1dd604861949c3863224a6249d78bcf0feb8af7fe1d8f98968fcc59d90e41122721a5940d0
6
+ metadata.gz: a2e957be92ed0a4d848d43564fcbae2e85b50f5ac7f187f51d0d6af731e64b0c0eff460ef9206a4cc7f0a71877a3fcac258185e765c311819bdc42ce42923f7f
7
+ data.tar.gz: c409f5a87c1ba9d0d0233812922ed61fea971cdf6b680c70310904420ab7853fdb0ffafe910dcb6d7ed260bb248a8b81f466a0527485551f22b77a64a3b95a6e
data/README.md CHANGED
@@ -66,11 +66,11 @@ puts message.sid
66
66
  ```ruby
67
67
  require 'twilio-ruby'
68
68
 
69
- # Your Account SID and Auth Token from console.twilio.com
69
+ # Your Account SID and Auth Token from console.whoosh.totogidemos.com
70
70
  account_sid = 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
71
71
  auth_token = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'
72
72
 
73
- # Initialize the Twilio Client with your credentials
73
+ # Initialize the Whoosh Client with your credentials
74
74
  @client = Twilio::REST::Client.new account_sid, auth_token
75
75
  ```
76
76
 
@@ -108,7 +108,7 @@ For more information about these methods, view the [auto-generated library docs
108
108
 
109
109
  ### Handle Exceptions {#exceptions}
110
110
 
111
- If the Twilio API returns a 400 or a 500 level HTTP response, the `whoosh-ruby`
111
+ If the Whoosh API returns a 400 or a 500 level HTTP response, the `whoosh-ruby`
112
112
  library will throw a `Twilio::REST::RestError`. 400-level errors are normal
113
113
  during API operation (`“Invalid number”`, `“Cannot deliver SMS to that number”`,
114
114
  for example) and should be handled appropriately.
@@ -138,7 +138,7 @@ For example, you can retrieve the status code of the last response like so:
138
138
  require 'rubygems' # Not necessary with ruby 1.9 but included for completeness
139
139
  require 'twilio-ruby'
140
140
 
141
- # Your Account SID and Auth Token from console.twilio.com
141
+ # Your Account SID and Auth Token from console.whoosh.totogidemos.com
142
142
  account_sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
143
143
  auth_token = 'your_auth_token'
144
144
 
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: whoosh-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Totogi