yatapp 0.5.3 → 0.5.4

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: b12a1257b937f74da0bf2c3f18e3bc7ea21e1dbc
4
- data.tar.gz: 31e98c114fc12650211a608426fbf455c5fe76d0
3
+ metadata.gz: 2a249b5fc32c1f49f433436623f3c5d9d761966e
4
+ data.tar.gz: b529a6dc36bcf54a685c9e628e87c8f35736bc3d
5
5
  SHA512:
6
- metadata.gz: 77b77d31c68566ca619acee60bd423703bf5f0005a0afdd7b0b917e831cedd48a3e68c0ed82daf3aec5d968652bcf22eb129f2e2dfa51e308f16056c4a3607b4
7
- data.tar.gz: d3306498e3ac160adb1f51c9964cd2aab520013aa2efaf474d4941141bd2e24dd4efcd940aa6b6cbe354cb198367104a80f158ff428e770c209b745fc73d7e91
6
+ metadata.gz: 6967be826d40b266444ff88be39c63e480dd0fb43255a77e5712fef6a36443db9b617716da46b15fb95148aea94f81e200fca4e627c83ebc7577960cb29a2454
7
+ data.tar.gz: 2966200ebf6f48c1c77b5ca34b78e56cb701e0a25874f18ee56cdd454bf793fba87e07ba059fd3466ac1e3b494723d4db3e4a2b7038e7bfc54cdaa0b29aa6c31
@@ -19,7 +19,7 @@ module Phoenix
19
19
 
20
20
  def initialize
21
21
  initialize_configuration
22
- @path = "ws://run.yatapp.net/socket/websocket?api_token=#{api_access_token}"
22
+ @path = "wss://run.yatapp.net/socket/websocket?api_token=#{api_access_token}"
23
23
  @topic = "translations:#{project_id}"
24
24
  @join_options = {}
25
25
  @connect_options = {}
@@ -96,7 +96,7 @@ module Phoenix
96
96
  end
97
97
 
98
98
  def connection_alive?
99
- @ws_thread&.alive? && !@dead
99
+ @ws_thread && @ws_thread.alive? && !@dead
100
100
  end
101
101
 
102
102
  def reset_state_conditions
@@ -1,3 +1,3 @@
1
1
  module Yatapp
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  end
@@ -4,7 +4,7 @@ module Yatapp
4
4
  class YataApiCaller
5
5
  API_VERSION = 'v1'
6
6
  API_END_POINT_URL = "/api/:api_version/project/:project_id/:lang/:format"
7
- API_BASE_URL = "http://run.yatapp.net"
7
+ API_BASE_URL = "https://run.yatapp.net"
8
8
 
9
9
  attr_accessor *Yatapp::Configuration::CONFIGURATION_OPTIONS
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yatapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - luki3k5
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-21 00:00:00.000000000 Z
11
+ date: 2019-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faye-websocket