radar-api 2.9.2 → 2.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/gen/authentication_pb.rb +20 -0
- data/gen/authentication_services_pb.rb +23 -0
- data/gen/cei_pb.rb +18 -0
- data/gen/cei_services_pb.rb +1 -0
- data/gen/integration_pb.rb +78 -0
- data/gen/integration_services_pb.rb +26 -0
- data/gen/portfolios_pb.rb +47 -0
- data/gen/portfolios_services_pb.rb +4 -0
- data/gen/transaction_pb.rb +51 -0
- data/radar-api.gemspec +2 -1
- metadata +14 -10
- data/Gemfile.lock +0 -64
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c510ab960a00467e438f122e52bda4975fd2dafe327752571eb8e3ebbcf21ea3
|
4
|
+
data.tar.gz: b51a10c8627cb8e3bd6275f055e7d806ff1f3ee4d09f4123c3e36f12079089ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b4e1d1ea26aac852672f5a225392cdae50a9cc896e57c79019357df246c6c758c587076d0fc0a3e3ad9c9277fa4f82c181aabc0af2b82cc92a1017237e85fb4
|
7
|
+
data.tar.gz: 287fc3e39d5faaf230608d04bb0a8982bf1cde2f54591a0eea12c881313debfaac6be6f94257557c38b073ea53994c83cb7322a4c7fc04503f062f6b251778fa
|
@@ -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
|
data/gen/cei_pb.rb
CHANGED
@@ -42,6 +42,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
42
42
|
add_message "DefinePermanentPasswordResp" do
|
43
43
|
optional :permanent_password, :string, 1
|
44
44
|
end
|
45
|
+
add_message "LoginReq" do
|
46
|
+
optional :username, :string, 1
|
47
|
+
optional :password, :string, 2
|
48
|
+
end
|
49
|
+
add_message "LoginResp" do
|
50
|
+
optional :status, :enum, 1, "LoginResp.Status"
|
51
|
+
optional :error_message, :string, 2
|
52
|
+
map :cookies, :string, :string, 3
|
53
|
+
end
|
54
|
+
add_enum "LoginResp.Status" do
|
55
|
+
value :UNKNOWN, 0
|
56
|
+
value :SUCCESS, 1
|
57
|
+
value :USER_NOT_FOUND, 2
|
58
|
+
value :INVALID_PASSWORD, 3
|
59
|
+
end
|
45
60
|
end
|
46
61
|
end
|
47
62
|
|
@@ -55,3 +70,6 @@ RecoverPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("R
|
|
55
70
|
RecoverPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordResp").msgclass
|
56
71
|
DefinePermanentPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordReq").msgclass
|
57
72
|
DefinePermanentPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordResp").msgclass
|
73
|
+
LoginReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginReq").msgclass
|
74
|
+
LoginResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginResp").msgclass
|
75
|
+
LoginResp::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginResp.Status").enummodule
|
data/gen/cei_services_pb.rb
CHANGED
@@ -31,6 +31,7 @@ module Account
|
|
31
31
|
rpc :VerifyAccount, VerifyAccountReq, VerifyAccountResp
|
32
32
|
rpc :RecoverPassword, RecoverPasswordReq, RecoverPasswordResp
|
33
33
|
rpc :DefinePermanentPassword, DefinePermanentPasswordReq, DefinePermanentPasswordResp
|
34
|
+
rpc :Login, LoginReq, LoginResp
|
34
35
|
end
|
35
36
|
|
36
37
|
Stub = Service.rpc_stub_class
|
@@ -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
|
data/gen/portfolios_pb.rb
CHANGED
@@ -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
|
data/radar-api.gemspec
CHANGED
@@ -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.
|
4
|
+
version: 2.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Aizim Kelmanson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-09 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: '
|
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: '
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: guard-rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -75,24 +75,28 @@ 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/
|
92
96
|
licenses:
|
93
97
|
- MIT
|
94
98
|
metadata: {}
|
95
|
-
post_install_message:
|
99
|
+
post_install_message:
|
96
100
|
rdoc_options: []
|
97
101
|
require_paths:
|
98
102
|
- lib
|
@@ -109,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
113
|
version: '0'
|
110
114
|
requirements: []
|
111
115
|
rubygems_version: 3.0.6
|
112
|
-
signing_key:
|
116
|
+
signing_key:
|
113
117
|
specification_version: 4
|
114
118
|
summary: Radar API
|
115
119
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,64 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
radar-api (2.9.2)
|
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
|