bucket_cake 3.1.0 → 4.0.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22f025faf42512d5898c9e5937c839072bd92bd5
|
4
|
+
data.tar.gz: 7f22328a60b9880adf55053dc8d88c9d2445128c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 001b1b56fa08f99116250c2a0b102c9cd5a83973a3d4fd28a1647b85eb76962edd0b0cebc675901e223fd7bb2942e370eee66f5d979f57f908536449a3e507e8
|
7
|
+
data.tar.gz: f0952ab6ae93dfa002d4ec0d3e08908d98358241b14a4adbf05aa90c1374cc6b0c8d0bb42af9959215c315d9da5f44efb7510cd1f8d557d1b97685d594a57189
|
data/lib/bucket_cake.rb
CHANGED
@@ -33,7 +33,8 @@ module Cakeproto
|
|
33
33
|
optional ::Cakeproto::TimeWithZone, :start_date, 10
|
34
34
|
optional ::Cakeproto::TimeWithZone, :end_date, 11
|
35
35
|
optional :int64, :current, 12
|
36
|
-
optional
|
36
|
+
optional ::Cakeproto::MaybeInt, :limit, 14
|
37
|
+
optional :int64, :limit_DEPRECATED, 13
|
37
38
|
end
|
38
39
|
|
39
40
|
end
|
@@ -27,6 +27,7 @@ module Cakeproto
|
|
27
27
|
class Upsell < ::Protobuf::Message; end
|
28
28
|
class ExchangeRate < ::Protobuf::Message; end
|
29
29
|
class Disposition < ::Protobuf::Message; end
|
30
|
+
class MaybeInt < ::Protobuf::Message; end
|
30
31
|
|
31
32
|
|
32
33
|
##
|
@@ -172,5 +173,10 @@ module Cakeproto
|
|
172
173
|
optional ::Cakeproto::TimeWithZone, :disposition_date, 5
|
173
174
|
end
|
174
175
|
|
176
|
+
class MaybeInt
|
177
|
+
optional :int64, :value, 1
|
178
|
+
optional :bool, :has_value, 2
|
179
|
+
end
|
180
|
+
|
175
181
|
end
|
176
182
|
|
data/lib/bucket_cake/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bucket_cake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ad2games developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|
@@ -172,6 +172,7 @@ files:
|
|
172
172
|
- lib/bucket_cake/proto/conversions.pb.rb
|
173
173
|
- lib/bucket_cake/proto/creatives.pb.rb
|
174
174
|
- lib/bucket_cake/proto/offers.pb.rb
|
175
|
+
- lib/bucket_cake/proto_ext/maybe_int.rb
|
175
176
|
- lib/bucket_cake/proto_ext/time_with_zone.rb
|
176
177
|
- lib/bucket_cake/source.rb
|
177
178
|
- lib/bucket_cake/values.rb
|