Skip to content

Commit 2851e92

Browse files
committedMay 10, 2016
Add dotenv and .env file
1 parent 008d2f2 commit 2851e92

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed
 

‎.env

Whitespace-only changes.

‎Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ File.open(File.expand_path('../.ruby-version', __FILE__), 'r') do |f|
66
ruby f.read.strip
77
end
88

9+
gem 'dotenv-rails', :groups => [:development]
910
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
1011
gem 'rails', '4.2.3'
1112
# Use postgresql as the database for Active Record

‎Gemfile.lock

+9-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ GEM
6363
thread_safe (~> 0.1)
6464
warden (~> 1.2.3)
6565
diff-lcs (1.2.5)
66+
dotenv (2.1.1)
67+
dotenv-rails (2.1.1)
68+
dotenv (= 2.1.1)
69+
railties (>= 4.0, < 5.1)
6670
em-websocket (0.5.1)
6771
eventmachine (>= 0.12.9)
6872
http_parser.rb (~> 0.6.0)
@@ -278,6 +282,7 @@ DEPENDENCIES
278282
coffee-rails (~> 4.1.0)
279283
database_cleaner
280284
devise
285+
dotenv-rails
281286
faraday
282287
guard
283288
guard-livereload
@@ -307,5 +312,8 @@ DEPENDENCIES
307312
uglifier (>= 1.3.0)
308313
unicorn
309314

315+
RUBY VERSION
316+
ruby 2.2.2p95
317+
310318
BUNDLED WITH
311-
1.11.2
319+
1.12.3

0 commit comments

Comments
 (0)
Please sign in to comment.