clickatell_api_client 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27d57e8f04227a482256abb32670b04302de7682
4
- data.tar.gz: e9977ec3948d55f54185708902960c33cc5c26b2
3
+ metadata.gz: a7cdcce2f6d01748b0504d73dad4098e966b6248
4
+ data.tar.gz: dbc0a71b87b36adf0843fc07bba71ad8a816aed5
5
5
  SHA512:
6
- metadata.gz: 0b1699333e04593768b1e78545f65a66593d66fbd2b97b35e9df189b203c55f98cf4c0838c0e01ee1254c6c45227a29965e7e7f2b445fecc2a7eea6c097aad65
7
- data.tar.gz: f6a91e976fa82d7266c9bc722d953d8bd5fae6ca15af77375a6bddf5a91dfe1f725e116dcbe63290312944596f3b97eb4fb055a1e0f8ed62933bb49af8d302c1
6
+ metadata.gz: b2dd728cfd9149d9747e097d3a305f16d9f1c44e65281e5426ad855a7e8f8814a7c9f022240e66ce3e7f647c6da0cc94a2a72ede315f36696a2b943181440cca
7
+ data.tar.gz: 21f5f5b5df3fa341b5599c7b828bddc5222140387aef06ee7c0ac50c9181f97458807ad973d19d93958d68b7bb04ce43d3591e43be19026ec0688694d8dc3bdb
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # ClickatellApiClient
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/clickatell_api_client.svg)](https://badge.fury.io/rb/clickatell_api_client)
4
+ [![Build Status](https://travis-ci.org/paladinsoftware/clickatell_api_client.svg?branch=master)](https://travis-ci.org/paladinsoftware/clickatell_api_client)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/c4b1e02d0a40e9576cea/maintainability)](https://codeclimate.com/github/paladinsoftware/clickatell_api_client/maintainability)
6
+
3
7
  Ruby gem which is a wrapper for [Clickatell](https://www.clickatell.com/) API.
4
8
  It allows to send a message and supports sending messages to the US (two way message) and to the rest of the World.
5
9
  Gem automatically check if a number is from the USA and which type of a message should be used (two way or not).
@@ -28,7 +32,7 @@ First of all, configure your client.
28
32
  ClickatellApiClient.configure do |config|
29
33
  config.api_key = '123'
30
34
  config.us_api_key = '234'
31
- config.phone_number '+1324324231'
35
+ config.phone_number = '+1324324231'
32
36
  end
33
37
  ```
34
38
 
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_runtime_dependency "faraday", "~> 0.15"
23
+ spec.add_runtime_dependency "faraday", ">= 0.7"
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.15"
26
26
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module ClickatellApiClient
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clickatell_api_client
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
  - Piotr Jaworski
@@ -14,16 +14,16 @@ dependencies:
14
14
  name: faraday
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.15'
19
+ version: '0.7'
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
- version: '0.15'
26
+ version: '0.7'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement