voicecom_sms 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. checksums.yaml +8 -8
  2. data/Gemfile +2 -0
  3. data/README.md +16 -15
  4. data/Rakefile +3 -3
  5. data/VERSION +1 -1
  6. data/voicecom_sms.gemspec +4 -4
  7. metadata +5 -3
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- N2E2MWI0N2VjNjA0YTZlMTg4YzFkZTNkNzdkYjA2ZjMyOGFmYjczZg==
4
+ N2M2MDhiM2JhOTI1NGMwNmE0MDVjYmQ4MWZhMjZjZDRmOTVlZWQyNQ==
5
5
  data.tar.gz: !binary |-
6
- ZmIyYzM4OGE3OTgzM2YwZTVhOGU3NjRlMDI1MDYxMGQxMjk3NTViMw==
6
+ ZjMxZWRiZDFhOWI5YWE4ZDA1MDU2MTVmYmFhYWYyM2I1ZDA4NTgyMg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ODIxNjVhYWEzMzBiYzExYTI0OTA0OTc3MzVhYTNmNzExOGFlMGExZGMzOTUx
10
- Njc3NTM2NzI0MWMyYjA5NWZlZjIwYzNkOTI0NjcxMjg3MGQ4ZTc4YWRiYjlk
11
- ZGYzNGZjOGE4OTc1NDNhMGMyNDEzZTAzOWE0ZjhkY2I1NmQyYjY=
9
+ OGQ4MjY3MzI0NTRjNWQ3MGNkMDMwZmI2NDU0YzFlNzM1OTE5ZjNkMDc1YzA4
10
+ NmE3YmQxNGE3ZWI1OTJhNDM5ZDFlNTRhOWYzNWFlMzQxM2VhY2M3MTFmYTYz
11
+ ZjFmZTI3OWQwY2YxMTA5YTZmYjdhMjRlN2Q2YjM4MzQ3MmVjYzI=
12
12
  data.tar.gz: !binary |-
13
- ZjgyZmU1OTc5ZWM1NTI3ZTM2YjQxMDNmMjA0NDM5ZGI4MTNjYjBiYWMyOGQ5
14
- MjIwZjFhNzQ4MDViNTBkNWNjOTEwZjc2MmY0ZGZhODkxMDNhM2EyMWIwOWYy
15
- ODg1YTVlNmU4YWQxMWY1ZTc1MWQwOGNhOTYxMTYxZDRkNzdiNzk=
13
+ YjdhZGY4OTU3NDQwZTg0NmU3MTRhZTIyYThhZWU0YTU4MDFiOGQwYTMyNGEx
14
+ OTI0YzUyMjQzNTY4MDZmZTg4NGIwMGIxMTUzMDkzM2RjNDk3ZTNhM2JjY2Q5
15
+ MDQzNzBlYmM4M2E5YTE3M2VkODRjZjhjMjRiMjcyYjE2ZjA1MTE=
data/Gemfile CHANGED
@@ -16,6 +16,8 @@ group :development, :test do
16
16
  gem 'webmock'
17
17
  end
18
18
 
19
+ # min, rails 3
20
+
19
21
  gem "activerecord", '> 3.2.0'
20
22
  gem "hashie"
21
23
  gem "faraday"
data/README.md CHANGED
@@ -32,25 +32,26 @@ by filling your credentials for the VioceCom API
32
32
 
33
33
  rails c
34
34
 
35
- @provider = VoicecomSms::Provider.new
36
- @provider.send_sms('0888889204', "Vashiyat kod e: 1234")
35
+ @provider = VoicecomSms::Provider.new
36
+ @provider.send_sms('0888889204', "Vashiyat kod e: 1234")
37
37
 
38
38
 
39
39
  ### irb example
40
40
  irb
