spree_payment_calculator 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/spree_payment_calculator/engine.rb +15 -15
- metadata +2 -2
@@ -26,11 +26,11 @@ module SpreePaymentCalculator
|
|
26
26
|
end
|
27
27
|
app.config.spree.calculators.add_class('billing_integrations')
|
28
28
|
app.config.spree.calculators.billing_integrations = [
|
29
|
-
PaymentCalculator::PriceSack,
|
30
|
-
PaymentCalculator::FlatPercentItemTotal,
|
31
|
-
PaymentCalculator::FlatRate,
|
32
|
-
PaymentCalculator::FlexiRate,
|
33
|
-
PaymentCalculator::PerItem
|
29
|
+
Spree::PaymentCalculator::PriceSack,
|
30
|
+
Spree::PaymentCalculator::FlatPercentItemTotal,
|
31
|
+
Spree::PaymentCalculator::FlatRate,
|
32
|
+
Spree::PaymentCalculator::FlexiRate,
|
33
|
+
Spree::PaymentCalculator::PerItem
|
34
34
|
]
|
35
35
|
end
|
36
36
|
|
@@ -38,19 +38,19 @@ module SpreePaymentCalculator
|
|
38
38
|
app.config.spree.calculators.add_class('gateways')
|
39
39
|
|
40
40
|
app.config.spree.calculators.payment_methods = [
|
41
|
-
PaymentCalculator::PriceSack,
|
42
|
-
PaymentCalculator::FlatPercentItemTotal,
|
43
|
-
PaymentCalculator::FlatRate,
|
44
|
-
PaymentCalculator::FlexiRate,
|
45
|
-
PaymentCalculator::PerItem
|
41
|
+
Spree::PaymentCalculator::PriceSack,
|
42
|
+
Spree::PaymentCalculator::FlatPercentItemTotal,
|
43
|
+
Spree::PaymentCalculator::FlatRate,
|
44
|
+
Spree::PaymentCalculator::FlexiRate,
|
45
|
+
Spree::PaymentCalculator::PerItem
|
46
46
|
]
|
47
47
|
|
48
48
|
app.config.spree.calculators.gateways = [
|
49
|
-
PaymentCalculator::PriceSack,
|
50
|
-
PaymentCalculator::FlatPercentItemTotal,
|
51
|
-
PaymentCalculator::FlatRate,
|
52
|
-
PaymentCalculator::FlexiRate,
|
53
|
-
PaymentCalculator::PerItem
|
49
|
+
Spree::PaymentCalculator::PriceSack,
|
50
|
+
Spree::PaymentCalculator::FlatPercentItemTotal,
|
51
|
+
Spree::PaymentCalculator::FlatRate,
|
52
|
+
Spree::PaymentCalculator::FlexiRate,
|
53
|
+
Spree::PaymentCalculator::PerItem
|
54
54
|
]
|
55
55
|
end
|
56
56
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_payment_calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-07-
|
12
|
+
date: 2012-07-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: spree_core
|