voicecom_sms 3.0.0 → 4.0.0
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 +8 -8
- data/README.md +1 -0
- data/VERSION +1 -1
- data/lib/voicecom_sms/provider.rb +1 -1
- data/voicecom_sms.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NWQxNGQ1NWZmZWUyOWNiZTk2ZDEwYjlmZTVhODg5YmVkMTIyMTBiMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Nzg1ZTdjMjE3YTk4MTc3ZGYwNGFmZjFhYjQ0MGNjZGYxYzE0YmVjYQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTY4NTJjYzc0ODhmYWVmNjY4OGY3YjQ1OGNjYTVkOTlmNjdmNTg2Y2U2NjI1
|
10
|
+
N2FhNzBlNzY3Njc5ZWZjMTI3ZjNjYTEwODIyOGU5ZjU4MmFlY2I5MzhiMmM1
|
11
|
+
MzFkYzA3ODA2Mzg0N2NiZDg2OGViNzVmYWFiZGJkMmEzMDg5Nzk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzQxOTViMGFmNGYxYTdlMTMzMzk4MzYwNmE0Y2Y4OTBiYTgwYTMxNGQ3NGJi
|
14
|
+
OWQ3ZjVmMThhNzIyOTYxYzdiZGM2OGRmYzg0M2I1OGM5NGViNWRlZmY5YzNk
|
15
|
+
ZWRkZGJmNGRjN2M2OGEyMTA2YWUxNGJhZThlNzczMDdmM2EzZDg=
|
data/README.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
4.0.0
|
@@ -24,7 +24,7 @@ module VoicecomSms
|
|
24
24
|
# example: for Bulgaria (+359) and mobile number 899947121 you should use '359899947121'
|
25
25
|
# @param text String No idea what characters is supported by voicecom - have to experiment. UTF-8 with latin works for sure.
|
26
26
|
#
|
27
|
-
# @return
|
27
|
+
# @return VoicecomSms::Message - you can take the status field from there, and have the id of the transaction.
|
28
28
|
def send_sms(number, text)
|
29
29
|
message = VoicecomSms::Message.create({text: text, number: normalize_number(number), status: STATUS[:undefined]})
|
30
30
|
|
data/voicecom_sms.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "voicecom_sms"
|
8
|
-
s.version = "
|
8
|
+
s.version = "4.0.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Empowerunited", "Evgenia Manolova", "Gudata"]
|
12
|
-
s.date = "2013-08-
|
12
|
+
s.date = "2013-08-16"
|
13
13
|
s.description = "A fast SMS engine that uses VoiceCom as a service provider"
|
14
14
|
s.email = "devteam@empowerunited.com"
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voicecom_sms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Empowerunited
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-08-
|
13
|
+
date: 2013-08-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|