okuribito_rails 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -12
- data/Rakefile +6 -23
- data/app/controllers/okuribito_rails/application_controller.rb +1 -0
- data/app/controllers/okuribito_rails/method_call_situations_controller.rb +4 -1
- data/app/models/okuribito_rails/method_call_log.rb +4 -0
- data/app/models/okuribito_rails/method_call_situation.rb +7 -0
- data/lib/generators/okuribito_rails/install_generator.rb +9 -10
- data/lib/generators/okuribito_rails/templates/initializer.erb +1 -1
- data/lib/okuribito_rails/config.rb +1 -1
- data/lib/okuribito_rails/observe_method.rb +4 -2
- data/lib/okuribito_rails/railtie.rb +8 -6
- data/lib/okuribito_rails/version.rb +1 -1
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +5 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +34 -0
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +9 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +54 -0
- data/spec/dummy/config/environments/production.rb +86 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/puma.rb +47 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +38 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +5 -0
- data/spec/dummy/log/test.log +2049 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories.rb +14 -0
- data/spec/models/method_call_log_spec.rb +93 -0
- data/spec/models/method_call_situation_spec.rb +114 -0
- data/spec/spec_helper.rb +14 -0
- metadata +211 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7a139dac2a491953b55242fff83baba4692ae6e
|
4
|
+
data.tar.gz: 19520deb5322bd318ea38afb5bd7d6c75b3f48ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfd4139173341dd81cbc0a8bd301e62ec0f5ef4a75b8c9cee9605af316a845527e9fa50a188570acd94d0f7dd2e8204b9b3ea96f5811119854abde8ecbee6788
|
7
|
+
data.tar.gz: b34c654976fac036c2cff3d8b022734a51bae591e7dba080042e1c688cb2a8b968884f290150bca5df97f0cacb3d733fae805dc2f9204be8da6c1f659cfabfa4
|
data/README.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
[![CircleCI](https://circleci.com/gh/muramurasan/okuribito_rails.svg?style=svg)](https://circleci.com/gh/muramurasan/okuribito_rails)
|
2
|
+
[![Code Climate](https://codeclimate.com/github/muramurasan/okuribito_rails.png)](https://codeclimate.com/github/muramurasan/okuribito_rails)
|
3
|
+
[![Test Coverage](https://codeclimate.com/github/muramurasan/okuribito_rails/badges/coverage.svg)](https://codeclimate.com/github/muramurasan/okuribito_rails/coverage)
|
4
|
+
|
1
5
|
# OkuribitoRails
|
2
6
|
|
3
7
|
OkuribitoRails is an engine for Rails that aims to be the managing method call status.
|
@@ -10,6 +14,17 @@ In other words, you can identify methods that have not been called from anywhere
|
|
10
14
|
|
11
15
|
![OkuribitoRails](https://raw.githubusercontent.com/muramurasan/okuribito_rails/master/doc/sample.png)
|
12
16
|
|
17
|
+
# Features
|
18
|
+
|
19
|
+
Here's a comprehensive list of the features currently in OkuribitoRails:
|
20
|
+
|
21
|
+
* Monitoring
|
22
|
+
* During application execution, monitor specified method calls
|
23
|
+
* After detecting the method call, register the call history in the DB
|
24
|
+
* Web UI
|
25
|
+
* Viewing monitored methods
|
26
|
+
* Viewing call history of monitored methods
|
27
|
+
|
13
28
|
# Installation
|
14
29
|
|
15
30
|
Installing OkuribitoRails is easy.
|
@@ -52,17 +67,6 @@ Micropost:
|
|
52
67
|
- '.from_users_followed_by'
|
53
68
|
```
|
54
69
|
|
55
|
-
And put it in the path defined in `config
|
70
|
+
And put it in the path defined in `config/initializers/okuribito_rails.rb`.
|
56
71
|
|
57
72
|
(By Default `config/okuribito.yml`)
|
58
|
-
|
59
|
-
## Features
|
60
|
-
|
61
|
-
Here's a comprehensive list of the features currently in OkuribitoRails:
|
62
|
-
|
63
|
-
* Monitoring
|
64
|
-
* During application execution, monitor specified method calls
|
65
|
-
* After detecting the method call, register the call history in the DB
|
66
|
-
* Web UI
|
67
|
-
* Viewing monitored methods
|
68
|
-
* Viewing call history of monitored methods
|
data/Rakefile
CHANGED
@@ -1,30 +1,13 @@
|
|
1
1
|
begin
|
2
2
|
require 'bundler/setup'
|
3
|
-
rescue LoadError
|
4
|
-
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
3
|
end
|
6
4
|
|
7
|
-
require 'rdoc/task'
|
8
|
-
|
9
|
-
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
-
rdoc.rdoc_dir = 'rdoc'
|
11
|
-
rdoc.title = 'OkuribitoRails'
|
12
|
-
rdoc.options << '--line-numbers'
|
13
|
-
rdoc.rdoc_files.include('README.rdoc')
|
14
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
-
end
|
16
|
-
|
17
|
-
|
18
5
|
Bundler::GemHelper.install_tasks
|
19
6
|
|
20
|
-
require '
|
21
|
-
|
22
|
-
|
23
|
-
t.libs << 'lib'
|
24
|
-
t.libs << 'spec'
|
25
|
-
t.pattern = 'spec/**/*_spec.rb'
|
26
|
-
t.verbose = false
|
27
|
-
end
|
28
|
-
|
7
|
+
require 'rspec/core/rake_task'
|
8
|
+
RSpec::Core::RakeTask.new(:spec)
|
9
|
+
task default: :spec
|
29
10
|
|
30
|
-
|
11
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
12
|
+
load 'rails/tasks/engine.rake'
|
13
|
+
load 'rails/tasks/statistics.rake'
|
@@ -3,7 +3,10 @@ require_dependency "okuribito_rails/application_controller"
|
|
3
3
|
module OkuribitoRails
|
4
4
|
class MethodCallSituationsController < ApplicationController
|
5
5
|
def index
|
6
|
-
@method_call_situations = MethodCallSituation
|
6
|
+
@method_call_situations = MethodCallSituation
|
7
|
+
.page(params[Kaminari.config.param_name])
|
8
|
+
.per(20)
|
9
|
+
.order(class_name: :asc, method_symbol: :asc, method_name: :asc)
|
7
10
|
end
|
8
11
|
end
|
9
12
|
end
|
@@ -1,5 +1,9 @@
|
|
1
1
|
module OkuribitoRails
|
2
2
|
class MethodCallLog < ActiveRecord::Base
|
3
3
|
belongs_to :method_call_situation
|
4
|
+
|
5
|
+
validates :class_name, presence: true, length: { minimum: 1, maximum: 255 }
|
6
|
+
validates :method_symbol, presence: true, inclusion: { in: %w(. #) }
|
7
|
+
validates :method_name, presence: true, length: { minimum: 1, maximum: 255 }
|
4
8
|
end
|
5
9
|
end
|
@@ -1,5 +1,12 @@
|
|
1
1
|
module OkuribitoRails
|
2
2
|
class MethodCallSituation < ActiveRecord::Base
|
3
3
|
has_many :method_call_logs
|
4
|
+
|
5
|
+
validates :class_name, presence: true, length: { minimum: 1, maximum: 255 }
|
6
|
+
validates :method_symbol, presence: true, inclusion: { in: %w(. #) }
|
7
|
+
validates :method_name, presence: true, length: { minimum: 1, maximum: 255 }
|
8
|
+
validates :called_num,
|
9
|
+
presence: true,
|
10
|
+
numericality: { only_integer: true, less_than_or_equal_to: 9_999 }
|
4
11
|
end
|
5
12
|
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
require
|
1
|
+
require "rails/generators"
|
2
2
|
|
3
3
|
module OkuribitoRails
|
4
4
|
class InstallGenerator < Rails::Generators::Base
|
5
|
-
class_option "with-migrate", :
|
5
|
+
class_option "with-migrate", type: :boolean
|
6
6
|
|
7
7
|
def start
|
8
8
|
puts "Start installing okuribito_rails..."
|
9
|
-
puts
|
9
|
+
puts "*" * 80 + "\n"
|
10
10
|
end
|
11
11
|
|
12
12
|
def install_migrations
|
@@ -17,10 +17,9 @@ module OkuribitoRails
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def run_migrations
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
end
|
20
|
+
return unless options["with-migrate"]
|
21
|
+
puts "Running rake db:migrate"
|
22
|
+
`rake db:migrate`
|
24
23
|
end
|
25
24
|
|
26
25
|
def mount_engine
|
@@ -30,8 +29,8 @@ module OkuribitoRails
|
|
30
29
|
|
31
30
|
def create_config_initializer
|
32
31
|
puts "Create configuration..."
|
33
|
-
OkuribitoRails::InstallGenerator.source_root File.expand_path(
|
34
|
-
template
|
32
|
+
OkuribitoRails::InstallGenerator.source_root File.expand_path("../templates", __FILE__)
|
33
|
+
template "initializer.erb", "config/initializers/okuribito_rails.rb"
|
35
34
|
end
|
36
35
|
|
37
36
|
def finished
|
@@ -41,4 +40,4 @@ module OkuribitoRails
|
|
41
40
|
puts "(The yaml that defines the method you want to monitor)"
|
42
41
|
end
|
43
42
|
end
|
44
|
-
end
|
43
|
+
end
|
@@ -3,7 +3,9 @@ require "okuribito"
|
|
3
3
|
module OkuribitoRails
|
4
4
|
class ObserveMethod
|
5
5
|
def patch_okuribito
|
6
|
-
Okuribito::OkuribitoPatch.new(
|
6
|
+
Okuribito::OkuribitoPatch.new(
|
7
|
+
once_detect: OkuribitoRails.config.once_detect
|
8
|
+
) do |method_name, _obj_name, caller_info, class_name, method_symbol|
|
7
9
|
situation = MethodCallSituation.find_by(class_name: class_name,
|
8
10
|
method_symbol: method_symbol,
|
9
11
|
method_name: method_name)
|
@@ -18,4 +20,4 @@ module OkuribitoRails
|
|
18
20
|
end
|
19
21
|
end
|
20
22
|
end
|
21
|
-
end
|
23
|
+
end
|
@@ -4,15 +4,17 @@ require "okuribito_rails/observe_method"
|
|
4
4
|
module OkuribitoRails
|
5
5
|
class Railtie < ::Rails::Railtie
|
6
6
|
config.after_initialize do
|
7
|
-
if ActiveRecord::Base.connection.table_exists?
|
7
|
+
if ActiveRecord::Base.connection.table_exists? "okuribito_rails_method_call_situations"
|
8
8
|
yaml_path = OkuribitoRails.config.setting_path
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
unless yaml_path.nil?
|
11
|
+
# Update database by observed methods.
|
12
|
+
RegistMethod.new.update_observe_methods(yaml_path)
|
12
13
|
|
13
|
-
|
14
|
-
|
15
|
-
|
14
|
+
# Define behavior that when method called.
|
15
|
+
okuribito = ObserveMethod.new.patch_okuribito
|
16
|
+
okuribito.apply(yaml_path) if File.exist?(yaml_path)
|
17
|
+
end
|
16
18
|
end
|
17
19
|
end
|
18
20
|
end
|
data/spec/dummy/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
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 any plugin's vendor/assets/javascripts directory 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
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// Action Cable provides the framework to deal with WebSockets in Rails.
|
2
|
+
// You can generate new channels where WebSocket features live using the rails generate channel command.
|
3
|
+
//
|
4
|
+
//= require action_cable
|
5
|
+
//= require_self
|
6
|
+
//= require_tree ./channels
|
7
|
+
|
8
|
+
(function() {
|
9
|
+
this.App || (this.App = {});
|
10
|
+
|
11
|
+
App.cable = ActionCable.createConsumer();
|
12
|
+
|
13
|
+
}).call(this);
|
@@ -0,0 +1,15 @@
|
|
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 any plugin's vendor/assets/stylesheets directory 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 bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Dummy</title>
|
5
|
+
<%= csrf_meta_tags %>
|
6
|
+
|
7
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
8
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<%= yield %>
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= yield %>
|
data/spec/dummy/bin/rake
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'pathname'
|
3
|
+
require 'fileutils'
|
4
|
+
include FileUtils
|
5
|
+
|
6
|
+
# path to your application root.
|
7
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
8
|
+
|
9
|
+
def system!(*args)
|
10
|
+
system(*args) || abort("\n== Command #{args} failed ==")
|
11
|
+
end
|
12
|
+
|
13
|
+
chdir APP_ROOT do
|
14
|
+
# This script is a starting point to setup your application.
|
15
|
+
# Add necessary setup steps to this file.
|
16
|
+
|
17
|
+
puts '== Installing dependencies =='
|
18
|
+
system! 'gem install bundler --conservative'
|
19
|
+
system('bundle check') || system!('bundle install')
|
20
|
+
|
21
|
+
# puts "\n== Copying sample files =="
|
22
|
+
# unless File.exist?('config/database.yml')
|
23
|
+
# cp 'config/database.yml.sample', 'config/database.yml'
|
24
|
+
# end
|
25
|
+
|
26
|
+
puts "\n== Preparing database =="
|
27
|
+
system! 'bin/rails db:setup'
|
28
|
+
|
29
|
+
puts "\n== Removing old logs and tempfiles =="
|
30
|
+
system! 'bin/rails log:clear tmp:clear'
|
31
|
+
|
32
|
+
puts "\n== Restarting application server =="
|
33
|
+
system! 'bin/rails restart'
|
34
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'pathname'
|
3
|
+
require 'fileutils'
|
4
|
+
include FileUtils
|
5
|
+
|
6
|
+
# path to your application root.
|
7
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
8
|
+
|
9
|
+
def system!(*args)
|
10
|
+
system(*args) || abort("\n== Command #{args} failed ==")
|
11
|
+
end
|
12
|
+
|
13
|
+
chdir APP_ROOT do
|
14
|
+
# This script is a way to update your development environment automatically.
|
15
|
+
# Add necessary update steps to this file.
|
16
|
+
|
17
|
+
puts '== Installing dependencies =='
|
18
|
+
system! 'gem install bundler --conservative'
|
19
|
+
system('bundle check') || system!('bundle install')
|
20
|
+
|
21
|
+
puts "\n== Updating database =="
|
22
|
+
system! 'bin/rails db:migrate'
|
23
|
+
|
24
|
+
puts "\n== Removing old logs and tempfiles =="
|
25
|
+
system! 'bin/rails log:clear tmp:clear'
|
26
|
+
|
27
|
+
puts "\n== Restarting application server =="
|
28
|
+
system! 'bin/rails restart'
|
29
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require_relative 'boot'
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
require "active_job/railtie"
|
9
|
+
require "action_cable/engine"
|
10
|
+
# require "rails/test_unit/railtie"
|
11
|
+
require "sprockets/railtie"
|
12
|
+
|
13
|
+
Bundler.require(*Rails.groups)
|
14
|
+
require "okuribito_rails"
|
15
|
+
|
16
|
+
module Dummy
|
17
|
+
class Application < Rails::Application
|
18
|
+
# Settings in config/environments/* take precedence over those specified here.
|
19
|
+
# Application configuration should go into files in config/initializers
|
20
|
+
# -- all .rb files in that directory are automatically loaded.
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
#
|
7
|
+
default: &default
|
8
|
+
adapter: sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
development:
|
13
|
+
<<: *default
|
14
|
+
database: db/development.sqlite3
|
15
|
+
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
17
|
+
# re-generated from your development database when you run "rake".
|
18
|
+
# Do not set this db to the same as development or production.
|
19
|
+
test:
|
20
|
+
<<: *default
|
21
|
+
database: db/test.sqlite3
|
22
|
+
|
23
|
+
production:
|
24
|
+
<<: *default
|
25
|
+
database: db/production.sqlite3
|
@@ -0,0 +1,54 @@
|
|
1
|
+
Rails.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
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
|
15
|
+
# Enable/disable caching. By default caching is disabled.
|
16
|
+
if Rails.root.join('tmp/caching-dev.txt').exist?
|
17
|
+
config.action_controller.perform_caching = true
|
18
|
+
|
19
|
+
config.cache_store = :memory_store
|
20
|
+
config.public_file_server.headers = {
|
21
|
+
'Cache-Control' => 'public, max-age=172800'
|
22
|
+
}
|
23
|
+
else
|
24
|
+
config.action_controller.perform_caching = false
|
25
|
+
|
26
|
+
config.cache_store = :null_store
|
27
|
+
end
|
28
|
+
|
29
|
+
# Don't care if the mailer can't send.
|
30
|
+
config.action_mailer.raise_delivery_errors = false
|
31
|
+
|
32
|
+
config.action_mailer.perform_caching = false
|
33
|
+
|
34
|
+
# Print deprecation notices to the Rails logger.
|
35
|
+
config.active_support.deprecation = :log
|
36
|
+
|
37
|
+
# Raise an error on page load if there are pending migrations.
|
38
|
+
config.active_record.migration_error = :page_load
|
39
|
+
|
40
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
41
|
+
# This option may cause significant delays in view rendering with a large
|
42
|
+
# number of complex assets.
|
43
|
+
config.assets.debug = true
|
44
|
+
|
45
|
+
# Suppress logger output for asset requests.
|
46
|
+
config.assets.quiet = true
|
47
|
+
|
48
|
+
# Raises error for missing translations
|
49
|
+
# config.action_view.raise_on_missing_translations = true
|
50
|
+
|
51
|
+
# Use an evented file watcher to asynchronously detect changes in source code,
|
52
|
+
# routes, locales, etc. This feature depends on the listen gem.
|
53
|
+
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
54
|
+
end
|