govdelivery-tms 0.9.0 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/README.md +3 -3
- data/govdelivery-tms.gemspec +1 -0
- data/lib/govdelivery/tms/version.rb +1 -1
- metadata +26 -12
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZThkNWNjOTkwM2M3ODg1MzFlNzliODFmYzljZmEwMzRjODQ5Y2ZhOQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NDFmZWU4OGE5MDAyZTNmMWFhYzdjMzQ5YmVkYmM5ZDRiZTcwODg5Nw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NTc4NzQyMjFlNWJjMDljMWYzOTYyMTU4MTJlODI2NTJlNjc2YTdmOTlhOTc0
|
10
|
+
ZDRhODg2NzgzZTIwOWUwNGU0OGU2ZDU2ZDkyYjdjNjZiOTUxODFlYzg3MTNh
|
11
|
+
M2I4ZTU3M2ZhODIxYjM1NTcxMTk5NmFhYTBmZTVlZGJlMTlhNzE=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NTRiNGI0NDRlNzIwNDQ4ZTIyMWZlZGY4NGNkMDU5ZjQ4MjU3NWE1MDAyZTVl
|
14
|
+
NmZiMWIyNDhlOTlkZWQzMWM4M2ZiOTQwNzc4ODczMjE2Y2YzNDBlMDRiNjNm
|
15
|
+
MjEyYTI3ZDNhODY5MjMwYTY5YmExNWUwMmIyZjM5ZGEzY2ZkNWE=
|
data/README.md
CHANGED
@@ -159,7 +159,7 @@ message.post
|
|
159
159
|
|
160
160
|
Webhooks
|
161
161
|
-------
|
162
|
-
### POST to a URL when a recipient is blacklisted (i.e. to remove from your list)
|
162
|
+
### POST to a URL when a recipient is blacklisted (i.e. to remove from your list)
|
163
163
|
|
164
164
|
|
165
165
|
```ruby
|
@@ -209,7 +209,7 @@ Configuring 2-way SMS
|
|
209
209
|
---------------------
|
210
210
|
|
211
211
|
### Listing Command Types
|
212
|
-
Command Types are the available commands that can be used to respond to an incoming SMS message.
|
212
|
+
Command Types are the available commands that can be used to respond to an incoming SMS message.
|
213
213
|
|
214
214
|
```ruby
|
215
215
|
command_types = client.command_types.get
|
@@ -334,7 +334,7 @@ Running Tests
|
|
334
334
|
-------------
|
335
335
|
```ruby
|
336
336
|
appraisal install
|
337
|
-
# optionally specify an activesupport version to test against (
|
337
|
+
# optionally specify an activesupport version to test against (3/4), e.g.
|
338
338
|
# appraisal 4 rake ## for ruby 2.1.2
|
339
339
|
appraisal rake
|
340
340
|
```
|
data/govdelivery-tms.gemspec
CHANGED
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.add_runtime_dependency 'activesupport'
|
18
18
|
s.add_runtime_dependency 'faraday'
|
19
19
|
s.add_runtime_dependency 'faraday_middleware'
|
20
|
+
s.add_runtime_dependency 'mime-types', '2.99.2' # later versions require ruby>2
|
20
21
|
|
21
22
|
s.files = %w(
|
22
23
|
Gemfile
|
metadata
CHANGED
@@ -1,58 +1,72 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: govdelivery-tms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GovDelivery
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: faraday
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ! '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ! '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: faraday_middleware
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ! '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: mime-types
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.99.2
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.99.2
|
69
|
+
description: ! "A reference implementation, written in Ruby,\n to
|
56
70
|
interact with GovDelivery's TMS API. The client is\n compatible
|
57
71
|
with Ruby 1.9 and 2.0. "
|
58
72
|
email:
|
@@ -120,17 +134,17 @@ require_paths:
|
|
120
134
|
- lib
|
121
135
|
required_ruby_version: !ruby/object:Gem::Requirement
|
122
136
|
requirements:
|
123
|
-
- -
|
137
|
+
- - ! '>='
|
124
138
|
- !ruby/object:Gem::Version
|
125
139
|
version: '0'
|
126
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
141
|
requirements:
|
128
|
-
- -
|
142
|
+
- - ! '>='
|
129
143
|
- !ruby/object:Gem::Version
|
130
144
|
version: '0'
|
131
145
|
requirements: []
|
132
146
|
rubyforge_project:
|
133
|
-
rubygems_version: 2.
|
147
|
+
rubygems_version: 2.4.6
|
134
148
|
signing_key:
|
135
149
|
specification_version: 4
|
136
150
|
summary: A ruby client to interact with the GovDelivery TMS REST API.
|