mobile_text_alerts 0.1.0 → 0.2.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d2f42c2de5db446924cf72e5129385feee11e64d9c0e30386603b27f02ba2e6
4
- data.tar.gz: 8246ff5baa6fc2392eff5b9c0bd550f1fc6e9072bddb56d97299ada0b2034c7a
3
+ metadata.gz: 29f2ea29e77d73d649f3ff7ec24f74007281649b95bf961447742fad0c14f18f
4
+ data.tar.gz: bfee42f85d4fe50fc5bffef2fba033a122d3bf3e7e4ba4e1b49a65f33d0d43f3
5
5
  SHA512:
6
- metadata.gz: 02b9d63cb04323acacbeb2bf68d48e831b98d199dacadff31eefc8798b164b1700cd0228e6845111bf740d2c75cb372a7acfdc7dbaa901db835fa537a8d57a79
7
- data.tar.gz: 96ebea6bc51b9f64542735f27ce0a504ddb196fc6e5fd182900582218fd57f6d269c90f7cd46ca2c07c665482ae585826adf51b76cb0d4f177f174dbb674e979
6
+ metadata.gz: 66934f7af88388de38308e26812e229b51ba5b33125e7c00ae2a8d27476dccb7acb4d9f9c9c912ed7763d662f2178c300fe6eccc6ff210400f733e66e1086159
7
+ data.tar.gz: 81f4b5c02617a3f54b4c641fcdce849c6e15980cc67763bfae07d262d08380970e0e1ac41fbb327725c1c4b18be19695ec6bc781155d376eab360af40abc2095
data/Gemfile.lock CHANGED
@@ -2,45 +2,45 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  mobile_text_alerts (0.1.0)
5
- httparty (~> 0.18.1)
6
- json (~> 2.3, >= 2.3.1)
5
+ httparty (~> 0.20.0)
6
+ json (~> 2.6, >= 2.6.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- addressable (2.7.0)
11
+ addressable (2.8.0)
12
12
  public_suffix (>= 2.0.2, < 5.0)
13
13
  byebug (11.1.3)
14
- crack (0.4.3)
15
- safe_yaml (~> 1.0.0)
16
- diff-lcs (1.4.4)
14
+ crack (0.4.5)
15
+ rexml
16
+ diff-lcs (1.5.0)
17
17
  hashdiff (1.0.1)
18
- httparty (0.18.1)
18
+ httparty (0.20.0)
19
19
  mime-types (~> 3.0)
20
20
  multi_xml (>= 0.5.2)
21
- json (2.3.1)
22
- mime-types (3.3.1)
21
+ json (2.6.1)
22
+ mime-types (3.4.1)
23
23
  mime-types-data (~> 3.2015)
24
- mime-types-data (3.2020.0512)
24
+ mime-types-data (3.2021.1115)
25
25
  multi_xml (0.6.0)
26
26
  public_suffix (4.0.6)
27
27
  rake (12.3.3)
28
- rspec (3.9.0)
29
- rspec-core (~> 3.9.0)
30
- rspec-expectations (~> 3.9.0)
31
- rspec-mocks (~> 3.9.0)
32
- rspec-core (3.9.2)
33
- rspec-support (~> 3.9.3)
34
- rspec-expectations (3.9.2)
28
+ rexml (3.2.5)
29
+ rspec (3.10.0)
30
+ rspec-core (~> 3.10.0)
31
+ rspec-expectations (~> 3.10.0)
32
+ rspec-mocks (~> 3.10.0)
33
+ rspec-core (3.10.1)
34
+ rspec-support (~> 3.10.0)
35
+ rspec-expectations (3.10.1)
35
36
  diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.9.0)
37
- rspec-mocks (3.9.1)
37
+ rspec-support (~> 3.10.0)
38
+ rspec-mocks (3.10.2)
38
39
  diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.9.0)
40
- rspec-support (3.9.3)
41
- safe_yaml (1.0.5)
42
- webmock (3.8.3)
43
- addressable (>= 2.3.6)
40
+ rspec-support (~> 3.10.0)
41
+ rspec-support (3.10.3)
42
+ webmock (3.14.0)
43
+ addressable (>= 2.8.0)
44
44
  crack (>= 0.3.2)
45
45
  hashdiff (>= 0.4.0, < 2.0.0)
46
46
 
data/README.md CHANGED
@@ -38,6 +38,7 @@ The following examples assume that you've instantiated your MTA client.
38
38
  ```ruby
39
39
  client = MobileTextAlerts.new
40
40
  ```
41
+ **Note:** If you don't see what you're looking for below, please browse the files in the `lib/actions` directory as each method is well documented. Alternatively, check out the [Ruby Docs](https://www.rubydoc.info/github/jr180180/mobile_text_alerts/).
41
42
 
42
43
  ### SMS Messages
43
44
 
@@ -124,6 +125,14 @@ client.delete_member_via_number(phone_number)
124
125
  client.delete_member_via_email(email)
125
126
  ```
126
127
 
128
+ ### Todos
129
+
130
+ - Expand on the usage examples above
131
+ - Add actions for the following API endpoints:
132
+ - lulacash
133
+ - send_2fa
134
+ - check_2fa
135
+
127
136
  ## Development
128
137
 
129
138
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -141,3 +150,9 @@ The gem is available as open source under the terms of the [MIT License](https:/
141
150
  ## Code of Conduct
142
151
 
143
152
  Everyone interacting in the MobileTextAlerts project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jr180180/mobile_text_alerts/blob/master/CODE_OF_CONDUCT.md).
153
+
154
+ ## Support Development
155
+
156
+ If you're interested in supporting the development of this gem, please consider [signing up for Mobile-Text-Alerts.com through our referral link](https://mobile-text-alerts.com/a/1018713).
157
+
158
+ Development sponsored by [Passion Cafe](http://passion.cafe)
@@ -2,8 +2,6 @@ module MobileTextAlerts
2
2
  module Actions
3
3
  module Group
4
4
 
5
- # Todo - add specs for below actions
6
-
7
5
  # Add a group to your account.
8
6
  # @param [String] name
9
7
  # @param [String] keyword
@@ -1,3 +1,3 @@
1
1
  module MobileTextAlerts
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
@@ -24,8 +24,8 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.add_dependency 'httparty', '~> 0.18.1'
28
- spec.add_dependency 'json', '~> 2.3', '>= 2.3.1'
27
+ spec.add_dependency 'httparty', '~> 0.20.0'
28
+ spec.add_dependency 'json', '~> 2.6', '>= 2.6.1'
29
29
 
30
30
  spec.add_development_dependency 'rspec'
31
31
  spec.add_development_dependency 'webmock'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mobile_text_alerts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Sanchez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-05 00:00:00.000000000 Z
11
+ date: 2021-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -16,34 +16,34 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.18.1
19
+ version: 0.20.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
- version: 0.18.1
26
+ version: 0.20.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '2.3'
33
+ version: '2.6'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 2.3.1
36
+ version: 2.6.1
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - "~>"
42
42
  - !ruby/object:Gem::Version
43
- version: '2.3'
43
+ version: '2.6'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 2.3.1
46
+ version: 2.6.1
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rspec
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +136,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  - !ruby/object:Gem::Version
137
137
  version: '0'
138
138
  requirements: []
139
- rubygems_version: 3.1.2
139
+ rubyforge_project:
140
+ rubygems_version: 2.7.9
140
141
  signing_key:
141
142
  specification_version: 4
142
143
  summary: Ruby wrapper for the Mobile-Text-Alerts.com API