globe_connect 1.0.1
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 +7 -0
- data/.gitignore +11 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +131 -0
- data/Rakefile +2 -0
- data/Sample.md +121 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/globe_connect.gemspec +41 -0
- data/http/voice.rb +388 -0
- data/lib/globe_connect.rb +18 -0
- data/lib/globe_connect/amax.rb +46 -0
- data/lib/globe_connect/authentication.rb +39 -0
- data/lib/globe_connect/base.rb +58 -0
- data/lib/globe_connect/location_query.rb +29 -0
- data/lib/globe_connect/payment.rb +65 -0
- data/lib/globe_connect/sms.rb +90 -0
- data/lib/globe_connect/subscriber.rb +43 -0
- data/lib/globe_connect/ussd.rb +77 -0
- data/lib/globe_connect/version.rb +3 -0
- data/lib/globe_connect/voice.rb +423 -0
- metadata +112 -0
metadata
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: globe_connect
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rico Maglayon
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-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.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
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: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.5'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.5'
|
55
|
+
description: |-
|
56
|
+
Globe Connect for Ruby platform provides an implementation of Globe APIs e.g Authentication, Amax,
|
57
|
+
Sms etc. that is easy to use and can be integrated in your existing Ruby application. Below shows
|
58
|
+
some samples on how to use the API depending on the functionality that you need to integrate in your
|
59
|
+
application.
|
60
|
+
email:
|
61
|
+
- rmaglayon@gmail.com
|
62
|
+
executables: []
|
63
|
+
extensions: []
|
64
|
+
extra_rdoc_files: []
|
65
|
+
files:
|
66
|
+
- ".gitignore"
|
67
|
+
- CODE_OF_CONDUCT.md
|
68
|
+
- Gemfile
|
69
|
+
- LICENSE.txt
|
70
|
+
- README.md
|
71
|
+
- Rakefile
|
72
|
+
- Sample.md
|
73
|
+
- bin/console
|
74
|
+
- bin/setup
|
75
|
+
- globe_connect.gemspec
|
76
|
+
- http/voice.rb
|
77
|
+
- lib/globe_connect.rb
|
78
|
+
- lib/globe_connect/amax.rb
|
79
|
+
- lib/globe_connect/authentication.rb
|
80
|
+
- lib/globe_connect/base.rb
|
81
|
+
- lib/globe_connect/location_query.rb
|
82
|
+
- lib/globe_connect/payment.rb
|
83
|
+
- lib/globe_connect/sms.rb
|
84
|
+
- lib/globe_connect/subscriber.rb
|
85
|
+
- lib/globe_connect/ussd.rb
|
86
|
+
- lib/globe_connect/version.rb
|
87
|
+
- lib/globe_connect/voice.rb
|
88
|
+
homepage: http://globelabs.com.ph
|
89
|
+
licenses:
|
90
|
+
- MIT
|
91
|
+
metadata: {}
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - "~>"
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '2.0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.5.1
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Globe Connect for Ruby.
|
112
|
+
test_files: []
|