caboose-cms 0.9.224 → 0.9.225
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 +4 -4
- data/app/controllers/caboose/checkout_controller.rb +1 -1
- data/lib/caboose/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a23fa53ff0699b384c57dcdc80f0f736a9f6694ff45f7873a204561d7428a8bb
|
|
4
|
+
data.tar.gz: 27fd72088dc361b586a85288bed0c171db33654948c08519351665c4abec44fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5dfdffa53ac05471ed38c4033b7addc140efda5ef614c1153deafa64847d75e89363e64aa02302f768496de44d0a87b0818637e269381d78066ca8ff8ef2163
|
|
7
|
+
data.tar.gz: 9937276c47dd84e93e70f99c04d383c4c639f5bf84e646e91acf2f4139b8a8d73b702b541821f37c2f4629cba29fa9d4b07a2ed719120fbb3f079cdc2022087b
|
|
@@ -211,7 +211,7 @@ module Caboose
|
|
|
211
211
|
|
|
212
212
|
@invoice.customer.create_variant_limits if @invoice.customer
|
|
213
213
|
|
|
214
|
-
# Make sure all the variants still exist
|
|
214
|
+
# Make sure all the variants still exist
|
|
215
215
|
@invoice.line_items.each do |li|
|
|
216
216
|
v = Variant.where(:id => li.variant_id).first
|
|
217
217
|
vl = VariantLimit.where(:variant_id => v.id, :user_id => @invoice.customer_id).first
|
data/lib/caboose/version.rb
CHANGED