41
- require 'voicecom_sms'
42
- puts "make sure that you load the schema.rb"
43
-
44
- configuration = VoicecomSms.configure do |config|
45
- config.provider_ip = ENV['VOICECOM_IP']
46
- config.provider_port = ENV['VOICECOM_PORT']
47
- config.client_id = ENV['VOICECOM_CLIENT_ID']
48
- config.send_req_path = ENV['VOICECOM_SEND_REQUEST_PATH']
49
- puts "Provider settings https://#{config.provider_ip}:#{config.provider_port}#{config.send_req_path}?id=#{config.send_req_path}"
50
- end
51
-
52
- @provider = VoicecomSms::Provider.new
53
- @provider.send_sms('0888889204', "Вашият код в Клуб 50+ е: : 1234")
41
+
42
+ require 'voicecom_sms'
43
+ puts "make sure that you load the schema.rb"
44
+
45
+ configuration = VoicecomSms.configure do |config|
46
+ config.provider_ip = ENV['VOICECOM_IP']
47
+ config.provider_port = ENV['VOICECOM_PORT']
48
+ config.client_id = ENV['VOICECOM_CLIENT_ID']
49
+ config.send_req_path = ENV['VOICECOM_SEND_REQUEST_PATH']
50
+ puts "Provider settings https://#{config.provider_ip}:#{config.provider_port}#{config.send_req_path}?id=#{config.send_req_path}"
51
+ end
52
+
53
+ @provider = VoicecomSms::Provider.new
54
+ @provider.send_sms('0888889204', "Вашият код в Клуб 50+ е: : 1234")
54
55
 
55
56
  Note:
56
57
  The message should match the template you have given to voicecom
data/Rakefile CHANGED
@@ -15,12 +15,12 @@ require 'jeweler'
15
15
  Jeweler::Tasks.new do |gem|
16
16
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
17
  gem.name = "voicecom_sms"
18
- gem.homepage = "http://github.com/zzeni/voicecom_sms"
18
+ gem.homepage = "https://github.com/empowerunited/voicecom_sms"
19
19
  gem.license = "MIT"
20
20
  gem.summary = %Q{Ruby interface to the VoiceCom SMS Gateway API}
21
21
  gem.description = %Q{A fast SMS engine that uses VoiceCom as a service provider}
22
- gem.email = "emanolova@gmail.com"
23
- gem.authors = ["Evgenia Manolova"]
22
+ gem.email = "devteam@empowerunited.com"
23
+ gem.authors = ["Empowerunited", "Evgenia Manolova", "Gudata"]
24
24
  # dependencies defined in Gemfile
25
25
  end
26
26
  Jeweler::RubygemsDotOrgTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.0
1
+ 2.0.1
data/voicecom_sms.gemspec CHANGED
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "voicecom_sms"
8
- s.version = "2.0.0"
8
+ s.version = "2.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Evgenia Manolova"]
11
+ s.authors = ["Empowerunited", "Evgenia Manolova", "Gudata"]
12
12
  s.date = "2013-08-09"
13
13
  s.description = "A fast SMS engine that uses VoiceCom as a service provider"
14
- s.email = "emanolova@gmail.com"
14
+ s.email = "devteam@empowerunited.com"
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
17
17
  "README.md"
@@ -40,7 +40,7 @@ Gem::Specification.new do |s|
40
40
  "spec/voicecom_sms/request_spec.rb",
41
41
  "voicecom_sms.gemspec"
42
42
  ]
43
- s.homepage = "http://github.com/zzeni/voicecom_sms"
43
+ s.homepage = "https://github.com/empowerunited/voicecom_sms"
44
44
  s.licenses = ["MIT"]
45
45
  s.require_paths = ["lib"]
46
46
  s.rubygems_version = "2.0.3"
metadata CHANGED
@@ -1,10 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voicecom_sms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
+ - Empowerunited
7
8
  - Evgenia Manolova
9
+ - Gudata
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
@@ -165,7 +167,7 @@ dependencies:
165
167
  - !ruby/object:Gem::Version
166
168
  version: '0'
167
169
  description: A fast SMS engine that uses VoiceCom as a service provider
168
- email: emanolova@gmail.com
170
+ email: devteam@empowerunited.com
169
171
  executables: []
170
172
  extensions: []
171
173
  extra_rdoc_files:
@@ -194,7 +196,7 @@ files:
194
196
  - spec/voicecom_sms/provider_spec.rb
195
197
  - spec/voicecom_sms/request_spec.rb
196
198
  - voicecom_sms.gemspec
197
- homepage: http://github.com/zzeni/voicecom_sms
199
+ homepage: https://github.com/empowerunited/voicecom_sms
198
200
  licenses:
199
201
  - MIT
200
202
  metadata: {}