Added figaro ENV helper for easier testing.
This commit is contained in:
parent
31eac0c1fa
commit
b82b183863
3 changed files with 12 additions and 1 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -54,3 +54,8 @@
|
||||||
!/tmp
|
!/tmp
|
||||||
!/tmp/pids
|
!/tmp/pids
|
||||||
!/tmp/pids/.keep
|
!/tmp/pids/.keep
|
||||||
|
|
||||||
|
# exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own
|
||||||
|
# see: https://github.com/laserlemon/figaro
|
||||||
|
# Ignore application configuration
|
||||||
|
/config/application.yml
|
||||||
|
|
3
Gemfile
3
Gemfile
|
@ -112,6 +112,9 @@ group :development, :test do
|
||||||
|
|
||||||
# changelog generation
|
# changelog generation
|
||||||
gem 'github_changelog_generator'
|
gem 'github_changelog_generator'
|
||||||
|
|
||||||
|
# Setting ENV for testing purposes
|
||||||
|
gem 'figaro'
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'puma', group: :puma
|
gem 'puma', group: :puma
|
||||||
|
|
|
@ -112,6 +112,8 @@ GEM
|
||||||
faraday-http-cache (1.3.1)
|
faraday-http-cache (1.3.1)
|
||||||
faraday (~> 0.8)
|
faraday (~> 0.8)
|
||||||
ffi (1.9.14)
|
ffi (1.9.14)
|
||||||
|
figaro (1.1.1)
|
||||||
|
thor (~> 0.14)
|
||||||
formatador (0.2.5)
|
formatador (0.2.5)
|
||||||
github_changelog_generator (1.14.1)
|
github_changelog_generator (1.14.1)
|
||||||
activesupport
|
activesupport
|
||||||
|
@ -411,6 +413,7 @@ DEPENDENCIES
|
||||||
email_verifier
|
email_verifier
|
||||||
eventmachine
|
eventmachine
|
||||||
execjs
|
execjs
|
||||||
|
figaro
|
||||||
github_changelog_generator
|
github_changelog_generator
|
||||||
guard
|
guard
|
||||||
guard-livereload
|
guard-livereload
|
||||||
|
@ -463,4 +466,4 @@ RUBY VERSION
|
||||||
ruby 2.3.1p112
|
ruby 2.3.1p112
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
1.13.6
|
1.13.7
|
||||||
|
|
Loading…
Reference in a new issue