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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35bffa2f4cac707d032ca4168fe9993d5b3dfa54
4
- data.tar.gz: 5071db640b2d775fd61713a21d2e8e0937275fef
3
+ metadata.gz: 588b7669ce7411ec68ba281ba5d41773e1ce7002
4
+ data.tar.gz: 2979378641406868aea61eecb9681b412a7c5edc
5
5
  SHA512:
6
- metadata.gz: 2eaab982ca696aa49f6bc1c42a43539dabf3a3f2a614f6b817b9d6d79c9638ab4625a068a93894d0cfafd5873b8eb6c2da24ac4c47fa0005106b99692e735182
7
- data.tar.gz: 87fe1d18768cabb99c2f6ecc4b42df089083a40e902d156a61c2d82cc1d3b0e6cdb2be2231f097ebd54712d11a19ebdcf83e7cfb9108b0abe41ae459eff4c9ff
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'portatext'
3
- s.version = '1.5.8'
3
+ s.version = '1.5.9'
4
4
  s.summary = 'Official PortaText API ruby client'
5
5
  s.description = 'This is the official PortaText API ruby client'
6
6
  s.authors = ['PortaText']
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.8
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