radar-api 2.9.1 → 2.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e8e1d25c7234bda739148ffaeff2be6b32e7aa2f3f0bc29bea6a0420ca7daa4
4
- data.tar.gz: 29a74bccb58dc87233c75a8014c9ee8893d1f9e7a0c45379c18973e6e6f3b3f9
3
+ metadata.gz: d68fbefc7c20b3a7028432912095ffd5d6c65a1803ac1e5b6c29160bf09e43cf
4
+ data.tar.gz: 0b26162eba63a9908d4b083f12e917ca4fb5dff28f340dfdfa92eb9bcf8a3c34
5
5
  SHA512:
6
- metadata.gz: 7e6334efdca3e603f316744bda12145b67bf1b2995ccf2dd556f57d9e773ee3f842b133ddf377ec7e58e5aed2b63733b6d3f7a22b1f985e1626820ce9e625d0d
7
- data.tar.gz: 715a05065c71e764ecd9c402ebf6c328b6ca8c2b115dd071635e874b4814bc89d7d37561026acf88d7d419d5cd086511b2bb7e1afa4f9b4a948c226817f1ba60
6
+ metadata.gz: 9840e81fec4640d27127e828c79285ec1ea9a444d1c1dbb080ba4e3eca7dcc906a1ec2787c50282b9b7bb21703c272b3c2a79d899f974a9d1f9d909417a80bce
7
+ data.tar.gz: d432d5f7bb8f26eccb1a1a29cb357f2f65c11d48de53b66a5caac5ae57c90f599dfa7f16dc7ca978a0c4b8e7cab8c6c9c753a7a1deaf67347a32e350a1f66df7
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: authentication.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("authentication.proto", :syntax => :proto3) do
8
+ add_message "Radar.TempCreateFirebaseUserReq" do
9
+ optional :user_id, :string, 1
10
+ optional :firebase_password, :string, 2
11
+ end
12
+ add_message "Radar.TempCreateFirebaseUserResp" do
13
+ end
14
+ end
15
+ end
16
+
17
+ module Radar
18
+ TempCreateFirebaseUserReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.TempCreateFirebaseUserReq").msgclass
19
+ TempCreateFirebaseUserResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.TempCreateFirebaseUserResp").msgclass
20
+ end
@@ -0,0 +1,23 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: authentication.proto for package 'Radar'
3
+
4
+ require 'grpc'
5
+ require 'authentication_pb'
6
+
7
+ module Radar
8
+ module Authentication
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'Radar.Authentication'
16
+
17
+ # Isso deve ser substituído por uma criação de usuário do sistema
18
+ rpc :TempCreateFirebaseUser, TempCreateFirebaseUserReq, TempCreateFirebaseUserResp
19
+ end
20
+
21
+ Stub = Service.rpc_stub_class
22
+ end
23
+ end
@@ -12,6 +12,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
12
12
  optional :text, :string, 1
13
13
  map :cookies, :string, :string, 2
14
14
  end
15
+ add_message "AuthenticateReq" do
16
+ optional :username, :string, 1
17
+ optional :password, :string, 2
18
+ optional :partial_email, :string, 3
19
+ end
20
+ add_message "AuthenticateResp" do
21
+ optional :user_full_name, :string, 1
22
+ optional :user_full_email, :string, 2
23
+ end
15
24
  add_message "VerifyAccountReq" do
16
25
  optional :username, :string, 1
17
26
  optional :birthdate, :message, 2, "google.protobuf.Timestamp"
@@ -38,6 +47,8 @@ end
38
47
 
39
48
  SolveReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveReq").msgclass
40
49
  SolveResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveResp").msgclass
50
+ AuthenticateReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("AuthenticateReq").msgclass
51
+ AuthenticateResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("AuthenticateResp").msgclass
41
52
  VerifyAccountReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountReq").msgclass
42
53
  VerifyAccountResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountResp").msgclass
