carapace 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/CHANGELOG.md +31 -14
  2. data/Gemfile +17 -0
  3. data/README.md +36 -32
  4. data/Rakefile +32 -2
  5. data/carapace.gemspec +29 -0
  6. data/lib/carapace.rb +2 -124
  7. data/lib/carapace/carapace.rb +124 -0
  8. data/lib/carapace/engine.rb +7 -0
  9. data/lib/carapace/version.rb +3 -0
  10. data/lib/tasks/carapace_tasks.rake +4 -0
  11. data/test/dummy/README.md +134 -0
  12. data/test/{rails_app → dummy}/Rakefile +3 -6
  13. data/test/dummy/app/assets/javascripts/application.js +15 -0
  14. data/test/dummy/app/assets/javascripts/message.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/assets/stylesheets/message.css +4 -0
  17. data/test/dummy/app/controllers/application_controller.rb +3 -0
  18. data/test/{rails_app → dummy}/app/controllers/message_controller.rb +0 -0
  19. data/test/dummy/app/helpers/application_helper.rb +2 -0
  20. data/test/{rails_app → dummy}/app/helpers/message_helper.rb +0 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/{rails_app → dummy}/app/views/message/index.html.erb +1 -1
  23. data/test/dummy/config.ru +4 -0
  24. data/test/dummy/config/application.rb +59 -0
  25. data/test/dummy/config/boot.rb +10 -0
  26. data/test/{rails_app → dummy}/config/database.yml +9 -3
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +37 -0
  29. data/test/dummy/config/environments/production.rb +67 -0
  30. data/test/dummy/config/environments/test.rb +37 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/{rails_app → dummy}/config/initializers/inflections.rb +7 -2
  33. data/test/{rails_app → dummy}/config/initializers/mime_types.rb +0 -0
  34. data/test/dummy/config/initializers/secret_token.rb +7 -0
  35. data/test/dummy/config/initializers/session_store.rb +8 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +5 -0
  38. data/test/dummy/config/routes.rb +61 -0
  39. data/test/dummy/db/development.sqlite3 +0 -0
  40. data/test/dummy/log/development.log +742 -0
  41. data/test/dummy/log/test.log +27 -0
  42. data/test/dummy/public/404.html +26 -0
  43. data/test/dummy/public/422.html +26 -0
  44. data/test/dummy/public/500.html +25 -0
  45. data/test/{rails_app → dummy}/public/favicon.ico +0 -0
  46. data/test/dummy/script/rails +6 -0
  47. data/test/{rails_app → dummy}/test/functional/message_controller_test.rb +3 -5
  48. data/test/dummy/test/unit/helpers/message_helper_test.rb +4 -0
  49. data/test/dummy/tmp/cache/assets/C78/9E0/sprockets%2F8172886cba8a1911b217c81605b19e14 +0 -0
  50. data/test/dummy/tmp/cache/assets/CD3/C80/sprockets%2F60a4ed28b40070af1a35a65086d3758f +0 -0
  51. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  52. data/test/dummy/tmp/cache/assets/D08/C80/sprockets%2Fcb11b48a42f94e0db70f194493a32c77 +0 -0
  53. data/test/dummy/tmp/cache/assets/D30/D70/sprockets%2Ffba6ea9d0d74a2071065123308daec69 +0 -0
  54. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  55. data/test/dummy/tmp/cache/assets/D42/790/sprockets%2F63f423d2fb157e98fb0d8ee89c0351a1 +0 -0
  56. data/test/dummy/tmp/cache/assets/D4C/AD0/sprockets%2F1a9dcbbb7774e26a180893a79bb0889f +0 -0
  57. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  58. data/test/{rails_app/public/javascripts/carapace.js → dummy/tmp/cache/assets/D55/0F0/sprockets%2Fec9774e5f33cb737f35ee3aa8257963e} +0 -0
  59. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  60. data/test/dummy/tmp/cache/assets/D88/4B0/sprockets%2Fdc0cf832aa65e1e6dbda9551c17120c1 +0 -0
  61. data/test/dummy/tmp/cache/assets/D8B/E80/sprockets%2Fd0d64e037bd6d546f0b09a25b2cc24db +0 -0
  62. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  63. data/test/dummy/tmp/cache/assets/E02/120/sprockets%2F73ff50f3f5d1f01c2ee1bedfe4e56d67 +0 -0
  64. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  65. data/test/dummy/tmp/cache/assets/E0D/340/sprockets%2Fb7e1e6b8d949eef8a343b78da5f07bae +0 -0
  66. data/test/integration/static_asset_test.rb +8 -0
  67. data/test/test_helper.rb +14 -0
  68. data/{rails_generators/templates → vendor/assets/javascripts}/carapace.js +0 -0
  69. metadata +194 -57
  70. data/rails_generators/USAGE +0 -7
  71. data/rails_generators/carapace_generator.rb +0 -7
  72. data/test/rails_app/README.md +0 -130
  73. data/test/rails_app/app/controllers/application.rb +0 -10
  74. data/test/rails_app/app/helpers/application_helper.rb +0 -3
  75. data/test/rails_app/config/boot.rb +0 -109
  76. data/test/rails_app/config/environment.rb +0 -60
  77. data/test/rails_app/config/environments/development.rb +0 -18
  78. data/test/rails_app/config/environments/production.rb +0 -19
  79. data/test/rails_app/config/environments/test.rb +0 -22
  80. data/test/rails_app/config/routes.rb +0 -35
  81. data/test/rails_app/doc/README_FOR_APP +0 -2
  82. data/test/rails_app/public/404.html +0 -30
  83. data/test/rails_app/public/422.html +0 -30
  84. data/test/rails_app/public/500.html +0 -30
  85. data/test/rails_app/public/dispatch.cgi +0 -10
  86. data/test/rails_app/public/dispatch.fcgi +0 -24
  87. data/test/rails_app/public/dispatch.rb +0 -10
  88. data/test/rails_app/public/images/rails.png +0 -0
  89. data/test/rails_app/public/javascripts/application.js +0 -2
  90. data/test/rails_app/public/javascripts/controls.js +0 -963
  91. data/test/rails_app/public/javascripts/dragdrop.js +0 -972
  92. data/test/rails_app/public/javascripts/effects.js +0 -1120
  93. data/test/rails_app/public/javascripts/prototype.js +0 -4225
  94. data/test/rails_app/public/robots.txt +0 -5
  95. data/test/rails_app/script/about +0 -3
  96. data/test/rails_app/script/console +0 -3
  97. data/test/rails_app/script/destroy +0 -3
  98. data/test/rails_app/script/generate +0 -3
  99. data/test/rails_app/script/performance/benchmarker +0 -3
  100. data/test/rails_app/script/performance/profiler +0 -3
  101. data/test/rails_app/script/performance/request +0 -3
  102. data/test/rails_app/script/plugin +0 -3
  103. data/test/rails_app/script/process/inspector +0 -3
  104. data/test/rails_app/script/process/reaper +0 -3
  105. data/test/rails_app/script/process/spawner +0 -3
  106. data/test/rails_app/script/runner +0 -3
  107. data/test/rails_app/script/server +0 -3
  108. data/test/rails_app/test/test_helper.rb +0 -38
