From 8f822b16dbf039ce4692b7a65c61f5c19d5445ee Mon Sep 17 00:00:00 2001 From: Rodrigo Pavano Date: Fri, 28 Jul 2017 20:18:12 -0300 Subject: [PATCH] Installed bootnstrap --- Gemfile | 1 + Gemfile.lock | 4 ++++ config/boot.rb | 1 + 3 files changed, 6 insertions(+) diff --git a/Gemfile b/Gemfile index df78d1c0d..44a8750e5 100644 --- a/Gemfile +++ b/Gemfile @@ -67,6 +67,7 @@ gem 'turnout' gem 'twilio-ruby' gem 'uglifier' gem 'webpacker', git: 'https://github.com/rails/webpacker.git' +gem 'bootsnap', require: false group :development, :test do gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index 799ef2c65..5af26a858 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -115,6 +115,8 @@ GEM aws-sigv4 (1.0.0) bcrypt (3.1.11) bindex (0.5.0) + bootsnap (1.1.2) + msgpack (~> 1.0) bootstrap-sass (3.3.7) autoprefixer-rails (>= 5.2.1) sass (>= 3.3.4) @@ -312,6 +314,7 @@ GEM minitest (5.10.2) money (6.9.0) i18n (>= 0.6.4, < 0.9) + msgpack (1.1.0) multi_json (1.12.1) multi_xml (0.6.0) multipart-post (2.0.0) @@ -569,6 +572,7 @@ DEPENDENCIES aws-sdk (~> 2) aws-sdk-rails bcrypt (~> 3.1.7) + bootsnap bootstrap-sass (~> 3.3.5) braintree (~> 2.54.0) browser (~> 2.0, >= 2.0.3) diff --git a/config/boot.rb b/config/boot.rb index 30f5120df..da8896b7b 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,3 +1,4 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) require 'bundler/setup' # Set up gems listed in the Gemfile. +require 'bootsnap/setup'