-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8081bdf
commit 366cc60
Showing
8 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,7 @@ | |
/log/* | ||
!/log/.keep | ||
/tmp | ||
|
||
config/settings.local.yml | ||
config/settings/*.local.yml | ||
config/environments/*.local.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ gem 'puma', '~> 2.9.1' | |
gem 'capybara' | ||
gem 'poltergeist', '>= 1.9.0' | ||
gem 'launchy' | ||
gem 'config' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Config.setup do |config| | ||
# Name of the constant exposing loaded settings | ||
config.const_name = 'Settings' | ||
|
||
# Ability to remove elements of the array set in earlier loaded settings file. For example value: '--'. | ||
# | ||
# config.knockout_prefix = nil | ||
|
||
# Load environment variables from the `ENV` object and override any settings defined in files. | ||
# | ||
# config.use_env = false | ||
|
||
# Define ENV variable prefix deciding which variables to load into config. | ||
# | ||
# config.env_prefix = 'Settings' | ||
|
||
# What string to use as level separator for settings loaded from ENV variables. Default value of '.' works well | ||
# with Heroku, but you might want to change it for example for '__' to easy override settings from command line, where | ||
# using dots in variable names might not be allowed (eg. Bash). | ||
# | ||
# config.env_separator = '.' | ||
|
||
# Ability to process variables names: | ||
# * nil - no change | ||
# * :downcase - convert to lower case | ||
# | ||
# config.env_converter = nil | ||
|
||
# Parse numeric values as integers instead of strings. | ||
# | ||
# config.env_parse_values = false | ||
end |
Empty file.
Empty file.
Empty file.
Empty file.