effective_orders 3.2.0 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2452332fcebd03986bf33bd266f0a4f59002fcd24dd9734085cd341e1f32afa6
|
4
|
+
data.tar.gz: d11d5da4657bed64443d42a7cb7b6fc3eb79c2eb832d97b84ceb5bc2ffa20c62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aac4714aaab0a7d4cd86b2b7e3496719a7d63b00844181ee25c25c1c92a2ff5e48f8e37a110d060af48aab3ab782f1bbcb17e42cab451d0204c4182bfca87d5b
|
7
|
+
data.tar.gz: 20de7342f472d9b57a983fdc318c6bb90d6740d6d080c896c36928d9255b520e6a87de43d69a3322af83813f0a512c9699735c2411c7df46441b42f93555566f
|
File without changes
|
@@ -2,7 +2,7 @@ module EffectiveOrders
|
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
engine_name 'effective_orders'
|
4
4
|
|
5
|
-
config.autoload_paths += Dir["#{config.root}/app/models/**/"]
|
5
|
+
#config.autoload_paths += Dir["#{config.root}/app/models/**/"]
|
6
6
|
|
7
7
|
# Include acts_as_addressable concern and allow any ActiveRecord object to call it
|
8
8
|
initializer 'effective_orders.active_record' do |app|
|
@@ -18,6 +18,10 @@ module EffectiveOrders
|
|
18
18
|
eval File.read("#{config.root}/config/effective_orders.rb")
|
19
19
|
end
|
20
20
|
|
21
|
+
initializer 'effective_orders.assets' do |app|
|
22
|
+
app.config.assets.precompile += ['effective_orders_manifest.js', 'effective_orders/*']
|
23
|
+
end
|
24
|
+
|
21
25
|
# Set up mail delivering config option
|
22
26
|
initializer 'effective_orders.mailer', after: :load_config_initializers do |app|
|
23
27
|
deliver_method = Rails.gem_version >= Gem::Version.new('4.2') ? :deliver_now : :deliver
|
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: 3.2.
|
4
|
+
version: 3.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -119,6 +119,7 @@ files:
|
|
119
119
|
- MIT-LICENSE
|
120
120
|
- README.md
|
121
121
|
- Rakefile
|
122
|
+
- app/assets/config/effective_orders_manifest.js
|
122
123
|
- app/assets/images/effective_orders/stripe_connect.png
|
123
124
|
- app/assets/javascripts/effective_orders.js
|
124
125
|
- app/assets/javascripts/effective_orders/customers.js.coffee
|
@@ -169,10 +170,10 @@ files:
|
|
169
170
|
- app/models/effective/providers/ccbill_postback.rb
|
170
171
|
- app/models/effective/providers/moneris_charge.rb
|
171
172
|
- app/models/effective/providers/stripe_charge.rb
|
173
|
+
- app/models/effective/sold_out_validator.rb
|
172
174
|
- app/models/effective/subscripter.rb
|
173
175
|
- app/models/effective/subscription.rb
|
174
176
|
- app/models/effective/tax_rate_calculator.rb
|
175
|
-
- app/models/validators/effective/sold_out_validator.rb
|
176
177
|
- app/views/admin/customers/_actions.html.haml
|
177
178
|
- app/views/admin/customers/index.html.haml
|
178
179
|
- app/views/admin/customers/show.html.haml
|
@@ -255,7 +256,7 @@ homepage: https://github.com/code-and-effect/effective_orders
|
|
255
256
|
licenses:
|
256
257
|
- MIT
|
257
258
|
metadata: {}
|
258
|
-
post_install_message:
|
259
|
+
post_install_message:
|
259
260
|
rdoc_options: []
|
260
261
|
require_paths:
|
261
262
|
- lib
|
@@ -270,8 +271,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
271
|
- !ruby/object:Gem::Version
|
271
272
|
version: '0'
|
272
273
|
requirements: []
|
273
|
-
rubygems_version: 3.
|
274
|
-
signing_key:
|
274
|
+
rubygems_version: 3.1.2
|
275
|
+
signing_key:
|
275
276
|
specification_version: 4
|
276
277
|
summary: Quickly build an online store with carts, orders, automatic email receipts
|
277
278
|
and payment collection via Stripe, StripeConnect, PayPal and Moneris.
|