portatext 1.5.8 → 1.5.9
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 +4 -4
- data/lib/portatext/command/api/gsm_charset.rb +17 -0
- data/lib/portatext.rb +1 -0
- data/portatext.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 588b7669ce7411ec68ba281ba5d41773e1ce7002
|
4
|
+
data.tar.gz: 2979378641406868aea61eecb9681b412a7c5edc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f679b21b2d56610e763e02b9f114731a344650f1e49c455a9d33caf2499dd89214ca53116187a55e72621411de21424b9c696d2c939f902b291b6f4bd3bbde8
|
7
|
+
data.tar.gz: 5a7b3e2919aa55be4c9311e5edd073497a83f6aa939753766c64144db6f9a44c15c7f415b9efaf06128655ccb12f08f5c718bbaaa597d29de43330e12a48a546
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module PortaText
|
2
|
+
module Command
|
3
|
+
module Api
|
4
|
+
# The gsm_charset endpoint.
|
5
|
+
# https://github.com/PortaText/docs/wiki/REST-API#api_gsm_charset
|
6
|
+
#
|
7
|
+
# Author:: Marcelo Gornstein (mailto:marcelog@portatext.com)
|
8
|
+
# Copyright:: Copyright (c) 2015 PortaText
|
9
|
+
# License:: Apache-2.0
|
10
|
+
class GsmCharset < Base
|
11
|
+
def endpoint(_method)
|
12
|
+
'gsm_charset'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/portatext.rb
CHANGED
@@ -44,6 +44,7 @@ require_relative 'portatext/command/api/operators'
|
|
44
44
|
require_relative 'portatext/command/api/destinations'
|
45
45
|
require_relative 'portatext/command/api/simulate'
|
46
46
|
require_relative 'portatext/command/api/summary'
|
47
|
+
require_relative 'portatext/command/api/gsm_charset'
|
47
48
|
|
48
49
|
# The PortaText namespace.
|
49
50
|
#
|
data/portatext.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: portatext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PortaText
|
@@ -151,6 +151,7 @@ files:
|
|
151
151
|
- lib/portatext/command/api/did_search.rb
|
152
152
|
- lib/portatext/command/api/did_settings.rb
|
153
153
|
- lib/portatext/command/api/email_verify.rb
|
154
|
+
- lib/portatext/command/api/gsm_charset.rb
|
154
155
|
- lib/portatext/command/api/inspect.rb
|
155
156
|
- lib/portatext/command/api/jobs.rb
|
156
157
|
- lib/portatext/command/api/me.rb
|