remocon 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1e9a56ef5554b17a03ae98b922f7e97976febca
4
- data.tar.gz: d19f3990a7453ec8bcbf9934260fe0b783645f20
3
+ metadata.gz: 0c79702f9f1b2f149cf70b67ad75502787d3602d
4
+ data.tar.gz: 072c77a91b9fd05e41434b3f98ad4171aba3e640
5
5
  SHA512:
6
- metadata.gz: 5420808ce826240856509947c16c68de6e3db4795d77d3cf38722b4a2181a7d6be756451ddebd7e8b6c18e9a7fcd53d52ad7376c2fcc272bdbcc22fba0a51d49
7
- data.tar.gz: e6b69061bc6093b098b9b1a4aacf588d5de01963e3145042da28b32518846e6fe402ebd88ec8b825b947910a83be7e77c9dc4772f6d63d964efb77988b8c893a
6
+ metadata.gz: a67a7225afe9bad7771de4fad15f814ce0ace4377969e506ef296744edb03db9176dae6ebe28b94eaf1cc70f1789638ef0023cc89a455222a16dfc9950136fcd
7
+ data.tar.gz: f295af07b3bd976cd35abbf331f32709a72a9a3dc41364e7ec872e70941137840e1f01b0fe65aaf6808f7925981af7909bf0af0f25d9c2cf63d015df9db554f7
data/Gemfile.lock CHANGED
@@ -1,9 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- remocon (0.3.0)
4
+ remocon (0.3.1)
5
5
  activesupport
6
- google-api-client (~> 0.11)
7
6
  googleauth
8
7
  thor
9
8
 
@@ -20,18 +19,9 @@ GEM
20
19
  ast (2.4.0)
21
20
  coderay (1.1.2)
22
21
  concurrent-ruby (1.0.5)
23
- declarative (0.0.10)
24
- declarative-option (0.1.0)
25
22
  diff-lcs (1.3)
26
23
  faraday (0.15.2)
27
24
  multipart-post (>= 1.2, < 3)
28
- google-api-client (0.23.4)
29
- addressable (~> 2.5, >= 2.5.1)
30
- googleauth (>= 0.5, < 0.7.0)
31
- httpclient (>= 2.8.1, < 3.0)
32
- mime-types (~> 3.0)
33
- representable (~> 3.0)
34
- retriable (>= 2.0, < 4.0)
35
25
  googleauth (0.6.4)
36
26
  faraday (~> 0.12)
37
27
  jwt (>= 1.4, < 3.0)
@@ -39,16 +29,12 @@ GEM
39
29
  multi_json (~> 1.11)
40
30
  os (>= 0.9, < 2.0)
41
31
  signet (~> 0.7)
42
- httpclient (2.8.3)
43
32
  i18n (1.1.0)
44
33
  concurrent-ruby (~> 1.0)
45
34
  jaro_winkler (1.5.1)
46
35
  jwt (2.1.0)
47
36
  memoist (0.16.0)
48
37
  method_source (0.9.0)
49
- mime-types (3.1)
50
- mime-types-data (~> 3.2015)
51
- mime-types-data (3.2016.0521)
52
38
  minitest (5.11.3)
53
39
  multi_json (1.13.1)
54
40
  multipart-post (2.0.0)
@@ -63,11 +49,6 @@ GEM
63
49
  public_suffix (3.0.2)
64
50
  rainbow (3.0.0)
65
51
  rake (10.5.0)
66
- representable (3.0.4)
67
- declarative (< 0.1.0)
68
- declarative-option (< 0.2.0)
69
- uber (< 0.2.0)
70
- retriable (3.1.2)
71
52
  rspec (3.8.0)
72
53
  rspec-core (~> 3.8.0)
73
54
  rspec-expectations (~> 3.8.0)
@@ -99,7 +80,6 @@ GEM
99
80
  thread_safe (0.3.6)
100
81
  tzinfo (1.2.5)
101
82
  thread_safe (~> 0.1)
102
- uber (0.1.0)
103
83
  unicode-display_width (1.4.0)
104
84
 
105
85
  PLATFORMS
@@ -15,7 +15,7 @@ module Remocon
15
15
 
16
16
  authorizer = Google::Auth::ServiceAccountCredentials.make_creds(
17
17
  json_key_io: File.open(config.service_json_file_path),
18
- scope: "https://www.googleapis.com/auth/firebase"
18
+ scope: "https://www.googleapis.com/auth/firebase.remoteconfig"
19
19
  )
20
20
 
21
21
  authorizer.fetch_access_token!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Remocon
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
data/lib/remocon.rb CHANGED
@@ -10,7 +10,6 @@ require "open-uri"
10
10
  require "fileutils"
11
11
  require "net/http"
12
12
  require "googleauth"
13
- require "google/apis/compute_v1"
14
13
 
15
14
  require "remocon/util/array"
16
15
  require "remocon/util/hash"
data/remocon.gemspec CHANGED
@@ -32,7 +32,6 @@ Gem::Specification.new do |spec|
32
32
  spec.require_paths = ["lib"]
33
33
 
34
34
  spec.add_dependency "activesupport"
35
- spec.add_dependency "google-api-client", "~> 0.11"
36
35
  spec.add_dependency "googleauth"
37
36
  spec.add_dependency "thor"
38
37
  spec.add_development_dependency "bundler", "~> 1.16"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remocon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jumpei Matsuda
8
8
  autorequire:
9
9
  bindir: cmd
10
10
  cert_chain: []
11
- date: 2018-08-09 00:00:00.000000000 Z
11
+ date: 2018-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: google-api-client
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '0.11'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.11'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: googleauth
43
29
  requirement: !ruby/object:Gem::Requirement