effective_orders 5.0.4 → 5.0.5
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 195cc9c586145c7c43e3765a482e6f843926b9beb4043e437960602cec6dc87d
|
|
4
|
+
data.tar.gz: 5feb696f017b304b3ce0f4cb63eb529cbbcb61616822af3ce97b405caa68f149
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 559e82ca80af432a84c99fadfe16ebf413f7c39725ba652568828f88cd91a4e1853adf86e327feb06df9b7e6a9e2916be3b96519847b905fef7b09162415f4cb
|
|
7
|
+
data.tar.gz: 4bc2f1e00f75619f168c76d6d8b4a2716baee26dc6fe734bea1b7ff35faf781a4a33f908175e472f62032196a077baf1c5c84ab2f0366dbf1ca0012466936732
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//= link_directory ../images/effective_orders
|
|
@@ -15,11 +15,11 @@ class Admin::EffectiveOrdersDatatable < Effective::Datatable
|
|
|
15
15
|
|
|
16
16
|
filters do
|
|
17
17
|
unless attributes[:skip_filters]
|
|
18
|
-
scope :
|
|
18
|
+
scope :all
|
|
19
|
+
scope :purchased
|
|
19
20
|
scope :deferred
|
|
20
21
|
scope :refunds
|
|
21
22
|
scope :not_purchased
|
|
22
|
-
scope :all
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
|
|
@@ -16,8 +16,8 @@ module EffectiveOrders
|
|
|
16
16
|
eval File.read("#{config.root}/config/effective_orders.rb")
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
initializer
|
|
20
|
-
|
|
19
|
+
initializer 'effective_orders.assets' do |app|
|
|
20
|
+
app.config.assets.precompile += ['effective_orders_manifest.js', 'effective_orders/*']
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
initializer 'effective_orders.refund', after: :load_config_initializers do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: effective_orders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Code and Effect
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -118,6 +118,7 @@ extra_rdoc_files: []
|
|
|
118
118
|
files:
|
|
119
119
|
- MIT-LICENSE
|
|
120
120
|
- README.md
|
|
121
|
+
- app/assets/config/effective_orders_manifest.js
|
|
121
122
|
- app/assets/images/effective_orders/stripe.png
|
|
122
123
|
- app/assets/javascripts/effective_orders.js
|
|
123
124
|
- app/assets/javascripts/effective_orders/customers.js.coffee
|