delivery_uncle 0.1.3 → 0.1.4

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
  SHA1:
3
- metadata.gz: de5ee577c5e27a5af7c6a23a18bd0a4e40db2638
4
- data.tar.gz: 7dee24ce6cd17303ee5ed398d0125671ff2c11a8
3
+ metadata.gz: 69c6a78f1a21a7bfc0a6d9e15d65f648db09223f
4
+ data.tar.gz: c03e7dcb359c7378dea7a6990e50766070cd5c78
5
5
  SHA512:
6
- metadata.gz: ebec7c672e690d0a8d30e7aa37186bbe710875e12247bd105d0491eb4229abad452f6145f77cdf24c6f320f4552043297b1842ee31f82c47f9f51d07ef39cc38
7
- data.tar.gz: e31cf2883a0ea33e94dd5de9548870a4eb924333370bb870944502e4a65a3b588e7843e7a20aafe1755729eec8e357e44411ece8febcf4aa6484e2cdda74c578
6
+ metadata.gz: f503762bda140c3216ff69184339710ee3a797de9aea92c008d20f4a2f4fa1e543393465729acab1683b043044647325c20c23dade3a732943116f20bce7f1a2
7
+ data.tar.gz: e6f722324e024d49c833760b921df4f8d86d40e28d5755ecf22dc142c9df02bd6a3d1b951ea36a2cbcc1f25f87ef250aabc28e4182eeb578a33d9d23f8e2c6f4
@@ -1,3 +1,3 @@
1
1
  module DeliveryUncle
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -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
@@ -64,4 +64,6 @@ Dummy::Application.configure do
64
64
  # Log the query plan for queries taking more than this (works
65
65
  # with SQLite, MySQL, and PostgreSQL)
66
66
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+
68
+ config.eager_load = true
67
69
  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