43
54
  RecoverPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordReq").msgclass
@@ -27,6 +27,7 @@ module Account
27
27
  self.unmarshal_class_method = :decode
28
28
  self.service_name = 'Account'
29
29
 
30
+ rpc :Authenticate, AuthenticateReq, AuthenticateResp
30
31
  rpc :VerifyAccount, VerifyAccountReq, VerifyAccountResp
31
32
  rpc :RecoverPassword, RecoverPasswordReq, RecoverPasswordResp
32
33
  rpc :DefinePermanentPassword, DefinePermanentPasswordReq, DefinePermanentPasswordResp
@@ -0,0 +1,78 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: integration.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ require 'transaction_pb'
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_file("integration.proto", :syntax => :proto3) do
10
+ add_message "Radar.IntegrationStatusReq" do
11
+ optional :status, :enum, 1, "Radar.IntegrationStatus"
12
+ optional :user_id, :string, 2
13
+ end
14
+ add_message "Radar.IntegrationStatusResp" do
15
+ end
16
+ add_message "Radar.IntegrationReq" do
17
+ optional :username, :string, 1
18
+ optional :password, :string, 2
19
+ optional :user_id, :string, 3
20
+ optional :last_fetch_date, :string, 4
21
+ end
22
+ add_message "Radar.IntegrationResp" do
23
+ repeated :transactions, :message, 1, "Radar.Transaction"
24
+ optional :user_id, :string, 2
25
+ end
26
+ add_message "Radar.PersistTransactionsReq" do
27
+ optional :username, :string, 1
28
+ optional :password, :string, 2
29
+ optional :user_id, :string, 3
30
+ repeated :transactions, :message, 4, "Radar.Transaction"
31
+ end
32
+ add_message "Radar.PersistTransactionsResp" do
33
+ optional :status, :enum, 1, "Radar.IntegrationStatus"
34
+ end
35
+ add_message "Radar.IntegrationStepReq" do
36
+ optional :step, :enum, 1, "Radar.IntegrationStep"
37
+ optional :user_id, :string, 2
38
+ end
39
+ add_message "Radar.IntegrationStepResp" do
40
+ end
41
+ add_message "Radar.BackReq" do
42
+ optional :calendar_id, :string, 1
43
+ optional :date, :message, 2, "google.protobuf.Timestamp"
44
+ optional :amount, :int32, 3
45
+ end
46
+ add_message "Radar.BackResp" do
47
+ optional :date, :message, 1, "google.protobuf.Timestamp"
48
+ end
49
+ add_enum "Radar.IntegrationStatus" do
50
+ value :IDLE, 0
51
+ value :NOT_STARTED, 1
52
+ value :INTEGRATING, 2
53
+ value :COMPLETED, 3
54
+ value :FAILED, 4
55
+ value :WRONG_PASSWORD, 5
56
+ end
57
+ add_enum "Radar.IntegrationStep" do
58
+ value :AUTHENTICATING, 0
59
+ value :EXTRACTING_POSITIONS_SNAPSHOT, 1
60
+ value :EXTRACTING_TRANSACTIONS, 2
61
+ end
62
+ end
63
+ end
64
+
65
+ module Radar
66
+ IntegrationStatusReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStatusReq").msgclass
67
+ IntegrationStatusResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStatusResp").msgclass
68
+ IntegrationReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationReq").msgclass
69
+ IntegrationResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationResp").msgclass
70
+ PersistTransactionsReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.PersistTransactionsReq").msgclass
71
+ PersistTransactionsResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.PersistTransactionsResp").msgclass
72
+ IntegrationStepReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStepReq").msgclass
73
+ IntegrationStepResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStepResp").msgclass
74
+ BackReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.BackReq").msgclass
75
+ BackResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.BackResp").msgclass
76
+ IntegrationStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStatus").enummodule
77
+ IntegrationStep = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.IntegrationStep").enummodule
78
+ end
@@ -0,0 +1,26 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: integration.proto for package 'Radar'
3
+
4
+ require 'grpc'
5
+ require 'integration_pb'
6
+
7
+ module Radar
8
+ module Integration
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'Radar.Integration'
16
+
17
+ rpc :PersistTransactions, PersistTransactionsReq, PersistTransactionsResp
18
+ rpc :Start, IntegrationReq, IntegrationResp
19
+ rpc :Status, IntegrationStatusReq, IntegrationStatusResp
20
+ rpc :Step, IntegrationStepReq, IntegrationStepResp
21
+ rpc :Back, BackReq, BackResp
22
+ end
23
+
24
+ Stub = Service.rpc_stub_class
25
+ end
26
+ end
@@ -4,6 +4,8 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  require 'google/protobuf/timestamp_pb'
7
+ require 'google/protobuf/wrappers_pb'
8
+ require 'transaction_pb'
7
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
10
  add_file("portfolios.proto", :syntax => :proto3) do
