mollie-sms 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mollie/sms.rb +1 -1
- data/mollie-sms.gemspec +1 -1
- data/spec/sms_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb7ae642a6bbfe5a1cfed302853f38d094a9e5de
|
4
|
+
data.tar.gz: 3aca5e4a838ba7a03ca3d68a4cb29c60f1a16fc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df49109660d368da423cb5bd33cd1dfa278b0b881cd9a37bc94c8e3d977b04a36f32e84a4b849767c5ee8116c32868e5fb543cf7e399f29c35a36474a703f777
|
7
|
+
data.tar.gz: 941c5701fd4446869276e0bd5213283bc170d58f60a0237e5ad50c6c7a4ee660ba22b570a2c1ecc767965d16da5ac8acec22d462f3e8123d197bdba09bb67e29
|
data/lib/mollie/sms.rb
CHANGED
@@ -52,7 +52,7 @@ module Mollie
|
|
52
52
|
# The SSL URI to which the parameters of a SMS are posted.
|
53
53
|
#
|
54
54
|
# Note that the certificate is *not* verified.
|
55
|
-
GATEWAY_URI = URI.parse("https://api.messagebird.
|
55
|
+
GATEWAY_URI = URI.parse("https://api.messagebird.com/xml/sms")
|
56
56
|
|
57
57
|
# The possible values that indicate which {SMS.gateway= SMS gateway} should
|
58
58
|
# be used.
|
data/mollie-sms.gemspec
CHANGED
data/spec/sms_spec.rb
CHANGED
@@ -3,7 +3,7 @@ require "mollie/sms/test_helper"
|
|
3
3
|
|
4
4
|
describe "Mollie::SMS" do
|
5
5
|
it "holds the gateway uri" do
|
6
|
-
Mollie::SMS::GATEWAY_URI.should == URI.parse("https://api.messagebird.
|
6
|
+
Mollie::SMS::GATEWAY_URI.should == URI.parse("https://api.messagebird.com/xml/sms")
|
7
7
|
end
|
8
8
|
|
9
9
|
it "holds the service username" do
|