lingohub 0.6.1 → 0.7.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: 8e714a52b6de55c4e5cc49d9638f624c69e31db00a4b764ac7f6747dfdc4c20e
4
- data.tar.gz: 01dac716390a72b91b8408359faabeec767d91427dc4c9b211026ec744c2f165
3
+ metadata.gz: e120beb1aae7f2679e0fc7403357579c9b077bfad7dd7346cc1ac2727405ff23
4
+ data.tar.gz: d85ea619fed1f1d1b4d9aa2ede5c8fa8b0666a9b8e976cc9b644302619b76b15
5
5
  SHA512:
6
- metadata.gz: 86cdc688619ee5608e911d99da6be9691f7928ea634ed175b568f5d6d3711db4c5a687b0c89cea8f2b30d95a1298bcc0b26302ea2d60839ad0c9e9a434aa519e
7
- data.tar.gz: 30db4c51e63c2d4ec1348401941675edb690a14bc4a6e2c9a2e0e40c448a02ee245246800e3863627c9b1fcf1877656099054772b02f2bfb5bd1cbe6cde7d93b
6
+ metadata.gz: df76167cb4d5b9c16908806aa7342707717da80ade757c754d57481267203f989ee493270339e743953bf7d11174cde670316108c791b0e9b64ff17662c533c2
7
+ data.tar.gz: 78686562a4e83423113c9443b24c30093e18d1904e15fecdf1dbe752deeca42de943f242e1675025ea755820e55d10c30c98eecb4c87cdb9d838df897c889338
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.7.0
2
+
3
+ * updates to Ruby 3.2.2
4
+
5
+
1
6
  ## 0.6.1
2
7
 
3
8
  * removed unused method which generates chdir warnings
@@ -50,7 +50,7 @@ module Lingohub::Command
50
50
  end
51
51
 
52
52
  def read_credentials
53
- File.exists?(credentials_file) and File.read(credentials_file).split("\n")
53
+ File.exist?(credentials_file) and File.read(credentials_file).split("\n")
54
54
  end
55
55
 
56
56
  def echo_off
@@ -51,7 +51,7 @@ module Lingohub
51
51
  end
52
52
 
53
53
  def upload_resource(file, locale, strategy_parameters = {}, path)
54
- raise "Path #{file} does not exists" unless File.exists?(file)
54
+ raise "Path #{file} does not exists" unless File.exist?(file)
55
55
  request = { :file => File.new(file, "rb") }
56
56
  request.merge!({ :iso2_slug => locale }) if locale
57
57
  request.merge!({ :path => path }) if path
@@ -1,4 +1,4 @@
1
1
  module Lingohub
2
- VERSION = '0.6.1'
2
+ VERSION = '0.7.0'
3
3
  API_VERSION = 'v1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lingohub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lingohub GmbH
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-02 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -99,7 +99,7 @@ files:
99
99
  homepage: https://lingohub.com
100
100
  licenses: []
101
101
  metadata: {}
102
- post_install_message:
102
+ post_install_message:
103
103
  rdoc_options: []
104
104
  require_paths:
105
105
  - lib
@@ -114,8 +114,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
114
  - !ruby/object:Gem::Version
115
115
  version: '0'
116
116
  requirements: []
117
- rubygems_version: 3.0.1
118
- signing_key:
117
+ rubygems_version: 3.2.3
118
+ signing_key:
119
119
  specification_version: 4
120
120
  summary: Client library and command-line tool to translate Ruby based apps with lingohub.
121
121
  test_files: []