9
11
  add_message "Radar.EquitySource" do
@@ -48,6 +50,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
48
50
  add_message "Radar.Event.Portfolio" do
49
51
  repeated :position, :message, 1, "Radar.Event.Portfolio.Position"
50
52
  repeated :provision, :message, 2, "Radar.Event.Portfolio.Provision"
53
+ optional :rate_of_return, :double, 3
51
54
  end
52
55
  add_message "Radar.Event.Portfolio.Position" do
53
56
  optional :id, :string, 1
@@ -103,6 +106,42 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
103
106
  value :EACH_DAY, 1
104
107
  value :EACH_MONTH, 2
105
108
  end
109
+ add_message "Radar.GetInitialTaxCreditReq" do
110
+ optional :user_id, :string, 1
111
+ optional :portfolio_id, :string, 2
112
+ end
113
+ add_message "Radar.GetInitialTaxCreditResp" do
114
+ optional :swing_trade, :message, 1, "google.protobuf.DoubleValue"
115
+ optional :day_trade, :message, 2, "google.protobuf.DoubleValue"
116
+ optional :reit, :message, 3, "google.protobuf.DoubleValue"
117
+ end
118
+ add_message "Radar.SetInitialTaxCreditReq" do
119
+ optional :user_id, :string, 1
120
+ optional :portfolio_id, :string, 2
121
+ optional :swing_trade, :message, 3, "google.protobuf.DoubleValue"
122
+ optional :day_trade, :message, 4, "google.protobuf.DoubleValue"
123
+ optional :reit, :message, 5, "google.protobuf.DoubleValue"
124
+ end
125
+ add_message "Radar.SetInitialTaxCreditResp" do
126
+ optional :swing_trade, :message, 1, "google.protobuf.DoubleValue"
127
+ optional :day_trade, :message, 2, "google.protobuf.DoubleValue"
128
+ optional :reit, :message, 3, "google.protobuf.DoubleValue"
129
+ end
130
+ add_message "Radar.GetPositionSnapshotsReq" do
131
+ optional :user_id, :string, 1
132
+ optional :portfolio_id, :string, 2
133
+ end
134
+ add_message "Radar.GetPositionSnapshotsResp" do
135
+ repeated :position_snapshots, :message, 1, "Radar.EquityPositionSnapshot"
136
+ end
137
+ add_message "Radar.SetPositionSnapshotsReq" do
138
+ optional :user_id, :string, 1
139
+ optional :portfolio_id, :string, 2
140
+ repeated :position_snapshots, :message, 3, "Radar.EquityPositionSnapshot"
141
+ end
142
+ add_message "Radar.SetPositionSnapshotsResp" do
143
+ repeated :position_snapshots, :message, 1, "Radar.EquityPositionSnapshot"
144
+ end
106
145
  end
107
146
  end
108
147
 
