voicecom_sms 3.0.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzRjM2YwZDEyZTg0ZGNjNTZkNDkwM2Y5NDA3ODNjMmU4OWFmM2ZlYg==
4
+ NWQxNGQ1NWZmZWUyOWNiZTk2ZDEwYjlmZTVhODg5YmVkMTIyMTBiMg==
5
5
  data.tar.gz: !binary |-
6
- YTdjOGQxZDZiMGQ5NmIyNWFmZDRiMTk3MmRmNGMxODJlYjhmNWI3OQ==
6
+ Nzg1ZTdjMjE3YTk4MTc3ZGYwNGFmZjFhYjQ0MGNjZGYxYzE0YmVjYQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NmVjZDk4ZjM3ZjhhZDMzZGM1NmYxZGNkYTgxNzVkYmM4NmMxZWZlNWZiZDY4
10
- NGJkM2NiMmRhZTVjOGJlNTczZmNkMGQzOTJmNGZjZDBhOTQ1ZTY5NTdlYjE1
11
- M2JjYTU5N2ZlMTYzODdhODkwNmFjYWRkNTY3N2VhOWI4MzdhOGQ=
9
+ ZTY4NTJjYzc0ODhmYWVmNjY4OGY3YjQ1OGNjYTVkOTlmNjdmNTg2Y2U2NjI1
10
+ N2FhNzBlNzY3Njc5ZWZjMTI3ZjNjYTEwODIyOGU5ZjU4MmFlY2I5MzhiMmM1
11
+ MzFkYzA3ODA2Mzg0N2NiZDg2OGViNzVmYWFiZGJkMmEzMDg5Nzk=
12
12
  data.tar.gz: !binary |-
13
- NDkwZTNhOTNhNjBiMTE4Yzk3NWI4YmMzZjk4YzQ3ZDg0YzUyMWVjYjhmMGM5
14
- M2ZlYTJjZDFlMjZlNGRiM2Q5YTI4Y2U1MmQ4ZTc3ZjIzYzYzMWQ2Y2RkNGJi
15
- ZWEzZjEzNzVlYTk4ZjgwYjc4ZjQzOWJlZjI3MTVhMDM5YWU3ZjY=
13
+ YzQxOTViMGFmNGYxYTdlMTMzMzk4MzYwNmE0Y2Y4OTBiYTgwYTMxNGQ3NGJi
14
+ OWQ3ZjVmMThhNzIyOTYxYzdiZGM2OGRmYzg0M2I1OGM5NGViNWRlZmY5YzNk
15
+ ZWRkZGJmNGRjN2M2OGEyMTA2YWUxNGJhZThlNzczMDdmM2EzZDg=
data/README.md CHANGED
@@ -36,6 +36,7 @@ rails c
36
36
  @provider.send_sms('359888889204', "Vashiyat kod e: 1234")
37
37
 
38
38
 
39
+
39
40
  ### irb example
40
41
  irb
41
42
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.0
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 integer VoicecomSms::Provider::STATUS
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 = "3.0.0"
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"
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: 3.0.0
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-12 00:00:00.000000000 Z
13
+ date: 2013-08-16 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord