delivery_uncle 0.1.3 → 0.1.4
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/lib/delivery_uncle/version.rb +1 -1
- data/spec/dummy/config/application.rb +0 -6
- data/spec/dummy/config/environments/development.rb +2 -3
- data/spec/dummy/config/environments/production.rb +2 -0
- data/spec/dummy/config/environments/test.rb +2 -3
- data/spec/dummy/log/test.log +6112 -0
- data/spec/dummy/tmp/pids/redis-test.pid +1 -1
- data/spec/services/delivery_uncle/deliver_spec.rb +1 -1
- data/spec/workers/delivery_uncle/send_email_request_spec.rb +1 -1
- metadata +18 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69c6a78f1a21a7bfc0a6d9e15d65f648db09223f
|
|
4
|
+
data.tar.gz: c03e7dcb359c7378dea7a6990e50766070cd5c78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f503762bda140c3216ff69184339710ee3a797de9aea92c008d20f4a2f4fa1e543393465729acab1683b043044647325c20c23dade3a732943116f20bce7f1a2
|
|
7
|
+
data.tar.gz: e6f722324e024d49c833760b921df4f8d86d40e28d5755ecf22dc142c9df02bd6a3d1b951ea36a2cbcc1f25f87ef250aabc28e4182eeb578a33d9d23f8e2c6f4
|
|
@@ -43,12 +43,6 @@ module Dummy
|
|
|
43
43
|
# like if you have constraints or database-specific column types
|
|
44
44
|
# config.active_record.schema_format = :sql
|
|
45
45
|
|
|
46
|
-
# Enforce whitelist mode for mass assignment.
|
|
47
|
-
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
|
48
|
-
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
|
49
|
-
# parameters by using an attr_accessible or attr_protected declaration.
|
|
50
|
-
config.active_record.whitelist_attributes = true
|
|
51
|
-
|
|
52
46
|
# Enable the asset pipeline
|
|
53
47
|
config.assets.enabled = true
|
|
54
48
|
|
|
@@ -22,9 +22,6 @@ Dummy::Application.configure do
|
|
|
22
22
|
# Only use best-standards-support built into browsers
|
|
23
23
|
config.action_dispatch.best_standards_support = :builtin
|
|
24
24
|
|
|
25
|
-
# Raise exception on mass assignment protection for Active Record models
|
|
26
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
|
27
|
-
|
|
28
25
|
# Log the query plan for queries taking more than this (works
|
|
29
26
|
# with SQLite, MySQL, and PostgreSQL)
|
|
30
27
|
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
|
@@ -34,4 +31,6 @@ Dummy::Application.configure do
|
|
|
34
31
|
|
|
35
32
|
# Expands the lines which load the assets
|
|
36
33
|
config.assets.debug = true
|
|
34
|
+
|
|
35
|
+
config.eager_load = false
|
|
37
36
|
end
|
|
@@ -29,9 +29,8 @@ Dummy::Application.configure do
|
|
|
29
29
|
# ActionMailer::Base.deliveries array.
|
|
30
30
|
config.action_mailer.delivery_method = :test
|
|
31
31
|
|
|
32
|
-
# Raise exception on mass assignment protection for Active Record models
|
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
|
34
|
-
|
|
35
32
|
# Print deprecation notices to the stderr
|
|
36
33
|
config.active_support.deprecation = :stderr
|
|
34
|
+
|
|
35
|
+
config.eager_load = false
|
|
37
36
|
end
|