@@ -126,4 +165,12 @@ module Radar
126
165
  Event::EquityType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.EquityType").enummodule
127
166
  RunReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.RunReq").msgclass
128
167
  RunReq::Event = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.RunReq.Event").enummodule
168
+ GetInitialTaxCreditReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.GetInitialTaxCreditReq").msgclass
169
+ GetInitialTaxCreditResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.GetInitialTaxCreditResp").msgclass
170
+ SetInitialTaxCreditReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.SetInitialTaxCreditReq").msgclass
171
+ SetInitialTaxCreditResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.SetInitialTaxCreditResp").msgclass
172
+ GetPositionSnapshotsReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.GetPositionSnapshotsReq").msgclass
173
+ GetPositionSnapshotsResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.GetPositionSnapshotsResp").msgclass
174
+ SetPositionSnapshotsReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.SetPositionSnapshotsReq").msgclass
175
+ SetPositionSnapshotsResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.SetPositionSnapshotsResp").msgclass
129
176
  end
@@ -15,6 +15,10 @@ module Radar
15
15
  self.service_name = 'Radar.Portfolios'
16
16
 
17
17
  rpc :Run, RunReq, stream(Event)
18
+ rpc :GetInitialTaxCredit, GetInitialTaxCreditReq, GetInitialTaxCreditResp
19
+ rpc :SetInitialTaxCredit, SetInitialTaxCreditReq, SetInitialTaxCreditResp
20
+ rpc :GetPositionSnapshots, GetPositionSnapshotsReq, GetPositionSnapshotsResp
21
+ rpc :SetPositionSnapshots, SetPositionSnapshotsReq, SetPositionSnapshotsResp
18
22
  end
19
23
 
20
24
  Stub = Service.rpc_stub_class
@@ -0,0 +1,51 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: transaction.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ require 'google/protobuf/wrappers_pb'
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_file("transaction.proto", :syntax => :proto3) do
10
+ add_message "Radar.EquityBuy" do
11
+ optional :date, :message, 1, "google.protobuf.Timestamp"
12
+ optional :equity_id, :string, 2
13
+ optional :shares, :int32, 3
14
+ optional :price, :double, 4
15
+ end
16
+ add_message "Radar.EquitySell" do
17
+ optional :date, :message, 1, "google.protobuf.Timestamp"
18
+ optional :equity_id, :string, 2
19
+ optional :shares, :int32, 3
20
+ optional :price, :double, 4
21
+ end
22
+ add_message "Radar.EquityPositionSnapshot" do
23
+ optional :date, :message, 1, "google.protobuf.Timestamp"
24
+ optional :equity_id, :string, 2
25
+ optional :shares, :int32, 3
26
+ optional :price, :message, 4, "google.protobuf.DoubleValue"
27
+ end
28
+ add_message "Radar.OptionExercise" do
29
+ optional :date, :message, 1, "google.protobuf.Timestamp"
30
+ optional :option_id, :string, 2
31
+ optional :shares, :int32, 3
32
+ optional :strike, :double, 4
33
+ end
34
+ add_message "Radar.Transaction" do
35
+ oneof :transaction_oneof do
36
+ optional :equity_buy, :message, 1, "Radar.EquityBuy"
37
+ optional :equity_sell, :message, 2, "Radar.EquitySell"
38
+ optional :equity_position_snapshot, :message, 3, "Radar.EquityPositionSnapshot"
39
+ optional :option_exercise, :message, 4, "Radar.OptionExercise"
40
+ end
41
+ end
42
+ end
43
+ end
44
+
45
+ module Radar
46
+ EquityBuy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.EquityBuy").msgclass
47
+ EquitySell = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.EquitySell").msgclass
48
+ EquityPositionSnapshot = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.EquityPositionSnapshot").msgclass
49
+ OptionExercise = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.OptionExercise").msgclass
50
+ Transaction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Transaction").msgclass
51
+ end
@@ -17,7 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ["lib", "gen"]
19
19
 
