mascot-rails 0.1.2 → 0.1.3
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/README.md +28 -0
- data/Rakefile +37 -0
- data/app/controllers/mascot/sitemap_controller.rb +59 -0
- data/app/helpers/mascot/application_helper.rb +4 -0
- data/config/routes.rb +5 -0
- data/lib/mascot/engine.rb +4 -0
- data/lib/mascot/route_constraint.rb +12 -0
- data/lib/mascot-rails.rb +10 -1
- data/lib/tasks/mascot_tasks.rake +4 -0
- 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/pages/hi.html +3 -0
- data/spec/dummy/app/pages/time.html.erb +7 -0
- data/spec/dummy/app/views/layouts/application.html.erb +10 -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 +15 -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 +38 -0
- data/spec/dummy/config/environments/production.rb +81 -0
- data/spec/dummy/config/environments/test.rb +35 -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/mascot.rb +3 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -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 +2 -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/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +3820 -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/mascot-rails_spec.rb +63 -0
- data/spec/pages/nothing +1 -0
- data/spec/pages/sin_frontmatter.html.haml +8 -0
- data/spec/pages/test.html.haml +14 -0
- data/spec/pages/text.txt +1 -0
- data/spec/spec_helper.rb +43 -0
- metadata +165 -12
- data/lib/mascot/rails/route_constraint.rb +0 -14
- data/lib/mascot/rails.rb +0 -7
- data/mascot-rails.gemspec +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9be455169b809f72ee6b504a603aab604c645bf1
|
4
|
+
data.tar.gz: 0a50346ab7484161fe506a36ae1ca016d7112417
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbdda2a3707a7c5a263ee8665fdcabcd6d28027ca464eb7b9509aa75cbca2512eef7ae1a13816a58b696033487785ec638d8fc139584c1dd01e389477952ff25
|
7
|
+
data.tar.gz: 551d2878d590d5624ed608e4d057d9a1f309431c7858085e34545ab021bada87b355d9079ca8c09a944ee1ea69845de2847a61188ad3502c05a6f60b8322ace7
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# Mascot
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'mascot-rails'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install mascot-rails
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'Mascot'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.md')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
|
21
|
+
load 'rails/tasks/statistics.rake'
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
require 'bundler/gem_tasks'
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
|
29
|
+
Rake::TestTask.new(:test) do |t|
|
30
|
+
t.libs << 'lib'
|
31
|
+
t.libs << 'test'
|
32
|
+
t.pattern = 'test/**/*_test.rb'
|
33
|
+
t.verbose = false
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
task default: :test
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module Mascot
|
2
|
+
PageNotFoundError = Class.new(StandardError)
|
3
|
+
|
4
|
+
class SitemapController < ::ApplicationController
|
5
|
+
rescue_from Mascot::PageNotFoundError, with: :page_not_found
|
6
|
+
|
7
|
+
def show
|
8
|
+
sitemap = Mascot.sitemap
|
9
|
+
resource = sitemap.find_by_request_path(params[:path])
|
10
|
+
|
11
|
+
if resource
|
12
|
+
template_type = resource.template_extensions.last
|
13
|
+
# Users may set the layout from frontmatter.
|
14
|
+
template_layout = resource.data.fetch("layout", current_layout)
|
15
|
+
# For the `wrap_layout` helper.
|
16
|
+
@_mascot_locals = { sitemap: sitemap, current_page: resource }
|
17
|
+
|
18
|
+
# TODO: This doesn't work properly in rails with content_for blocks.
|
19
|
+
# Figure out why and get chaining to work.
|
20
|
+
#
|
21
|
+
# # Render for chained extensions on page. For example `blah.html.md.erb`.
|
22
|
+
# rendered_body = resource.template_extensions.reduce(resource.body) do |body, extension|
|
23
|
+
# render_to_string inline: body,
|
24
|
+
# type: extension,
|
25
|
+
# locals: @_mascot_locals
|
26
|
+
# end
|
27
|
+
|
28
|
+
# render inline: rendered_body,
|
29
|
+
# type: false,
|
30
|
+
# layout: template_layout,
|
31
|
+
# locals: @_mascot_locals,
|
32
|
+
# content_type: resource.mime_type.to_s
|
33
|
+
|
34
|
+
render inline: resource.body,
|
35
|
+
type: template_type,
|
36
|
+
layout: template_layout,
|
37
|
+
locals: @_mascot_locals,
|
38
|
+
content_type: resource.mime_type.to_s
|
39
|
+
else
|
40
|
+
raise Mascot::PageNotFoundError
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
def page_not_found
|
46
|
+
raise ActionController::RoutingError, "No such page: #{params[:path]}"
|
47
|
+
end
|
48
|
+
|
49
|
+
# Returns the current layout for the inline Mascot renderer.
|
50
|
+
def current_layout
|
51
|
+
layout = self.send(:_layout)
|
52
|
+
if layout.instance_of? String
|
53
|
+
layout
|
54
|
+
else
|
55
|
+
File.basename(layout.identifier).split('.').first
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/config/routes.rb
ADDED
data/lib/mascot-rails.rb
CHANGED
@@ -1 +1,10 @@
|
|
1
|
-
require "mascot
|
1
|
+
require "mascot"
|
2
|
+
require "mascot/route_constraint"
|
3
|
+
require "mascot/engine"
|
4
|
+
|
5
|
+
module Mascot
|
6
|
+
# Singleton for rails app integration & configuration.
|
7
|
+
def self.sitemap
|
8
|
+
@sitemap ||= Sitemap.new(file_path: "app/views/pages")
|
9
|
+
end
|
10
|
+
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 @@
|
|
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,15 @@
|
|
1
|
+
require_relative 'boot'
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require(*Rails.groups)
|
6
|
+
require "mascot-rails"
|
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
|
+
end
|
14
|
+
end
|
15
|
+
|
@@ -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,38 @@
|
|
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
|
+
# Don't care if the mailer can't send.
|
16
|
+
config.action_mailer.raise_delivery_errors = false
|
17
|
+
|
18
|
+
# Print deprecation notices to the Rails logger.
|
19
|
+
config.active_support.deprecation = :log
|
20
|
+
|
21
|
+
# Raise an error on page load if there are pending migrations.
|
22
|
+
config.active_record.migration_error = :page_load
|
23
|
+
|
24
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
25
|
+
# This option may cause significant delays in view rendering with a large
|
26
|
+
# number of complex assets.
|
27
|
+
config.assets.debug = true
|
28
|
+
|
29
|
+
# Suppress logger output for asset requests.
|
30
|
+
config.assets.quiet = true
|
31
|
+
|
32
|
+
# Raises error for missing translations
|
33
|
+
# config.action_view.raise_on_missing_translations = true
|
34
|
+
|
35
|
+
# Use an evented file watcher to asynchronously detect changes in source code,
|
36
|
+
# routes, locales, etc. This feature depends on the listen gem.
|
37
|
+
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
38
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
Rails.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
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both threaded web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Compress JavaScripts and CSS.
|
18
|
+
config.assets.js_compressor = :uglifier
|
19
|
+
# config.assets.css_compressor = :sass
|
20
|
+
|
21
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
22
|
+
config.assets.compile = false
|
23
|
+
|
24
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
25
|
+
|
26
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
27
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
28
|
+
|
29
|
+
# Specifies the header that your server uses for sending files.
|
30
|
+
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
31
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
32
|
+
|
33
|
+
# Mount Action Cable outside main process or domain
|
34
|
+
# config.action_cable.mount_path = nil
|
35
|
+
# config.action_cable.url = 'wss://example.com/cable'
|
36
|
+
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
37
|
+
|
38
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
39
|
+
# config.force_ssl = true
|
40
|
+
|
41
|
+
# Use the lowest log level to ensure availability of diagnostic information
|
42
|
+
# when problems arise.
|
43
|
+
config.log_level = :debug
|
44
|
+
|
45
|
+
# Prepend all log lines with the following tags.
|
46
|
+
config.log_tags = [ :request_id ]
|
47
|
+
|
48
|
+
# Use a different cache store in production.
|
49
|
+
# config.cache_store = :mem_cache_store
|
50
|
+
|
51
|
+
# Use a real queuing backend for Active Job (and separate queues per environment)
|
52
|
+
# config.active_job.queue_adapter = :resque
|
53
|
+
# config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
|
54
|
+
|
55
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
56
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
57
|
+
# config.action_mailer.raise_delivery_errors = false
|
58
|
+
|
59
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
60
|
+
# the I18n.default_locale when a translation cannot be found).
|
61
|
+
config.i18n.fallbacks = true
|
62
|
+
|
63
|
+
# Send deprecation notices to registered listeners.
|
64
|
+
config.active_support.deprecation = :notify
|
65
|
+
|
66
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
67
|
+
config.log_formatter = ::Logger::Formatter.new
|
68
|
+
|
69
|
+
# Use a different logger for distributed setups.
|
70
|
+
# require 'syslog/logger'
|
71
|
+
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
72
|
+
|
73
|
+
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
74
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
75
|
+
logger.formatter = config.log_formatter
|
76
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
77
|
+
end
|
78
|
+
|
79
|
+
# Do not dump schema after migrations.
|
80
|
+
config.active_record.dump_schema_after_migration = false
|
81
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Show full error reports and disable caching.
|
16
|
+
config.consider_all_requests_local = true
|
17
|
+
config.action_controller.perform_caching = false
|
18
|
+
|
19
|
+
# Raise exceptions instead of rendering exception templates.
|
20
|
+
config.action_dispatch.show_exceptions = false
|
21
|
+
|
22
|
+
# Disable request forgery protection in test environment.
|
23
|
+
config.action_controller.allow_forgery_protection = false
|
24
|
+
|
25
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
26
|
+
# The :test delivery method accumulates sent emails in the
|
27
|
+
# ActionMailer::Base.deliveries array.
|
28
|
+
config.action_mailer.delivery_method = :test
|
29
|
+
|
30
|
+
# Print deprecation notices to the stderr.
|
31
|
+
config.active_support.deprecation = :stderr
|
32
|
+
|
33
|
+
# Raises error for missing translations
|
34
|
+
# config.action_view.raise_on_missing_translations = true
|
35
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|