harleytt-gvoice-ruby 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.bundle/config +2 -0
- data/.gitignore +5 -0
- data/Gemfile +19 -0
- data/Gemfile.lock +24 -0
- data/README.rdoc +90 -0
- data/Rakefile +12 -0
- data/VERSION +1 -0
- data/bin/gv-notifier +78 -0
- data/bin/gv-place-call +22 -0
- data/bin/gv-send-sms +16 -0
- data/config/gvoice-ruby-config.yml.sample +11 -0
- data/gvoice-ruby.gemspec +34 -0
- data/lib/gvoice-ruby/call.rb +9 -0
- data/lib/gvoice-ruby/client.rb +277 -0
- data/lib/gvoice-ruby/compatibility.rb +75 -0
- data/lib/gvoice-ruby/config.rb +39 -0
- data/lib/gvoice-ruby/errors.rb +5 -0
- data/lib/gvoice-ruby/inbox_parser.rb +126 -0
- data/lib/gvoice-ruby/sms.rb +9 -0
- data/lib/gvoice-ruby/user.rb +12 -0
- data/lib/gvoice-ruby/version.rb +4 -0
- data/lib/gvoice-ruby/voicemail.rb +10 -0
- data/lib/gvoice-ruby.rb +5 -0
- data/test/client_test.rb +59 -0
- data/test/compatibility_test.rb +47 -0
- data/test/config_test.rb +50 -0
- data/test/fixtures/config_fixture.yml +11 -0
- data/test/fixtures/inbox.json +1 -0
- data/test/fixtures/inbox.yml +206 -0
- data/test/fixtures/inbox_fixture.html +2657 -0
- data/test/fixtures/login_fixture.html +567 -0
- data/test/gvoice-ruby_test.rb +9 -0
- data/test/inbox_parser_test.rb +53 -0
- data/test/test_helper.rb +20 -0
- metadata +223 -0
metadata
ADDED
@@ -0,0 +1,223 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: harleytt-gvoice-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
- 3
|
10
|
+
version: 0.3.3
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Keith Gautreaux
|
14
|
+
- Roy Kolak
|
15
|
+
- Jeremy Stephens
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-01-07 00:00:00 -05:00
|
21
|
+
default_executable:
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
name: curb
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ~>
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 19
|
32
|
+
segments:
|
33
|
+
- 0
|
34
|
+
- 7
|
35
|
+
- 8
|
36
|
+
version: 0.7.8
|
37
|
+
type: :runtime
|
38
|
+
version_requirements: *id001
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: nokogiri
|
41
|
+
prerelease: false
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 113
|
48
|
+
segments:
|
49
|
+
- 1
|
50
|
+
- 4
|
51
|
+
- 3
|
52
|
+
- 1
|
53
|
+
version: 1.4.3.1
|
54
|
+
type: :runtime
|
55
|
+
version_requirements: *id002
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: json
|
58
|
+
prerelease: false
|
59
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ~>
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
hash: 11
|
65
|
+
segments:
|
66
|
+
- 1
|
67
|
+
- 4
|
68
|
+
- 6
|
69
|
+
version: 1.4.6
|
70
|
+
type: :runtime
|
71
|
+
version_requirements: *id003
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: bundler
|
74
|
+
prerelease: false
|
75
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
hash: 15424057
|
81
|
+
segments:
|
82
|
+
- 1
|
83
|
+
- 0
|
84
|
+
- 0
|
85
|
+
- rc
|
86
|
+
- 6
|
87
|
+
version: 1.0.0.rc.6
|
88
|
+
type: :development
|
89
|
+
version_requirements: *id004
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: mocha
|
92
|
+
prerelease: false
|
93
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ~>
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
hash: 53
|
99
|
+
segments:
|
100
|
+
- 0
|
101
|
+
- 9
|
102
|
+
- 7
|
103
|
+
version: 0.9.7
|
104
|
+
type: :development
|
105
|
+
version_requirements: *id005
|
106
|
+
- !ruby/object:Gem::Dependency
|
107
|
+
name: shoulda
|
108
|
+
prerelease: false
|
109
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
110
|
+
none: false
|
111
|
+
requirements:
|
112
|
+
- - ~>
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
hash: 37
|
115
|
+
segments:
|
116
|
+
- 2
|
117
|
+
- 11
|
118
|
+
- 3
|
119
|
+
version: 2.11.3
|
120
|
+
type: :development
|
121
|
+
version_requirements: *id006
|
122
|
+
- !ruby/object:Gem::Dependency
|
123
|
+
name: rake
|
124
|
+
prerelease: false
|
125
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
126
|
+
none: false
|
127
|
+
requirements:
|
128
|
+
- - ~>
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
hash: 49
|
131
|
+
segments:
|
132
|
+
- 0
|
133
|
+
- 8
|
134
|
+
- 7
|
135
|
+
version: 0.8.7
|
136
|
+
type: :development
|
137
|
+
version_requirements: *id007
|
138
|
+
description: " gvoice-ruby is currently a very preliminary project with limited functionality basically confined to returning arrays of voicemail or sms objects and sending sms messages, or connecting calls. It cannot cancel calls already in progress. It currently works under ruby 1.8.7-p302 and 1.9.2-p0 on my computer running Mac OS X 10.6 (Snow Leopard). It is not guaranteed to work anywhere else and has very few tests.\n"
|
139
|
+
email:
|
140
|
+
- keith.gautreaux@gmail.com
|
141
|
+
executables: []
|
142
|
+
|
143
|
+
extensions: []
|
144
|
+
|
145
|
+
extra_rdoc_files: []
|
146
|
+
|
147
|
+
files:
|
148
|
+
- .bundle/config
|
149
|
+
- .gitignore
|
150
|
+
- Gemfile
|
151
|
+
- Gemfile.lock
|
152
|
+
- README.rdoc
|
153
|
+
- Rakefile
|
154
|
+
- VERSION
|
155
|
+
- bin/gv-notifier
|
156
|
+
- bin/gv-place-call
|
157
|
+
- bin/gv-send-sms
|
158
|
+
- config/gvoice-ruby-config.yml.sample
|
159
|
+
- gvoice-ruby.gemspec
|
160
|
+
- lib/gvoice-ruby.rb
|
161
|
+
- lib/gvoice-ruby/call.rb
|
162
|
+
- lib/gvoice-ruby/client.rb
|
163
|
+
- lib/gvoice-ruby/compatibility.rb
|
164
|
+
- lib/gvoice-ruby/config.rb
|
165
|
+
- lib/gvoice-ruby/errors.rb
|
166
|
+
- lib/gvoice-ruby/inbox_parser.rb
|
167
|
+
- lib/gvoice-ruby/sms.rb
|
168
|
+
- lib/gvoice-ruby/user.rb
|
169
|
+
- lib/gvoice-ruby/version.rb
|
170
|
+
- lib/gvoice-ruby/voicemail.rb
|
171
|
+
- test/client_test.rb
|
172
|
+
- test/compatibility_test.rb
|
173
|
+
- test/config_test.rb
|
174
|
+
- test/fixtures/config_fixture.yml
|
175
|
+
- test/fixtures/inbox.json
|
176
|
+
- test/fixtures/inbox.yml
|
177
|
+
- test/fixtures/inbox_fixture.html
|
178
|
+
- test/fixtures/login_fixture.html
|
179
|
+
- test/gvoice-ruby_test.rb
|
180
|
+
- test/inbox_parser_test.rb
|
181
|
+
- test/test_helper.rb
|
182
|
+
has_rdoc: true
|
183
|
+
homepage: http://github.com/kgautreaux/gvoice-ruby
|
184
|
+
licenses: []
|
185
|
+
|
186
|
+
post_install_message: |+
|
187
|
+
|
188
|
+
|
189
|
+
Please run 'cd gvoice-ruby;bundle install;bundle exec rake' to run the tests.
|
190
|
+
|
191
|
+
rdoc_options: []
|
192
|
+
|
193
|
+
require_paths:
|
194
|
+
- lib
|
195
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
196
|
+
none: false
|
197
|
+
requirements:
|
198
|
+
- - ">="
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
hash: 3
|
201
|
+
segments:
|
202
|
+
- 0
|
203
|
+
version: "0"
|
204
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
|
+
none: false
|
206
|
+
requirements:
|
207
|
+
- - ~>
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
hash: 23
|
210
|
+
segments:
|
211
|
+
- 1
|
212
|
+
- 3
|
213
|
+
- 6
|
214
|
+
version: 1.3.6
|
215
|
+
requirements: []
|
216
|
+
|
217
|
+
rubyforge_project:
|
218
|
+
rubygems_version: 1.3.7
|
219
|
+
signing_key:
|
220
|
+
specification_version: 3
|
221
|
+
summary: "gvoice-ruby is a library for interacting with Google\xE2\x80\x99s Voice service (previously GrandCentral) using ruby."
|
222
|
+
test_files: []
|
223
|
+
|