total_voice 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b1ff285693b89b5a0a78e2b94d8e8e0864c058df
4
+ data.tar.gz: 7b007c8ca73d9b436df9ecffd54102e05b62e289
5
+ SHA512:
6
+ metadata.gz: 6b7066db994264127f6109cacf7983e517c189ebdcff97a7526d3d4f6fe938f70e718103977c084094cdfdb098f3cc2e28fa6fc31223f34f6847cad1d6babb68
7
+ data.tar.gz: ddfe9de14ff579522b7229da672a52285aa3b35802025b70f0296a218c27511b922ab7d62470ae9b9b750aba3709b074983abb1c182f2ea0fd793e645fc374bd
@@ -0,0 +1,51 @@
1
+ .DS_Store
2
+ *.gem
3
+ *.rbc
4
+ /.config
5
+ /coverage/
6
+ /InstalledFiles
7
+ /pkg/
8
+ /spec/reports/
9
+ /spec/examples.txt
10
+ /test/tmp/
11
+ /test/version_tmp/
12
+ /tmp/
13
+
14
+ # Used by dotenv library to load environment variables.
15
+ # .env
16
+
17
+ ## Specific to RubyMotion:
18
+ .dat*
19
+ .repl_history
20
+ build/
21
+ *.bridgesupport
22
+ build-iPhoneOS/
23
+ build-iPhoneSimulator/
24
+
25
+ ## Specific to RubyMotion (use of CocoaPods):
26
+ #
27
+ # We recommend against adding the Pods directory to your .gitignore. However
28
+ # you should judge for yourself, the pros and cons are mentioned at:
29
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
30
+ #
31
+ # vendor/Pods/
32
+
33
+ ## Documentation cache and generated files:
34
+ /.yardoc/
35
+ /_yardoc/
36
+ /doc/
37
+ /rdoc/
38
+
39
+ ## Environment normalization:
40
+ /.bundle/
41
+ /vendor/bundle
42
+ /lib/bundler/man/
43
+
44
+ # for a library or gem, you might want to ignore these files since the code is
45
+ # intended to run in multiple environments; otherwise, check them in:
46
+ # Gemfile.lock
47
+ # .ruby-version
48
+ # .ruby-gemset
49
+
50
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
51
+ .rvmrc
@@ -0,0 +1 @@
1
+ 2.4.1@total_voice
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install: gem install bundler -v 1.16.0
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in TotalVoice.gemspec
6
+ gemspec
@@ -0,0 +1,26 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ total_voice (0.0.3)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ httparty (0.16.0)
10
+ multi_xml (>= 0.5.2)
11
+ minitest (5.11.3)
12
+ multi_xml (0.6.0)
13
+ rake (10.5.0)
14
+
15
+ PLATFORMS
16
+ ruby
17
+
18
+ DEPENDENCIES
19
+ bundler (~> 1.16)
20
+ httparty (~> 0.16)
21
+ minitest (~> 5.0)
22
+ rake (~> 10.0)
23
+ total_voice!
24
+
25
+ BUNDLED WITH
26
+ 1.16.1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Bruno Frank
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,60 @@
1
+ # TotalVoice
2
+
3
+ Gem para consumo da API da TotalVoice.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'TotalVoice'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install TotalVoice
20
+
21
+ ## Usage
22
+
23
+ Set your access_token
24
+ ```ruby
25
+ # config/initializers/total_voice.rb
26
+ TotalVoice::Config.access_token = 'ACCESS_TOKEN'
27
+ ```
28
+
29
+ Or just set the env var in your server
30
+
31
+ TOTAL_VOICE_ACCESS_TOKEN='ACCESS_TOKEN'
32
+
33
+
34
+ How to send an audio.
35
+
36
+ ```ruby
37
+ audio = TotalVoice::Audio.new
38
+ audio.send('5555555', 'https://github.com/brunofrank/totalvoice-ruby/tree/master/test/assets/piano.mp3')
39
+ ```
40
+
41
+ How to send a SMS.
42
+
43
+ ```ruby
44
+ sms = TotalVoice::SMS.new
45
+ sms.send('5555555', 'SMS Text')
46
+ ```
47
+
48
+ ## Development
49
+
50
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
51
+
52
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
53
+
54
+ ## Contributing
55
+
56
+ Bug reports and pull requests are welcome on GitHub at https://github.com/brunofrank/totalvoice-ruby.
57
+
58
+ ## License
59
+
60
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "total_voice"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,9 @@
1
+ require "total_voice/version"
2
+ require "total_voice/config"
3
+ require "total_voice/base"
4
+ require "total_voice/audio"
5
+ require "total_voice/sms"
6
+
7
+ module TotalVoice
8
+ # Your code goes here...
9
+ end
@@ -0,0 +1,18 @@
1
+ module TotalVoice
2
+ class Audio < TotalVoice::Base
3
+ # Send audo message to the given number
4
+ #
5
+ #
6
+ #
7
+ def send(phone_number, audio_url, wait_for_user_anwser=false, shown_number=nil)
8
+ body = {
9
+ numero_destino: phone_number,
10
+ url_audio: audio_url,
11
+ resposta_usuario: wait_for_user_anwser,
12
+ shown_number: shown_number
13
+ }
14
+
15
+ puts self.class.post('/audio', {body: body.to_json})
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,12 @@
1
+ require 'httparty'
2
+
3
+ module TotalVoice
4
+ class Base
5
+ include HTTParty
6
+ base_uri 'https://api2.totalvoice.com.br'
7
+
8
+ def initialize
9
+ self.class.headers 'Accept' => 'application/json', 'Content-Type' => 'application/json', 'Access-Token' => TotalVoice::Config.access_token
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ module TotalVoice
2
+ class Config
3
+ @@access_token = nil
4
+
5
+ def self.access_token
6
+ @@access_token ? @@access_token : ENV['TOTAL_VOICE_ACCESS_TOKEN']
7
+ end
8
+
9
+ def self.access_token=(token)
10
+ @@access_token = token
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,18 @@
1
+ module TotalVoice
2
+ class SMS < TotalVoice::Base
3
+ # Send audo message to the given number
4
+ #
5
+ #
6
+ #
7
+ def send(phone_number, message, wait_for_user_anwser=false, slow_multi_sms=false)
8
+ body = {
9
+ numero_destino: phone_number,
10
+ mensagem: message,
11
+ resposta_usuario: wait_for_user_anwser,
12
+ multi_sms: slow_multi_sms
13
+ }
14
+
15
+ puts self.class.post('/sms', {body: body.to_json})
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module TotalVoice
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,27 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "total_voice/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "total_voice"
8
+ spec.version = TotalVoice::VERSION
9
+ spec.authors = ["Bruno Frank"]
10
+ spec.email = ["bfscordeiro@gmail.com"]
11
+
12
+ spec.summary = %q{Gem para acesso as API's da TotalVoice, esta gem foi renomeada para total_voice https://rubygems.org/gems/total_voice}
13
+ spec.homepage = "https://github.com/brunofrank/totalvoice-ruby"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "bin"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.16"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "minitest", "~> 5.0"
26
+ spec.add_development_dependency "httparty", "~> 0.16"
27
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: total_voice
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Bruno Frank
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-02-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: httparty
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.16'
69
+ description:
70
+ email:
71
+ - bfscordeiro@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".ruby-version"
78
+ - ".travis.yml"
79
+ - Gemfile
80
+ - Gemfile.lock
81
+ - LICENSE
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - lib/total_voice.rb
87
+ - lib/total_voice/audio.rb
88
+ - lib/total_voice/base.rb
89
+ - lib/total_voice/config.rb
90
+ - lib/total_voice/sms.rb
91
+ - lib/total_voice/version.rb
92
+ - total_voice.gemspec
93
+ homepage: https://github.com/brunofrank/totalvoice-ruby
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.6.14
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: Gem para acesso as API's da TotalVoice, esta gem foi renomeada para total_voice
117
+ https://rubygems.org/gems/total_voice
118
+ test_files: []