phraseapp-ruby 1.1.0 → 1.1.1
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/phraseapp-ruby.rb +4 -4
- data/lib/request_handler.rb +2 -2
- data/lib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06aca6b9128bb177087b5c87dedc6e91d967053b
|
|
4
|
+
data.tar.gz: 5300b1ad01c7e75be20e27ab384c294c4e6727a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2a3ff6c6bc25026d5454d724c49ab29617439288a0faa9a5d41a86b91c5bfe57dd72e2c2bf87c32df908c971488d492858c223e46f3c47899f8e6fc28766437
|
|
7
|
+
data.tar.gz: b67cd14e33eeb54d431beee10ac305b3a9bdc973f8d15df5b0e547fc3d020fdb225cfd2fcd9ce043e1a32e5fe3e9d71e009461ec9a25e5112c18b46452271301
|
data/lib/phraseapp-ruby.rb
CHANGED
|
@@ -896,7 +896,7 @@ module RequestParams
|
|
|
896
896
|
# LocaleFileImportParams
|
|
897
897
|
# == Parameters:
|
|
898
898
|
# convert_emoji::
|
|
899
|
-
# Indicates whether the file contains Emoji symbols that should be converted.
|
|
899
|
+
# Indicates whether the file contains Emoji symbols that should be converted. <a href="/guides/working-with-phraseapp/emoji-support/">Working with Emojis</a>.
|
|
900
900
|
# file::
|
|
901
901
|
# File to be imported
|
|
902
902
|
# file_format::
|
|
@@ -1179,13 +1179,13 @@ module RequestParams
|
|
|
1179
1179
|
# LocaleDownloadParams
|
|
1180
1180
|
# == Parameters:
|
|
1181
1181
|
# convert_emoji::
|
|
1182
|
-
# Indicates whether Emoji symbols should be converted to actual Emojis.
|
|
1182
|
+
# Indicates whether Emoji symbols should be converted to actual Emojis. <a href="/guides/working-with-phraseapp/emoji-support/">Working with Emojis</a>.
|
|
1183
1183
|
# encoding::
|
|
1184
|
-
# Specify an encoding for the locale file. See the format guide for a list of supported encodings for each format.
|
|
1184
|
+
# Specify an encoding for the locale file. See the <a href="/guides/formats">format guide</a> for a list of supported encodings for each format.
|
|
1185
1185
|
# file_format::
|
|
1186
1186
|
# File format name. See the format guide for all supported file formats.
|
|
1187
1187
|
# format_options::
|
|
1188
|
-
# Additional options
|
|
1188
|
+
# Additional formatting and render options. See the <a href="/guides/formats">format guide</a> for a list of options available for each format. Specify format options like this: <code>...&format_options[foo]=bar</code>
|
|
1189
1189
|
# include_empty_translations::
|
|
1190
1190
|
# Indicates whether keys without translations should be included in the output as well.
|
|
1191
1191
|
# keep_notranslate_tags::
|
data/lib/request_handler.rb
CHANGED
|
@@ -89,8 +89,8 @@ module PhraseApp
|
|
|
89
89
|
|
|
90
90
|
def self.send_request(credentials, method, path, ctype, data, status)
|
|
91
91
|
req = Net::HTTPGenericRequest.new(method,
|
|
92
|
-
|
|
93
|
-
|
|
92
|
+
Net::HTTP.const_get(method.capitalize).const_get(:REQUEST_HAS_BODY),
|
|
93
|
+
Net::HTTP.const_get(method.capitalize).const_get(:RESPONSE_HAS_BODY),
|
|
94
94
|
path)
|
|
95
95
|
|
|
96
96
|
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phraseapp-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PhraseApp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: PhraseApp API client libary
|
|
14
14
|
email:
|