@@ -0,0 +1,7 @@
1
+ module Carapace
2
+ class Engine < ::Rails::Engine
3
+ initializer 'carapace.load_static_assets' do |app|
4
+ app.middleware.use ::ActionDispatch::Static, "#{root}/vendor"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Carapace
2
+ VERSION = "0.2.0"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :carapace do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,134 @@
1
+ # Test Rails Application for Carapace
2
+
3
+ This is the standard Rails 3 dummy application for gem testing, modified
4
+ to test the Carapace gem.
5
+
6
+ It comprises one controller with a single `index` action and the associated
7
+ view which does two things:
8
+
9
+ 1. It provides an input field into which a user can enter a message. Upon
10
+ submit the same index action is invoked.
11
+
12
+ 2. If a message had been entered previously then that message is displayed
13
+ as well as the input field described above.
14
+
15
+ To test Carapace inside the rails app:
16
+
17
+ $ cd test/dummy
18
+ $ rails server
19
+
20
+ Navigate to the application (e.g. `http://localhost:3000`), enter a message
21
+ in the input box and press `send`. The message should be displayed on the
22
+ screen.
23
+
24
+ If you watch closely when pressing `send` the encrypted message text
25
+ will be briefly visible in the message input box.
26
+
27
+ If the gem was installed from [RubyGems.org](https://rubygems.org/gems/carapace)
28
+ then `test/dummy` can be found at `$GEM_HOME/gems/carapace-0.2.0`.
29
+
30
+ ## Modifications to test/dummy
31
+
32
+ This section describes the changes made to the default `test/dummy`.
33
+
34
+ $ cd test/dummy
35
+
36
+ 1. Create the message controller for testing
37
+
38
+ $ rails generate controller Message index
39
+
40
+ 2. Configure routes
41
+
42
+ Set root route in `config/routes.rb`:
43
+
44
+ root :to => 'message#index'
45
+
46
+ Add a post route to `config/routes.rb`:
47
+
48
+ post "message/index"
49
+
50
+ 3. Write code
51
+
52
+ Write test file `app/controllers/message_controller.rb`
53
+
54
+ Write test file `app/views/message/index.html.erb`
55
+
56
+ See *Source Code* section below.
57
+
58
+ 4. Run
59
+
60
+ $ rails server
61
+
62
+ ## Building
63
+
64
+ This section describes how to build an application from scratch.
65
+
66
+ 1. Create a basic rails application:
67
+
68
+ $ rails new rails_app
69
+ $ cd rails_app
70
+
71
+ 2. Add Carapace to Gemfile
72
+
73
+ add `gem 'carapace', '>= 0.2.0'` to `Gemfile`
74
+
75
+ $ bundle install
76
+
77
+ 3. Follow steps 1 thru 3 from above
78
+
79
+ 4. Delete default index file
80
+
81
+ $ rm public/index.html
82
+
83
+ 5. Run
84
+
85
+ $ rails server
86
+
87
+ ## Source Files
88
+
89
+ ### `app/controllers/message_controller.rb`
90
+
91
+ class MessageController < ApplicationController
92
+
93
+ require 'carapace'
94
+ include Carapace
95
+
96
+ def index
97
+ carapace_session
98
+ if request.post?
99
+ @message=params[:message]
100
+ carapace_decrypt! @message
101
+ end
102
+ end
103
+ end
104
+
105
+ ### `app/views/message/index.html.erb`
106
+
107
+
108
+ <%= javascript_include_tag 'carapace.js' %>
109
+ <%= carapace_javascript %>
110
+
111
+ <script class=javascript>
112
+
113
+ function onSubmit()
114
+ {
115
+ carapace_encrypt(document.getElementById("message"));
116
+ }
117
+ </script>
118
+
119
+
120
+ <h1>Send a message with Carapace </h1>
121
+
122
+ <% unless @message.nil? %>
123
+
124
+ <p> Received message: <%= @message %> </p>
125
+
126
+ <% end %>
127
+
128
+ <%= form_tag do %>
129
+ Your message: <%= text_field_tag :message %>
130
+ <%= submit_tag "Send", :class => "submit", :onclick => "onSubmit()" %>
131
+ <% end %>
132
+
133
+ Instead of using `javascript_include_tag` to load the Carapace Javascript, an
134
+ alternative method is to add `\\= require carapace` to `app/assets/javascripts/application.js`.
@@ -1,10 +1,7 @@
1
+ #!/usr/bin/env rake
1
2
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
3
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
4
 
4
- require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
+ require File.expand_path('../config/application', __FILE__)
5
6
 
6
- require 'rake'
7
- require 'rake/testtask'
8
- require 'rake/rdoctask'
9
-
10
- require 'tasks/rails'
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -18,7 +18,7 @@
18
18
 
19
19
  <% end %>
20
20
 
21
- <% form_tag do %>
21
+ <%= form_tag do %>
22
22
  Your message: <%= text_field_tag :message %>
23
23
  <%= submit_tag "Send", :class => "submit", :onclick => "onSubmit()" %>
24
24
  <% end %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,59 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "carapace"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable escaping HTML in JSON.
39
+ config.active_support.escape_html_entities_in_json = true
40
+
41
+ # Use SQL instead of Active Record's schema dumper when creating the database.
42
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
43
+ # like if you have constraints or database-specific column types
44
+ # config.active_record.schema_format = :sql
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
+ # Enable the asset pipeline
53
+ config.assets.enabled = true
54
+
55
+ # Version of your assets, change this if you want to expire all your assets
56
+ config.assets.version = '1.0'
57
+ end
58
+ end
59
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,19 +1,25 @@
1
1
  # SQLite version 3.x
2
- # gem install sqlite3-ruby (not necessary on OS X Leopard)
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
3
6
  development:
4
7
  adapter: sqlite3
5
8
  database: db/development.sqlite3
9
+ pool: 5
6
10
  timeout: 5000
7
11
 
8
- # Warning: The database defined as 'test' will be erased and
9
- # re-generated from your development database when you run 'rake'.
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
10
14
  # Do not set this db to the same as development or production.
11
15
  test:
12
16
  adapter: sqlite3
13
17
  database: db/test.sqlite3
18
+ pool: 5
14
19
  timeout: 5000
15
20
 
16
21
  production:
17
22
  adapter: sqlite3
18
23
  database: db/production.sqlite3
24
+ pool: 5
19
25
  timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end