Top Level Namespace
Defined Under Namespace
Modules: K8, My Classes: Config, Entity, Event, EventEntity, Form, HelloAPI, MappingEntity, NotCorrect, NotExist, NotPermitted, Operation, ResourceEntity, RoleEntity, StrippedHtmlTemplate, UseCase, WelcomePage
Instance Method Summary collapse
-
#config ⇒ Object
create $config object.
-
#keight ⇒ Object
define Config class.
-
#production ⇒ Object
usage: puma -C config/server_puma.rb ref: github.com/puma/puma.
-
#WEB_CONCURRENCY ⇒ Object
usage: unicorn -p 9292 -E production -c ./config/server_unicorn.rb ref: devcenter.heroku.com/articles/rails-unicorn.
Instance Method Details
#config ⇒ Object
create $config object
6 |
# File 'lib/keight/skeleton/main.rb', line 6 require_relative 'config' |
#keight ⇒ Object
define Config class
25 |
# File 'lib/keight/skeleton/config.rb', line 25 require 'keight' |
#production ⇒ Object
usage: puma -C config/server_puma.rb ref: github.com/puma/puma
6 |
# File 'lib/keight/skeleton/config/server_puma.rb', line 6 environment 'production' |
#WEB_CONCURRENCY ⇒ Object
usage: unicorn -p 9292 -E production -c ./config/server_unicorn.rb ref: devcenter.heroku.com/articles/rails-unicorn
6 |
# File 'lib/keight/skeleton/config/server_unicorn.rb', line 6 worker_processes Integer(ENV["WEB_CONCURRENCY"] || 4) |