aftalk 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: 1dd0166ea8177a35fab12a2a5e1609bc82a62b60
4
- data.tar.gz: '038956f734de5a1522b1558625e9ea13d8a8647b'
3
+ metadata.gz: e93ac6c06f96ef4f6e3127eefdeec2f8e3d55467
4
+ data.tar.gz: 3cb611a13074f088a939ff4138de64b8390f2e1d
5
5
  SHA512:
6
- metadata.gz: 44e297d074f6d805ffd28507c5d05e7c4596829f2a49843920d4b4edc566cf44ed86542d9b538d8fe231b38bf174724ab4b65135a5bf9704c661e93c9acf8082
7
- data.tar.gz: 379252e848685e605a4d3426c542188cd3e8db33dddc49008387bbd178e62c3dca83d9ae1b6be71122c4d11ec8486d2ea0f30146a3438c664fedc64bf40fdb49
6
+ metadata.gz: b47b57d4fc8467dffab8be0d385a4bf52972f4ced94f6d79406349171792d32e8bd1b7febde92c9b0bfeb2416f99385114986da8d31478ec0f2691e8fa240eb2
7
+ data.tar.gz: 50d50f2677eff0b0d78eca81ecb71dc7042e067dd2dd0fd7c8aa4cd72b0ccff6a1c706d1e5550146ae60cf1bc2a23d2254a18cc5a4379d88bfa1a3e73ba79f96
@@ -10,9 +10,9 @@ Gem::Specification.new do |spec|
10
10
  spec.description = <<-DESC
11
11
  A Ruby wrapper for Africa's Talking telephony services (https://africastalking.com)
12
12
  DESC
13
- spec.homepage = "https://github.com/thriveglobal/africas_talking_api"
13
+ spec.homepage = "https://github.com/thriveglobal/aftalk"
14
14
  spec.license = "MIT"
15
- spec.authors = ["Thrive Global Engineering Team"]
15
+ spec.authors = ["Michael Hoffman"]
16
16
  spec.files = `git ls-files -z`.split("\x0")
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
 
@@ -1,3 +1,3 @@
1
1
  module AfTalk
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.1.1".freeze
3
3
  end
@@ -4,13 +4,13 @@ describe AfTalk::Request do
4
4
  let(:connection) { double("connection") }
5
5
  let(:get_response) { double("get_response") }
6
6
  let(:post_response) { double("post_response") }
7
- let(:api_key) { "abc123" }
8
7
  let(:user_name) { "Thrive Global" }
9
8
  let(:default_params) { { username: user_name } }
10
9
  let(:options) { { foo: "bar" } }
11
10
 
12
11
  before(:each) do
13
12
  allow(AfTalk::Connection).to receive(:build).and_return(connection)
13
+ allow(AfTalk::Configuration).to receive(:user_name).and_return(user_name)
14
14
  end
15
15
 
16
16
  describe ".get" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aftalk
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
- - Thrive Global Engineering Team
7
+ - Michael Hoffman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-14 00:00:00.000000000 Z
11
+ date: 2017-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -157,7 +157,7 @@ files:
157
157
  - spec/unit/response_spec.rb
158
158
  - spec/unit/responses/send_message_response_spec.rb
159
159
  - spec/unit/sms_message_status_spec.rb
160
- homepage: https://github.com/thriveglobal/africas_talking_api
160
+ homepage: https://github.com/thriveglobal/aftalk
161
161
  licenses:
162
162
  - MIT
163
163
  metadata: {}