Skip to content

Commit

Permalink
Add Figaro and Omniauth Gems
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis committed Mar 1, 2017
1 parent 08c50c8 commit e348f39
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ gem 'bcrypt', '~> 3.1.7'

gem 'bootstrap', '~> 4.0.0.alpha6'

# Use Google oauth for authorization
gem 'omniauth-google-oauth2', '~> 0.2.1'

# Use Figaro for secure configuration
gem 'figaro'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
Expand Down
31 changes: 31 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ GEM
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.5.0)
public_suffix (~> 2.0, >= 2.0.2)
arel (7.1.4)
ast (2.3.0)
autoprefixer-rails (6.7.3)
Expand Down Expand Up @@ -67,7 +69,11 @@ GEM
factory_girl_rails (4.8.0)
factory_girl (~> 4.8.0)
railties (>= 3.0.0)
faraday (0.10.1)
multipart-post (>= 1.2, < 3)
ffi (1.9.17)
figaro (1.1.1)
thor (~> 0.14)
formatador (0.2.5)
globalid (0.3.7)
activesupport (>= 4.1.0)
Expand All @@ -85,6 +91,7 @@ GEM
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
hashie (3.5.4)
i18n (0.8.0)
jbuilder (2.6.1)
activesupport (>= 3.0.0, < 5.1)
Expand All @@ -94,6 +101,7 @@ GEM
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (2.0.3)
jwt (1.5.6)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
Expand All @@ -109,13 +117,33 @@ GEM
mini_portile2 (2.1.0)
minitest (5.10.1)
multi_json (1.12.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
nenv (0.3.0)
nio4r (1.2.1)
nokogiri (1.7.0.1)
mini_portile2 (~> 2.1.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
oauth2 (1.3.0)
faraday (>= 0.8, < 0.11)
jwt (~> 1.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
omniauth (1.6.1)
hashie (>= 3.4.6, < 3.6.0)
rack (>= 1.6.2, < 3)
omniauth-google-oauth2 (0.2.10)
addressable (~> 2.3)
jwt (~> 1.0)
multi_json (~> 1.3)
omniauth (>= 1.1.1)
omniauth-oauth2 (~> 1.3.1)
omniauth-oauth2 (1.3.1)
oauth2 (~> 1.0)
omniauth (~> 1.2)
parser (2.4.0.0)
ast (~> 2.2)
powerpack (0.1.1)
Expand All @@ -125,6 +153,7 @@ GEM
slop (~> 3.4)
pry-rails (0.3.5)
pry (>= 0.9.10)
public_suffix (2.0.5)
puma (3.7.0)
rack (2.0.1)
rack-test (0.6.3)
Expand Down Expand Up @@ -249,10 +278,12 @@ DEPENDENCIES
byebug
coffee-rails (~> 4.2)
factory_girl_rails
figaro
guard-rspec
jbuilder (~> 2.5)
jquery-rails
listen (~> 3.0.5)
omniauth-google-oauth2 (~> 0.2.1)
pry-rails
puma (~> 3.0)
rails (~> 5.0.1)
Expand Down

0 comments on commit e348f39

Please sign in to comment.