20
- spec.add_development_dependency "bundler", "~> 1.5"
20
+ # spec.add_development_dependency "bundler", "~> 1.5"
21
+ spec.add_development_dependency "bundler"
21
22
  spec.add_development_dependency "guard-rake", "0.0.9"
22
23
  spec.add_development_dependency "grpc-tools", "~> 1.27.0"
23
24
  spec.add_dependency "grpc"
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radar-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.1
4
+ version: 2.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Aizim Kelmanson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-08 00:00:00.000000000 Z
11
+ date: 2020-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.5'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.5'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: guard-rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -75,17 +75,21 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - ".rake_tasks~"
77
77
  - Gemfile
78
- - Gemfile.lock
79
78
  - Guardfile
80
79
  - LICENSE.txt
81
80
  - README.md
82
81
  - Rakefile
82
+ - gen/authentication_pb.rb
83
+ - gen/authentication_services_pb.rb
83
84
  - gen/cei_pb.rb
84
85
  - gen/cei_services_pb.rb
85
86
  - gen/exporter_pb.rb
86
87
  - gen/exporter_services_pb.rb
88
+ - gen/integration_pb.rb
89
+ - gen/integration_services_pb.rb
87
90
  - gen/portfolios_pb.rb
88
91
  - gen/portfolios_services_pb.rb
92
+ - gen/transaction_pb.rb
89
93
  - lib/radar-api.rb
90
94
  - radar-api.gemspec
91
95
  homepage: http://www.investtools.com.br/
@@ -108,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
112
  - !ruby/object:Gem::Version
109
113
  version: '0'
110
114
  requirements: []
111
- rubygems_version: 3.0.6
115
+ rubygems_version: 3.0.8
112
116
  signing_key:
113
117
  specification_version: 4
114
118
  summary: Radar API
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- radar-api (2.9.1)
5
- grpc
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- celluloid (0.15.2)
11
- timers (~> 1.1.0)
12
- celluloid-io (0.15.0)
13
- celluloid (>= 0.15.0)
14
- nio4r (>= 0.5.0)
15
- coderay (1.1.0)
16
- ffi (1.11.1)
17
- formatador (0.2.4)
18
- google-protobuf (3.12.2)
19
- googleapis-common-protos-types (1.0.5)
20
- google-protobuf (~> 3.11)
21
- grpc (1.30.1)
22
- google-protobuf (~> 3.12)
23
- googleapis-common-protos-types (~> 1.0)
24
- grpc-tools (1.27.0)
25
- guard (2.6.0)
26
- formatador (>= 0.2.4)
27
- listen (~> 2.7)
28
- lumberjack (~> 1.0)
29
- pry (>= 0.9.12)
30
- thor (>= 0.18.1)
31
- guard-rake (0.0.9)
32
- guard
33
- rake
34
- listen (2.7.1)
35
- celluloid (>= 0.15.2)
36
- celluloid-io (>= 0.15.0)
37
- rb-fsevent (>= 0.9.3)
38
- rb-inotify (>= 0.9)
39
- lumberjack (1.0.5)
40
- method_source (0.8.2)
41
- nio4r (1.2.1)
42
- pry (0.9.12.6)
43
- coderay (~> 1.0)
44
- method_source (~> 0.8)
45
- slop (~> 3.4)
46
- rake (13.0.1)
47
- rb-fsevent (0.9.4)
48
- rb-inotify (0.9.3)
49
- ffi (>= 0.5.0)
50
- slop (3.5.0)
51
- thor (0.19.1)
52
- timers (1.1.0)
53
-
54
- PLATFORMS
55
- ruby
56
-
57
- DEPENDENCIES
58
- bundler (~> 1.5)
59
- grpc-tools (~> 1.27.0)
60
- guard-rake (= 0.0.9)
61
- radar-api!
62
-
63
- BUNDLED WITH
64
- 1.17.3