parklife 0.4.0 → 0.5.0
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/.github/workflows/tests.yml +13 -2
- data/.rubocop.yml +30 -0
- data/CHANGELOG.md +22 -13
- data/Gemfile +7 -0
- data/README.md +9 -3
- data/Rakefile +2 -0
- data/bin/console +1 -0
- data/exe/parklife +2 -0
- data/lib/parklife/application.rb +2 -0
- data/lib/parklife/browser.rb +13 -5
- data/lib/parklife/cli.rb +33 -12
- data/lib/parklife/config.rb +2 -0
- data/lib/parklife/crawler.rb +8 -2
- data/lib/parklife/errors.rb +6 -13
- data/lib/parklife/rails.rb +25 -3
- data/lib/parklife/route.rb +2 -0
- data/lib/parklife/route_set.rb +2 -0
- data/lib/parklife/templates/Parkfile.erb +48 -0
- data/lib/parklife/templates/github_pages.yml +48 -0
- data/lib/parklife/templates/static_build.erb +28 -0
- data/lib/parklife/utils.rb +7 -0
- data/lib/parklife/version.rb +3 -1
- data/lib/parklife.rb +2 -0
- data/parklife.gemspec +6 -5
- metadata +8 -106
- data/examples/rack/.gitignore +0 -2
- data/examples/rack/Gemfile +0 -4
- data/examples/rack/Parkfile +0 -21
- data/examples/rails/.gitignore +0 -28
- data/examples/rails/Gemfile +0 -5
- data/examples/rails/Parkfile +0 -6
- data/examples/rails/Rakefile +0 -6
- data/examples/rails/app/assets/config/manifest.js +0 -2
- data/examples/rails/app/assets/images/.keep +0 -0
- data/examples/rails/app/assets/stylesheets/application.css +0 -15
- data/examples/rails/app/assets/stylesheets/global.css +0 -4
- data/examples/rails/app/controllers/application_controller.rb +0 -2
- data/examples/rails/app/controllers/posts_controller.rb +0 -9
- data/examples/rails/app/helpers/application_helper.rb +0 -2
- data/examples/rails/app/jobs/application_job.rb +0 -2
- data/examples/rails/app/models/application_record.rb +0 -3
- data/examples/rails/app/models/post.rb +0 -5
- data/examples/rails/app/views/layouts/application.html.erb +0 -14
- data/examples/rails/app/views/posts/index.html.erb +0 -7
- data/examples/rails/app/views/posts/show.html.erb +0 -3
- data/examples/rails/bin/bundle +0 -3
- data/examples/rails/bin/rails +0 -4
- data/examples/rails/bin/rake +0 -4
- data/examples/rails/bin/setup +0 -33
- data/examples/rails/bin/update +0 -28
- data/examples/rails/config/application.rb +0 -35
- data/examples/rails/config/boot.rb +0 -3
- data/examples/rails/config/database.yml +0 -25
- data/examples/rails/config/environment.rb +0 -5
- data/examples/rails/config/environments/development.rb +0 -53
- data/examples/rails/config/environments/production.rb +0 -79
- data/examples/rails/config/environments/test.rb +0 -36
- data/examples/rails/config/initializers/application_controller_renderer.rb +0 -8
- data/examples/rails/config/initializers/assets.rb +0 -12
- data/examples/rails/config/initializers/backtrace_silencers.rb +0 -7
- data/examples/rails/config/initializers/content_security_policy.rb +0 -25
- data/examples/rails/config/initializers/cookies_serializer.rb +0 -5
- data/examples/rails/config/initializers/filter_parameter_logging.rb +0 -4
- data/examples/rails/config/initializers/inflections.rb +0 -16
- data/examples/rails/config/initializers/mime_types.rb +0 -4
- data/examples/rails/config/initializers/wrap_parameters.rb +0 -14
- data/examples/rails/config/locales/en.yml +0 -33
- data/examples/rails/config/routes.rb +0 -5
- data/examples/rails/config.ru +0 -5
- data/examples/rails/data/1-hello-from-parklife.txt +0 -3
- data/examples/rails/data/2-hello-again.txt +0 -3
- data/examples/rails/data/3-magic-number.txt +0 -3
- data/examples/rails/db/migrate/20190507172823_create_posts.rb +0 -11
- data/examples/rails/db/schema.rb +0 -24
- data/examples/rails/db/seeds.rb +0 -10
- data/examples/rails/parklife-build +0 -25
- data/examples/rails/public/404.html +0 -67
- data/examples/rails/public/422.html +0 -67
- data/examples/rails/public/500.html +0 -66
- data/examples/rails/public/apple-touch-icon-precomposed.png +0 -0
- data/examples/rails/public/apple-touch-icon.png +0 -0
- data/examples/rails/public/favicon.ico +0 -0
- data/examples/rails/public/robots.txt +0 -1
- data/examples/sinatra/.gitignore +0 -2
- data/examples/sinatra/Gemfile +0 -4
- data/examples/sinatra/Parkfile +0 -19
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parklife
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Pickles
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -52,48 +52,6 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: bundler
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rake
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rspec
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
55
|
description:
|
98
56
|
email:
|
99
57
|
- spideryoung@gmail.com
|
@@ -105,6 +63,7 @@ files:
|
|
105
63
|
- ".github/workflows/tests.yml"
|
106
64
|
- ".gitignore"
|
107
65
|
- ".rspec"
|
66
|
+
- ".rubocop.yml"
|
108
67
|
- CHANGELOG.md
|
109
68
|
- CODE_OF_CONDUCT.md
|
110
69
|
- Gemfile
|
@@ -113,67 +72,6 @@ files:
|
|
113
72
|
- Rakefile
|
114
73
|
- bin/console
|
115
74
|
- bin/setup
|
116
|
-
- examples/rack/.gitignore
|
117
|
-
- examples/rack/Gemfile
|
118
|
-
- examples/rack/Parkfile
|
119
|
-
- examples/rails/.gitignore
|
120
|
-
- examples/rails/Gemfile
|
121
|
-
- examples/rails/Parkfile
|
122
|
-
- examples/rails/Rakefile
|
123
|
-
- examples/rails/app/assets/config/manifest.js
|
124
|
-
- examples/rails/app/assets/images/.keep
|
125
|
-
- examples/rails/app/assets/stylesheets/application.css
|
126
|
-
- examples/rails/app/assets/stylesheets/global.css
|
127
|
-
- examples/rails/app/controllers/application_controller.rb
|
128
|
-
- examples/rails/app/controllers/posts_controller.rb
|
129
|
-
- examples/rails/app/helpers/application_helper.rb
|
130
|
-
- examples/rails/app/jobs/application_job.rb
|
131
|
-
- examples/rails/app/models/application_record.rb
|
132
|
-
- examples/rails/app/models/post.rb
|
133
|
-
- examples/rails/app/views/layouts/application.html.erb
|
134
|
-
- examples/rails/app/views/posts/index.html.erb
|
135
|
-
- examples/rails/app/views/posts/show.html.erb
|
136
|
-
- examples/rails/bin/bundle
|
137
|
-
- examples/rails/bin/rails
|
138
|
-
- examples/rails/bin/rake
|
139
|
-
- examples/rails/bin/setup
|
140
|
-
- examples/rails/bin/update
|
141
|
-
- examples/rails/config.ru
|
142
|
-
- examples/rails/config/application.rb
|
143
|
-
- examples/rails/config/boot.rb
|
144
|
-
- examples/rails/config/database.yml
|
145
|
-
- examples/rails/config/environment.rb
|
146
|
-
- examples/rails/config/environments/development.rb
|
147
|
-
- examples/rails/config/environments/production.rb
|
148
|
-
- examples/rails/config/environments/test.rb
|
149
|
-
- examples/rails/config/initializers/application_controller_renderer.rb
|
150
|
-
- examples/rails/config/initializers/assets.rb
|
151
|
-
- examples/rails/config/initializers/backtrace_silencers.rb
|
152
|
-
- examples/rails/config/initializers/content_security_policy.rb
|
153
|
-
- examples/rails/config/initializers/cookies_serializer.rb
|
154
|
-
- examples/rails/config/initializers/filter_parameter_logging.rb
|
155
|
-
- examples/rails/config/initializers/inflections.rb
|
156
|
-
- examples/rails/config/initializers/mime_types.rb
|
157
|
-
- examples/rails/config/initializers/wrap_parameters.rb
|
158
|
-
- examples/rails/config/locales/en.yml
|
159
|
-
- examples/rails/config/routes.rb
|
160
|
-
- examples/rails/data/1-hello-from-parklife.txt
|
161
|
-
- examples/rails/data/2-hello-again.txt
|
162
|
-
- examples/rails/data/3-magic-number.txt
|
163
|
-
- examples/rails/db/migrate/20190507172823_create_posts.rb
|
164
|
-
- examples/rails/db/schema.rb
|
165
|
-
- examples/rails/db/seeds.rb
|
166
|
-
- examples/rails/parklife-build
|
167
|
-
- examples/rails/public/404.html
|
168
|
-
- examples/rails/public/422.html
|
169
|
-
- examples/rails/public/500.html
|
170
|
-
- examples/rails/public/apple-touch-icon-precomposed.png
|
171
|
-
- examples/rails/public/apple-touch-icon.png
|
172
|
-
- examples/rails/public/favicon.ico
|
173
|
-
- examples/rails/public/robots.txt
|
174
|
-
- examples/sinatra/.gitignore
|
175
|
-
- examples/sinatra/Gemfile
|
176
|
-
- examples/sinatra/Parkfile
|
177
75
|
- exe/parklife
|
178
76
|
- lib/parklife.rb
|
179
77
|
- lib/parklife/application.rb
|
@@ -185,6 +83,9 @@ files:
|
|
185
83
|
- lib/parklife/rails.rb
|
186
84
|
- lib/parklife/route.rb
|
187
85
|
- lib/parklife/route_set.rb
|
86
|
+
- lib/parklife/templates/Parkfile.erb
|
87
|
+
- lib/parklife/templates/github_pages.yml
|
88
|
+
- lib/parklife/templates/static_build.erb
|
188
89
|
- lib/parklife/utils.rb
|
189
90
|
- lib/parklife/version.rb
|
190
91
|
- parklife.gemspec
|
@@ -193,6 +94,7 @@ licenses:
|
|
193
94
|
- MIT
|
194
95
|
metadata:
|
195
96
|
changelog_uri: https://github.com/benpickles/parklife/blob/main/CHANGELOG.md
|
97
|
+
rubygems_mfa_required: 'true'
|
196
98
|
source_code_uri: https://github.com/benpickles/parklife
|
197
99
|
post_install_message:
|
198
100
|
rdoc_options: []
|
@@ -202,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
202
104
|
requirements:
|
203
105
|
- - ">="
|
204
106
|
- !ruby/object:Gem::Version
|
205
|
-
version:
|
107
|
+
version: 2.5.0
|
206
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
207
109
|
requirements:
|
208
110
|
- - ">="
|
data/examples/rack/.gitignore
DELETED
data/examples/rack/Gemfile
DELETED
data/examples/rack/Parkfile
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
require 'rack'
|
2
|
-
|
3
|
-
app = Proc.new { |env|
|
4
|
-
request = Rack::Request.new(env)
|
5
|
-
|
6
|
-
[
|
7
|
-
200,
|
8
|
-
{ 'Content-Type' => 'text/html' },
|
9
|
-
["Served from #{request.path}"]
|
10
|
-
]
|
11
|
-
}
|
12
|
-
|
13
|
-
Parklife.application.configure do |config|
|
14
|
-
config.app = app
|
15
|
-
end
|
16
|
-
|
17
|
-
Parklife.application.routes do
|
18
|
-
root
|
19
|
-
get 'foo'
|
20
|
-
get 'bar'
|
21
|
-
end
|
data/examples/rails/.gitignore
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
-
#
|
3
|
-
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
-
# or operating system, you probably want to add a global ignore instead:
|
5
|
-
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
-
|
7
|
-
# Ignore bundler config.
|
8
|
-
/.bundle
|
9
|
-
|
10
|
-
# Ignore the default SQLite database.
|
11
|
-
/db/*.sqlite3
|
12
|
-
/db/*.sqlite3-journal
|
13
|
-
|
14
|
-
# Ignore all logfiles and tempfiles.
|
15
|
-
/log/*
|
16
|
-
/tmp/*
|
17
|
-
|
18
|
-
|
19
|
-
/public/assets
|
20
|
-
.byebug_history
|
21
|
-
|
22
|
-
# Ignore master key for decrypting credentials and more.
|
23
|
-
/config/master.key
|
24
|
-
|
25
|
-
# Ignore Parklife build.
|
26
|
-
/build
|
27
|
-
|
28
|
-
Gemfile.lock
|
data/examples/rails/Gemfile
DELETED
data/examples/rails/Parkfile
DELETED
data/examples/rails/Rakefile
DELETED
File without changes
|
@@ -1,15 +0,0 @@
|
|
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, or any plugin's
|
6
|
-
* 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
|
-
*/
|
data/examples/rails/bin/bundle
DELETED
data/examples/rails/bin/rails
DELETED
data/examples/rails/bin/rake
DELETED
data/examples/rails/bin/setup
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require 'fileutils'
|
3
|
-
include FileUtils
|
4
|
-
|
5
|
-
# path to your application root.
|
6
|
-
APP_ROOT = File.expand_path('..', __dir__)
|
7
|
-
|
8
|
-
def system!(*args)
|
9
|
-
system(*args) || abort("\n== Command #{args} failed ==")
|
10
|
-
end
|
11
|
-
|
12
|
-
chdir APP_ROOT do
|
13
|
-
# This script is a starting point to setup your application.
|
14
|
-
# Add necessary setup steps to this file.
|
15
|
-
|
16
|
-
puts '== Installing dependencies =='
|
17
|
-
system! 'gem install bundler --conservative'
|
18
|
-
system('bundle check') || system!('bundle install')
|
19
|
-
|
20
|
-
# puts "\n== Copying sample files =="
|
21
|
-
# unless File.exist?('config/database.yml')
|
22
|
-
# cp 'config/database.yml.sample', 'config/database.yml'
|
23
|
-
# end
|
24
|
-
|
25
|
-
puts "\n== Preparing database =="
|
26
|
-
system! 'bin/rails db:setup'
|
27
|
-
|
28
|
-
puts "\n== Removing old logs and tempfiles =="
|
29
|
-
system! 'bin/rails log:clear tmp:clear'
|
30
|
-
|
31
|
-
puts "\n== Restarting application server =="
|
32
|
-
system! 'bin/rails restart'
|
33
|
-
end
|
data/examples/rails/bin/update
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require 'fileutils'
|
3
|
-
include FileUtils
|
4
|
-
|
5
|
-
# path to your application root.
|
6
|
-
APP_ROOT = File.expand_path('..', __dir__)
|
7
|
-
|
8
|
-
def system!(*args)
|
9
|
-
system(*args) || abort("\n== Command #{args} failed ==")
|
10
|
-
end
|
11
|
-
|
12
|
-
chdir APP_ROOT do
|
13
|
-
# This script is a way to update your development environment automatically.
|
14
|
-
# Add necessary update steps to this file.
|
15
|
-
|
16
|
-
puts '== Installing dependencies =='
|
17
|
-
system! 'gem install bundler --conservative'
|
18
|
-
system('bundle check') || system!('bundle install')
|
19
|
-
|
20
|
-
puts "\n== Updating database =="
|
21
|
-
system! 'bin/rails db:migrate'
|
22
|
-
|
23
|
-
puts "\n== Removing old logs and tempfiles =="
|
24
|
-
system! 'bin/rails log:clear tmp:clear'
|
25
|
-
|
26
|
-
puts "\n== Restarting application server =="
|
27
|
-
system! 'bin/rails restart'
|
28
|
-
end
|
@@ -1,35 +0,0 @@
|
|
1
|
-
require_relative 'boot'
|
2
|
-
|
3
|
-
require "rails"
|
4
|
-
# Pick the frameworks you want:
|
5
|
-
require "active_model/railtie"
|
6
|
-
require "active_job/railtie"
|
7
|
-
require "active_record/railtie"
|
8
|
-
# require "active_storage/engine"
|
9
|
-
require "action_controller/railtie"
|
10
|
-
# require "action_mailer/railtie"
|
11
|
-
require "action_view/railtie"
|
12
|
-
# require "action_cable/engine"
|
13
|
-
require "sprockets/railtie"
|
14
|
-
# require "rails/test_unit/railtie"
|
15
|
-
|
16
|
-
# Require the gems listed in Gemfile, including any gems
|
17
|
-
# you've limited to :test, :development, or :production.
|
18
|
-
Bundler.require(*Rails.groups)
|
19
|
-
|
20
|
-
module Example
|
21
|
-
class Application < Rails::Application
|
22
|
-
# Initialize configuration defaults for originally generated Rails version.
|
23
|
-
config.load_defaults 5.2
|
24
|
-
|
25
|
-
# Settings in config/environments/* take precedence over those specified here.
|
26
|
-
# Application configuration can go into files in config/initializers
|
27
|
-
# -- all .rb files in that directory are automatically loaded after loading
|
28
|
-
# the framework and any gems in your application.
|
29
|
-
|
30
|
-
# Don't generate system test files.
|
31
|
-
config.generators.system_tests = nil
|
32
|
-
|
33
|
-
config.secret_key_base = ENV['SECRET_KEY_BASE']
|
34
|
-
end
|
35
|
-
end
|
@@ -1,25 +0,0 @@
|
|
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: <%= ENV.fetch("RAILS_MAX_THREADS") { 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
|
@@ -1,53 +0,0 @@
|
|
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
|
-
# Run rails dev:cache to toggle caching.
|
17
|
-
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
18
|
-
config.action_controller.perform_caching = true
|
19
|
-
|
20
|
-
config.cache_store = :memory_store
|
21
|
-
config.public_file_server.headers = {
|
22
|
-
'Cache-Control' => "public, max-age=#{2.days.to_i}"
|
23
|
-
}
|
24
|
-
else
|
25
|
-
config.action_controller.perform_caching = false
|
26
|
-
|
27
|
-
config.cache_store = :null_store
|
28
|
-
end
|
29
|
-
|
30
|
-
# Print deprecation notices to the Rails logger.
|
31
|
-
config.active_support.deprecation = :log
|
32
|
-
|
33
|
-
# Raise an error on page load if there are pending migrations.
|
34
|
-
config.active_record.migration_error = :page_load
|
35
|
-
|
36
|
-
# Highlight code that triggered database queries in logs.
|
37
|
-
config.active_record.verbose_query_logs = true
|
38
|
-
|
39
|
-
# Debug mode disables concatenation and preprocessing of assets.
|
40
|
-
# This option may cause significant delays in view rendering with a large
|
41
|
-
# number of complex assets.
|
42
|
-
config.assets.debug = true
|
43
|
-
|
44
|
-
# Suppress logger output for asset requests.
|
45
|
-
config.assets.quiet = true
|
46
|
-
|
47
|
-
# Raises error for missing translations
|
48
|
-
# config.action_view.raise_on_missing_translations = true
|
49
|
-
|
50
|
-
# Use an evented file watcher to asynchronously detect changes in source code,
|
51
|
-
# routes, locales, etc. This feature depends on the listen gem.
|
52
|
-
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
53
|
-
end
|
@@ -1,79 +0,0 @@
|
|
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
|
-
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
|
18
|
-
# or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
|
19
|
-
# config.require_master_key = true
|
20
|
-
|
21
|
-
# Disable serving static files from the `/public` folder by default since
|
22
|
-
# Apache or NGINX already handles this.
|
23
|
-
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
24
|
-
|
25
|
-
# Compress CSS.
|
26
|
-
# config.assets.css_compressor = :sass
|
27
|
-
|
28
|
-
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
29
|
-
config.assets.compile = false
|
30
|
-
|
31
|
-
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
32
|
-
|
33
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
34
|
-
# config.action_controller.asset_host = 'http://assets.example.com'
|
35
|
-
|
36
|
-
# Specifies the header that your server uses for sending files.
|
37
|
-
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
38
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
39
|
-
|
40
|
-
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
41
|
-
# config.force_ssl = true
|
42
|
-
|
43
|
-
# Use the lowest log level to ensure availability of diagnostic information
|
44
|
-
# when problems arise.
|
45
|
-
config.log_level = :debug
|
46
|
-
|
47
|
-
# Prepend all log lines with the following tags.
|
48
|
-
config.log_tags = [ :request_id ]
|
49
|
-
|
50
|
-
# Use a different cache store in production.
|
51
|
-
# config.cache_store = :mem_cache_store
|
52
|
-
|
53
|
-
# Use a real queuing backend for Active Job (and separate queues per environment)
|
54
|
-
# config.active_job.queue_adapter = :resque
|
55
|
-
# config.active_job.queue_name_prefix = "example_#{Rails.env}"
|
56
|
-
|
57
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
-
# the I18n.default_locale when a translation cannot be found).
|
59
|
-
config.i18n.fallbacks = true
|
60
|
-
|
61
|
-
# Send deprecation notices to registered listeners.
|
62
|
-
config.active_support.deprecation = :notify
|
63
|
-
|
64
|
-
# Use default logging formatter so that PID and timestamp are not suppressed.
|
65
|
-
config.log_formatter = ::Logger::Formatter.new
|
66
|
-
|
67
|
-
# Use a different logger for distributed setups.
|
68
|
-
# require 'syslog/logger'
|
69
|
-
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
70
|
-
|
71
|
-
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
72
|
-
logger = ActiveSupport::Logger.new(STDOUT)
|
73
|
-
logger.formatter = config.log_formatter
|
74
|
-
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
75
|
-
end
|
76
|
-
|
77
|
-
# Do not dump schema after migrations.
|
78
|
-
config.active_record.dump_schema_after_migration = false
|
79
|
-
end
|
@@ -1,36 +0,0 @@
|
|
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
|
-
# Configure public file server for tests with Cache-Control for performance.
|
16
|
-
config.public_file_server.enabled = true
|
17
|
-
config.public_file_server.headers = {
|
18
|
-
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
19
|
-
}
|
20
|
-
|
21
|
-
# Show full error reports and disable caching.
|
22
|
-
config.consider_all_requests_local = true
|
23
|
-
config.action_controller.perform_caching = false
|
24
|
-
|
25
|
-
# Raise exceptions instead of rendering exception templates.
|
26
|
-
config.action_dispatch.show_exceptions = false
|
27
|
-
|
28
|
-
# Disable request forgery protection in test environment.
|
29
|
-
config.action_controller.allow_forgery_protection = false
|
30
|
-
|
31
|
-
# Print deprecation notices to the stderr.
|
32
|
-
config.active_support.deprecation = :stderr
|
33
|
-
|
34
|
-
# Raises error for missing translations
|
35
|
-
# config.action_view.raise_on_missing_translations = true
|
36
|
-
end
|