diff --git a/.gitignore b/.gitignore
index d28c5de8e..0b80f7823 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
*.sqlite3
*.log
-tmp/Gemfile.lock
\ No newline at end of file
+*.env
+*.ssl
+tmp/Gemfile.lock
diff --git a/Gemfile b/Gemfile
index 72da4c4f4..f755f5a79 100644
--- a/Gemfile
+++ b/Gemfile
@@ -32,6 +32,10 @@ gem 'turbolinks'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
+gem 'omniauth'
+gem 'omniauth-facebook'
+gem 'omniauth-rails_csrf_protection'
+gem 'dotenv-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
diff --git a/Gemfile.lock b/Gemfile.lock
index 18f0cddd3..767ee7f17 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -52,18 +52,33 @@ GEM
concurrent-ruby (1.1.5)
crass (1.0.5)
daemons (1.3.1)
+ dotenv (2.7.6)
+ dotenv-rails (2.7.6)
+ dotenv (= 2.7.6)
+ railties (>= 3.2)
erubis (2.7.0)
eventmachine (1.2.7)
execjs (2.7.0)
+ faraday (1.4.1)
+ faraday-excon (~> 1.1)
+ faraday-net_http (~> 1.0)
+ faraday-net_http_persistent (~> 1.1)
+ multipart-post (>= 1.2, < 3)
+ ruby2_keywords (>= 0.0.4)
+ faraday-excon (1.1.0)
+ faraday-net_http (1.0.1)
+ faraday-net_http_persistent (1.1.0)
ffi (1.11.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
+ hashie (4.1.0)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
jquery-rails (4.3.5)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
+ jwt (2.2.3)
loofah (2.3.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
@@ -73,13 +88,36 @@ GEM
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.11.3)
+ multi_json (1.15.0)
+ multi_xml (0.6.0)
+ multipart-post (2.1.1)
nio4r (2.4.0)
nokogiri (1.10.8)
mini_portile2 (~> 2.4.0)
+ oauth2 (1.4.7)
+ faraday (>= 0.8, < 2.0)
+ jwt (>= 1.0, < 3.0)
+ multi_json (~> 1.3)
+ multi_xml (~> 0.5)
+ rack (>= 1.2, < 3)
+ omniauth (2.0.4)
+ hashie (>= 3.4.6)
+ rack (>= 1.6.2, < 3)
+ rack-protection
+ omniauth-facebook (8.0.0)
+ omniauth-oauth2 (~> 1.2)
+ omniauth-oauth2 (1.7.1)
+ oauth2 (~> 1.4)
+ omniauth (>= 1.9, < 3)
+ omniauth-rails_csrf_protection (1.0.0)
+ actionpack (>= 4.2)
+ omniauth (~> 2.0)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rack (2.2.3)
+ rack-protection (2.1.0)
+ rack
rack-test (0.6.3)
rack (>= 1.0)
rails (5.0.7.2)
@@ -109,6 +147,7 @@ GEM
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
+ ruby2_keywords (0.0.4)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
@@ -153,7 +192,11 @@ PLATFORMS
DEPENDENCIES
byebug
coffee-rails (~> 4.1.0)
+ dotenv-rails
jquery-rails
+ omniauth
+ omniauth-facebook
+ omniauth-rails_csrf_protection
pry
rails (~> 5.0)
sass-rails (~> 5.0)
diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb
new file mode 100644
index 000000000..6a5836e78
--- /dev/null
+++ b/app/controllers/sessions_controller.rb
@@ -0,0 +1,19 @@
+class SessionsController < ApplicationController
+ def create
+ @user = User.find_or_create_by(uid: auth['uid']) do |u|
+ u.name = auth['info']['name']
+ u.email = auth['info']['email']
+ u.image = auth['info']['image']
+ end
+
+ session[:user_id] = @user.id
+
+ render 'welcome/home'
+ end
+
+ private
+
+ def auth
+ request.env['omniauth.auth']
+ end
+end
diff --git a/app/models/application_record.rb b/app/models/application_record.rb
new file mode 100644
index 000000000..10a4cba84
--- /dev/null
+++ b/app/models/application_record.rb
@@ -0,0 +1,3 @@
+class ApplicationRecord < ActiveRecord::Base
+ self.abstract_class = true
+end
diff --git a/app/models/user.rb b/app/models/user.rb
new file mode 100644
index 000000000..379658a50
--- /dev/null
+++ b/app/models/user.rb
@@ -0,0 +1,2 @@
+class User < ApplicationRecord
+end
diff --git a/app/views/welcome/home.html.erb b/app/views/welcome/home.html.erb
index 337e7f4b0..232ba71d4 100644
--- a/app/views/welcome/home.html.erb
+++ b/app/views/welcome/home.html.erb
@@ -1 +1,8 @@
-<%# Add the Facebook login link here %>
+<% if session[:user_id] %>
+
<%= @user.name %>
+ Email: <%= @user.email %>
+ Facebook UID: <%= @user.uid %>
+
+<% else %>
+ <%= link_to('Log in with Facebook!', '/auth/facebook', method: :post) %>
+<% end %>
diff --git a/config/application.rb b/config/application.rb
index ab6b17dc1..0a1dda47f 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -22,10 +22,10 @@ class Application < Rails::Application
# Do not swallow errors in after_commit/after_rollback callbacks.
config.active_record.raise_in_transactional_callbacks = true
-
+
# Commenting out this next line because it causes Chrome to cache the HTTPS protocol for the localhost
# domain, forcing students to have to clear the cache to work
- #config.force_ssl = true
+ config.force_ssl = true
end
end
diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb
new file mode 100644
index 000000000..22b807c19
--- /dev/null
+++ b/config/initializers/omniauth.rb
@@ -0,0 +1,3 @@
+Rails.application.config.middleware.use OmniAuth::Builder do
+ provider :facebook, ENV['FACEBOOK_KEY'], ENV['FACEBOOK_SECRET']
+end
diff --git a/config/routes.rb b/config/routes.rb
index f7e854806..c34d5a2d8 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,5 +1,6 @@
Rails.application.routes.draw do
root 'welcome#home'
+ get '/auth/facebook/callback' => 'sessions#create'
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".
diff --git a/db/migrate/20210512123302_create_users.rb b/db/migrate/20210512123302_create_users.rb
new file mode 100644
index 000000000..9800bfbcd
--- /dev/null
+++ b/db/migrate/20210512123302_create_users.rb
@@ -0,0 +1,12 @@
+class CreateUsers < ActiveRecord::Migration[5.0]
+ def change
+ create_table :users do |t|
+ t.string :name
+ t.string :email
+ t.string :image
+ t.string :uid
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 4dfbb1680..aced89e8e 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1,4 +1,3 @@
-# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
@@ -11,6 +10,15 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 0) do
+ActiveRecord::Schema.define(version: 20210512123302) do
+
+ create_table "users", force: :cascade do |t|
+ t.string "name"
+ t.string "email"
+ t.string "image"
+ t.string "uid"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
end
diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml
new file mode 100644
index 000000000..9a75bd251
--- /dev/null
+++ b/test/fixtures/users.yml
@@ -0,0 +1,13 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ name: MyString
+ email: MyString
+ image: MyString
+ uid: MyString
+
+two:
+ name: MyString
+ email: MyString
+ image: MyString
+ uid: MyString
diff --git a/test/models/user_test.rb b/test/models/user_test.rb
new file mode 100644
index 000000000..82f61e010
--- /dev/null
+++ b/test/models/user_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class UserTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/tmp/cache/assets/sprockets/v3.0/-1/-1c3ppGhwX94wtIb-MIdiZRBTur4dV0170hKOVXRatU.cache b/tmp/cache/assets/sprockets/v3.0/-1/-1c3ppGhwX94wtIb-MIdiZRBTur4dV0170hKOVXRatU.cache
new file mode 100644
index 000000000..8ae90df71
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-1/-1c3ppGhwX94wtIb-MIdiZRBTur4dV0170hKOVXRatU.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/0a/0aj4z62Hdq7_eONPlhJnfgSLYc9oGcC33HL9IVpcdbo.cache b/tmp/cache/assets/sprockets/v3.0/0a/0aj4z62Hdq7_eONPlhJnfgSLYc9oGcC33HL9IVpcdbo.cache
new file mode 100644
index 000000000..8052ed7fb
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0a/0aj4z62Hdq7_eONPlhJnfgSLYc9oGcC33HL9IVpcdbo.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/1e/1eJbysIXoiUgMyG2WRezehLNxwT6bMtJFxw_063-GnI.cache b/tmp/cache/assets/sprockets/v3.0/1e/1eJbysIXoiUgMyG2WRezehLNxwT6bMtJFxw_063-GnI.cache
new file mode 100644
index 000000000..81f7140f0
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/1e/1eJbysIXoiUgMyG2WRezehLNxwT6bMtJFxw_063-GnI.cache
@@ -0,0 +1 @@
+I"}app/assets/stylesheets/application.css?type=text/css&id=ba348170ee6a1f57b3bb18848358a50b2cb0dad80c6cac994f08ed4073171d2d:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/2_/2_P5OA5lPNhvzLmY9YnUsmlXoL5GX8oJFGe2Ve0tVkc.cache b/tmp/cache/assets/sprockets/v3.0/2_/2_P5OA5lPNhvzLmY9YnUsmlXoL5GX8oJFGe2Ve0tVkc.cache
new file mode 100644
index 000000000..d08e569fe
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/2_/2_P5OA5lPNhvzLmY9YnUsmlXoL5GX8oJFGe2Ve0tVkc.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=45b7d0ebd6d7c3eff868cdc67dddd6b6c0c5c3ceffaa8794d60ec71596f19c81:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/2n/2n1MaW7jzdFRVH0Kpx8Bo3sSNWE9BsAVxxS7uUwC2NA.cache b/tmp/cache/assets/sprockets/v3.0/2n/2n1MaW7jzdFRVH0Kpx8Bo3sSNWE9BsAVxxS7uUwC2NA.cache
new file mode 100644
index 000000000..0cbaaa59d
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2n/2n1MaW7jzdFRVH0Kpx8Bo3sSNWE9BsAVxxS7uUwC2NA.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/4L/4LcvRzMxTTRMiLBMrInWew7wz19VZ4JYwrAeeh3KSlQ.cache b/tmp/cache/assets/sprockets/v3.0/4L/4LcvRzMxTTRMiLBMrInWew7wz19VZ4JYwrAeeh3KSlQ.cache
new file mode 100644
index 000000000..58ded955e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/4L/4LcvRzMxTTRMiLBMrInWew7wz19VZ4JYwrAeeh3KSlQ.cache
@@ -0,0 +1 @@
+"%ónx|b[ģYxF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache b/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
new file mode 100644
index 000000000..419da84a5
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"9file-digest://app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI")file-digest://app/assets/stylesheets;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache b/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache
new file mode 100644
index 000000000..2b878edb7
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}#I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"8file-digest://app/assets/javascripts/application.js;TTI"$file-digest://app/assets/images;TTI"+file-digest://app/assets/images/jquery;TTI")file-digest://app/assets/javascripts;TTI"0file-digest://app/assets/javascripts/jquery;TTI")file-digest://app/assets/stylesheets;TTI"0file-digest://app/assets/stylesheets/jquery;TTI"cfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"jfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery;TTI"mfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTI"/file-digest://app/assets/images/jquery_ujs;TTI"4file-digest://app/assets/javascripts/jquery_ujs;TTI"4file-digest://app/assets/stylesheets/jquery_ujs;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs;TTI"qfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTI"/file-digest://app/assets/images/turbolinks;TTI"4file-digest://app/assets/javascripts/turbolinks;TTI"4file-digest://app/assets/stylesheets/turbolinks;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"`file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"kfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"^file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"ifile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"efile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"pfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks;TTI"sfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/BS/BSRsFCyVRkjH8tSJcOb9cTb59GMHIKS-CPbyP-FaY6w.cache b/tmp/cache/assets/sprockets/v3.0/BS/BSRsFCyVRkjH8tSJcOb9cTb59GMHIKS-CPbyP-FaY6w.cache
new file mode 100644
index 000000000..7ce10be4c
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/BS/BSRsFCyVRkjH8tSJcOb9cTb59GMHIKS-CPbyP-FaY6w.cache
@@ -0,0 +1 @@
+I"app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=f57b240c17b8b0c8dc7a23e5883bafc118613cf5fc0ac071b8d3ac7e64651777:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Bm/Bm0uDpOBzxRZyEn-5E_vhvclFzNGionG1DBrpWUajxM.cache b/tmp/cache/assets/sprockets/v3.0/Bm/Bm0uDpOBzxRZyEn-5E_vhvclFzNGionG1DBrpWUajxM.cache
new file mode 100644
index 000000000..5c5e1dcd9
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Bm/Bm0uDpOBzxRZyEn-5E_vhvclFzNGionG1DBrpWUajxM.cache
@@ -0,0 +1 @@
+"%uWljZxU>?]pcs
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/C0/C0JenWfyjtZueMNqPKawClO84KY69ahlgspVSo1vvoQ.cache b/tmp/cache/assets/sprockets/v3.0/C0/C0JenWfyjtZueMNqPKawClO84KY69ahlgspVSo1vvoQ.cache
new file mode 100644
index 000000000..9c62167c7
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/C0/C0JenWfyjtZueMNqPKawClO84KY69ahlgspVSo1vvoQ.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/CP/CPg16DDO4pP6qP53cNYgJGcmE44BcT6_lsfv8VKhOFc.cache b/tmp/cache/assets/sprockets/v3.0/CP/CPg16DDO4pP6qP53cNYgJGcmE44BcT6_lsfv8VKhOFc.cache
new file mode 100644
index 000000000..f4ef8e32a
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/CP/CPg16DDO4pP6qP53cNYgJGcmE44BcT6_lsfv8VKhOFc.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&id=84523d408048bed473af24fd90c7edba270db40c3d43309eb895181653be68ac:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache b/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache
new file mode 100644
index 000000000..4e82a6d26
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"?processors:type=text/css&file_type=text/css&pipeline=debug;TTI"9file-digest://app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI")file-digest://app/assets/stylesheets;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache b/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache
new file mode 100644
index 000000000..61642bf0d
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}$I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"[processors:type=application/javascript&file_type=application/javascript&pipeline=debug;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"mfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTI"qfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTI"sfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTI"$file-digest://app/assets/images;TTI"+file-digest://app/assets/images/jquery;TTI")file-digest://app/assets/javascripts;TTI"0file-digest://app/assets/javascripts/jquery;TTI")file-digest://app/assets/stylesheets;TTI"0file-digest://app/assets/stylesheets/jquery;TTI"cfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"jfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery;TTI"/file-digest://app/assets/images/jquery_ujs;TTI"4file-digest://app/assets/javascripts/jquery_ujs;TTI"4file-digest://app/assets/stylesheets/jquery_ujs;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs;TTI"/file-digest://app/assets/images/turbolinks;TTI"4file-digest://app/assets/javascripts/turbolinks;TTI"4file-digest://app/assets/stylesheets/turbolinks;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"`file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"kfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"^file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"ifile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"efile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"pfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/ES/ESlchc_dGeD-FuxXTCv4lLWtLJBL-uEhcA81t2aEkig.cache b/tmp/cache/assets/sprockets/v3.0/ES/ESlchc_dGeD-FuxXTCv4lLWtLJBL-uEhcA81t2aEkig.cache
new file mode 100644
index 000000000..7aaf37dfd
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/ES/ESlchc_dGeD-FuxXTCv4lLWtLJBL-uEhcA81t2aEkig.cache
@@ -0,0 +1 @@
+"%RmvS3.OLڹcƕq=_j
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/F1/F1Q4r-jRftViyy51SKYNNVKZdu9RVUKi7opGi531QgI.cache b/tmp/cache/assets/sprockets/v3.0/F1/F1Q4r-jRftViyy51SKYNNVKZdu9RVUKi7opGi531QgI.cache
new file mode 100644
index 000000000..c1d94656e
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/F1/F1Q4r-jRftViyy51SKYNNVKZdu9RVUKi7opGi531QgI.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/Fk/FkpRDOqbRvBKH36vJtPA022p0WKzEVQuxmFlVnmuZ0Y.cache b/tmp/cache/assets/sprockets/v3.0/Fk/FkpRDOqbRvBKH36vJtPA022p0WKzEVQuxmFlVnmuZ0Y.cache
new file mode 100644
index 000000000..59b348e26
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Fk/FkpRDOqbRvBKH36vJtPA022p0WKzEVQuxmFlVnmuZ0Y.cache
@@ -0,0 +1 @@
+"%d-K`8Y3/Ya~K
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Hy/HyleBWk2-t0IZI6MSTca9u3eI4yI5j64yXViE4UNC6w.cache b/tmp/cache/assets/sprockets/v3.0/Hy/HyleBWk2-t0IZI6MSTca9u3eI4yI5j64yXViE4UNC6w.cache
new file mode 100644
index 000000000..7ddc2ff26
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Hy/HyleBWk2-t0IZI6MSTca9u3eI4yI5j64yXViE4UNC6w.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=d9710e61982e8f0ce7a5e95ed0ca306b5e3c094aff8a811d050ed49a57499635:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/JU/JUfDM86Mx5-oxonGPBAQ4u1UdWSzOZ1my9bPkBVWKIc.cache b/tmp/cache/assets/sprockets/v3.0/JU/JUfDM86Mx5-oxonGPBAQ4u1UdWSzOZ1my9bPkBVWKIc.cache
new file mode 100644
index 000000000..2800ad3b2
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/JU/JUfDM86Mx5-oxonGPBAQ4u1UdWSzOZ1my9bPkBVWKIc.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/KE/KEaGCYkbhJUnueboGXewxbia9hnI175gDJtUHV_ifjw.cache b/tmp/cache/assets/sprockets/v3.0/KE/KEaGCYkbhJUnueboGXewxbia9hnI175gDJtUHV_ifjw.cache
new file mode 100644
index 000000000..6b9d23c57
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/KE/KEaGCYkbhJUnueboGXewxbia9hnI175gDJtUHV_ifjw.cache
@@ -0,0 +1 @@
+I"/usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=f8b8976e34742cff6683a3a6ba3b3867b8f5a3a76aaf433e3e3cc9e4d9b27369:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Kk/KkMDfSqiwH3k-RvpSnPIgjec26BXy1eKNaSr5XvZWY4.cache b/tmp/cache/assets/sprockets/v3.0/Kk/KkMDfSqiwH3k-RvpSnPIgjec26BXy1eKNaSr5XvZWY4.cache
new file mode 100644
index 000000000..32b1e5159
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Kk/KkMDfSqiwH3k-RvpSnPIgjec26BXy1eKNaSr5XvZWY4.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/MP/MPxqozfqY2ctS7tyBDCcJJ8iK2D3vfoDVhq7E1Yadys.cache b/tmp/cache/assets/sprockets/v3.0/MP/MPxqozfqY2ctS7tyBDCcJJ8iK2D3vfoDVhq7E1Yadys.cache
new file mode 100644
index 000000000..d4d70cd0f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/MP/MPxqozfqY2ctS7tyBDCcJJ8iK2D3vfoDVhq7E1Yadys.cache
@@ -0,0 +1 @@
+"%Ѱč@6HuZoXZgbh0WV
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache b/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
new file mode 100644
index 000000000..99c1ed4d7
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"9file-digest://app/assets/stylesheets/application.css;TTI")file-digest://app/assets/stylesheets;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/SD/SDyoy892pMGofSN3Uvffit_BwHjFGXBbikbAGfzcyOM.cache b/tmp/cache/assets/sprockets/v3.0/SD/SDyoy892pMGofSN3Uvffit_BwHjFGXBbikbAGfzcyOM.cache
new file mode 100644
index 000000000..5b105354e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/SD/SDyoy892pMGofSN3Uvffit_BwHjFGXBbikbAGfzcyOM.cache
@@ -0,0 +1 @@
+"%C6ܦM=Qu/,"c5u
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/VR/VRk-S85S5CMTJKUuWLpV8k-QwZbvRiatflzQ3YLZfFc.cache b/tmp/cache/assets/sprockets/v3.0/VR/VRk-S85S5CMTJKUuWLpV8k-QwZbvRiatflzQ3YLZfFc.cache
new file mode 100644
index 000000000..3218a482b
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/VR/VRk-S85S5CMTJKUuWLpV8k-QwZbvRiatflzQ3YLZfFc.cache
@@ -0,0 +1 @@
+"%~2%a5pLJe5-,$o\2
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Vc/VcoHwXZ7A3ja4DuFPw928si0HLgRSPELrWbg366-MGU.cache b/tmp/cache/assets/sprockets/v3.0/Vc/VcoHwXZ7A3ja4DuFPw928si0HLgRSPELrWbg366-MGU.cache
new file mode 100644
index 000000000..0cbaaa59d
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Vc/VcoHwXZ7A3ja4DuFPw928si0HLgRSPELrWbg366-MGU.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/WC/WCFdS_WICVBxVJN1W-fWeccE4MTiHyHK2J3CVV9CmtE.cache b/tmp/cache/assets/sprockets/v3.0/WC/WCFdS_WICVBxVJN1W-fWeccE4MTiHyHK2J3CVV9CmtE.cache
new file mode 100644
index 000000000..2800ad3b2
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/WC/WCFdS_WICVBxVJN1W-fWeccE4MTiHyHK2J3CVV9CmtE.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/WV/WVHYQkMEIqR22dINnriQmge2HsyuF5vInsMnJDqMiOA.cache b/tmp/cache/assets/sprockets/v3.0/WV/WVHYQkMEIqR22dINnriQmge2HsyuF5vInsMnJDqMiOA.cache
new file mode 100644
index 000000000..2800ad3b2
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/WV/WVHYQkMEIqR22dINnriQmge2HsyuF5vInsMnJDqMiOA.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Xx/XxWab7k5N4Fqsq7vkUIAfERBrL-JjgaGu3yuzzxXcHE.cache b/tmp/cache/assets/sprockets/v3.0/Xx/XxWab7k5N4Fqsq7vkUIAfERBrL-JjgaGu3yuzzxXcHE.cache
new file mode 100644
index 000000000..9944c1d88
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Xx/XxWab7k5N4Fqsq7vkUIAfERBrL-JjgaGu3yuzzxXcHE.cache
@@ -0,0 +1 @@
+"%xJg&k"UmXV;Fj
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/ZE/ZECCSKC4VBtxNBVilf6bzw75ufRtuBejROCGzCGCjyc.cache b/tmp/cache/assets/sprockets/v3.0/ZE/ZECCSKC4VBtxNBVilf6bzw75ufRtuBejROCGzCGCjyc.cache
new file mode 100644
index 000000000..d4d70cd0f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/ZE/ZECCSKC4VBtxNBVilf6bzw75ufRtuBejROCGzCGCjyc.cache
@@ -0,0 +1 @@
+"%Ѱč@6HuZoXZgbh0WV
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Zh/Zhj5RJVLATgrtAe8ZtgDlQllUrufS0Yw10PkqS9JxRI.cache b/tmp/cache/assets/sprockets/v3.0/Zh/Zhj5RJVLATgrtAe8ZtgDlQllUrufS0Yw10PkqS9JxRI.cache
new file mode 100644
index 000000000..59b348e26
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Zh/Zhj5RJVLATgrtAe8ZtgDlQllUrufS0Yw10PkqS9JxRI.cache
@@ -0,0 +1 @@
+"%d-K`8Y3/Ya~K
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/cU/cUuTA45ACS-HcCqKZt77s7Bsd27nb1YY2Ezm2VTpFmc.cache b/tmp/cache/assets/sprockets/v3.0/cU/cUuTA45ACS-HcCqKZt77s7Bsd27nb1YY2Ezm2VTpFmc.cache
new file mode 100644
index 000000000..96895f780
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/cU/cUuTA45ACS-HcCqKZt77s7Bsd27nb1YY2Ezm2VTpFmc.cache
@@ -0,0 +1 @@
+I"app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=d3f1edd0d73878a9b1db189c9781746062a4bd688745a6cf4e9e905ccdda1f3d:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/em/emcM5V8Jq8brR-fIatrLrW2f19ZLzAMdnhQ5lEzeQTQ.cache b/tmp/cache/assets/sprockets/v3.0/em/emcM5V8Jq8brR-fIatrLrW2f19ZLzAMdnhQ5lEzeQTQ.cache
new file mode 100644
index 000000000..0cbaaa59d
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/em/emcM5V8Jq8brR-fIatrLrW2f19ZLzAMdnhQ5lEzeQTQ.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/fW/fWwpy_eFlyCiBFSNUjK3FU-7KW-AlEs52xtUTQ_vgs0.cache b/tmp/cache/assets/sprockets/v3.0/fW/fWwpy_eFlyCiBFSNUjK3FU-7KW-AlEs52xtUTQ_vgs0.cache
new file mode 100644
index 000000000..47e05f336
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/fW/fWwpy_eFlyCiBFSNUjK3FU-7KW-AlEs52xtUTQ_vgs0.cache
@@ -0,0 +1 @@
+"%`
/F Y(}HR
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/hT/hTjke7M5izsI6W4mS_JOhmiygzU2aCBEwzjsqheiK_w.cache b/tmp/cache/assets/sprockets/v3.0/hT/hTjke7M5izsI6W4mS_JOhmiygzU2aCBEwzjsqheiK_w.cache
new file mode 100644
index 000000000..4853aabc3
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hT/hTjke7M5izsI6W4mS_JOhmiygzU2aCBEwzjsqheiK_w.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/hp/hpFmlkJy5JKOBMHetvAcImsDuzhTCxvCMZ-fasY5yWg.cache b/tmp/cache/assets/sprockets/v3.0/hp/hpFmlkJy5JKOBMHetvAcImsDuzhTCxvCMZ-fasY5yWg.cache
new file mode 100644
index 000000000..47e05f336
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/hp/hpFmlkJy5JKOBMHetvAcImsDuzhTCxvCMZ-fasY5yWg.cache
@@ -0,0 +1 @@
+"%`
/F Y(}HR
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache b/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache
new file mode 100644
index 000000000..1831b0dbf
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache
@@ -0,0 +1,2 @@
+[o:Set:
+@hash}$I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"mfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTI"qfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTI"sfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTI"$file-digest://app/assets/images;TTI"+file-digest://app/assets/images/jquery;TTI")file-digest://app/assets/javascripts;TTI"0file-digest://app/assets/javascripts/jquery;TTI")file-digest://app/assets/stylesheets;TTI"0file-digest://app/assets/stylesheets/jquery;TTI"cfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"jfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery;TTI"/file-digest://app/assets/images/jquery_ujs;TTI"4file-digest://app/assets/javascripts/jquery_ujs;TTI"4file-digest://app/assets/stylesheets/jquery_ujs;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs;TTI"/file-digest://app/assets/images/turbolinks;TTI"4file-digest://app/assets/javascripts/turbolinks;TTI"4file-digest://app/assets/stylesheets/turbolinks;TTI"nfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"`file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"kfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"^file-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"ifile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"efile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"pfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/mZ/mZS09aAw646kw6RB4Iiv5DdhZmEJyiu0vmbqhmR83DY.cache b/tmp/cache/assets/sprockets/v3.0/mZ/mZS09aAw646kw6RB4Iiv5DdhZmEJyiu0vmbqhmR83DY.cache
new file mode 100644
index 000000000..6e10cf81e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/mZ/mZS09aAw646kw6RB4Iiv5DdhZmEJyiu0vmbqhmR83DY.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"qfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/n9/n9aqCzodzUnBFAbKlYTCojOsCAaex2ZbVyWgS2Bh9Kg.cache b/tmp/cache/assets/sprockets/v3.0/n9/n9aqCzodzUnBFAbKlYTCojOsCAaex2ZbVyWgS2Bh9Kg.cache
new file mode 100644
index 000000000..383bdf1c8
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/n9/n9aqCzodzUnBFAbKlYTCojOsCAaex2ZbVyWgS2Bh9Kg.cache
@@ -0,0 +1 @@
+"%/.?Ȳ0-HqNc2{Mrb
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/oI/oIEnfBCEYTViDwCioyx_l4BmfJ21Oji8vScwu9kzhzI.cache b/tmp/cache/assets/sprockets/v3.0/oI/oIEnfBCEYTViDwCioyx_l4BmfJ21Oji8vScwu9kzhzI.cache
new file mode 100644
index 000000000..47e05f336
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/oI/oIEnfBCEYTViDwCioyx_l4BmfJ21Oji8vScwu9kzhzI.cache
@@ -0,0 +1 @@
+"%`
/F Y(}HR
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/pX/pX0sWo-KLnqxKdps5vFEM7a4hIxRxiwSAsQozjCxK_I.cache b/tmp/cache/assets/sprockets/v3.0/pX/pX0sWo-KLnqxKdps5vFEM7a4hIxRxiwSAsQozjCxK_I.cache
new file mode 100644
index 000000000..e4d0c5d35
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/pX/pX0sWo-KLnqxKdps5vFEM7a4hIxRxiwSAsQozjCxK_I.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/q3/q3v2Fpzt6SiWXc8XvjAmsf3ENOl8cQDoj5I0tGcDiZ4.cache b/tmp/cache/assets/sprockets/v3.0/q3/q3v2Fpzt6SiWXc8XvjAmsf3ENOl8cQDoj5I0tGcDiZ4.cache
new file mode 100644
index 000000000..e510b7884
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/q3/q3v2Fpzt6SiWXc8XvjAmsf3ENOl8cQDoj5I0tGcDiZ4.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/qm/qmUIMtGz5nNAMMrEyLWIXk4nBaAMsTZMz4p90WHbmTo.cache b/tmp/cache/assets/sprockets/v3.0/qm/qmUIMtGz5nNAMMrEyLWIXk4nBaAMsTZMz4p90WHbmTo.cache
new file mode 100644
index 000000000..7aaf37dfd
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/qm/qmUIMtGz5nNAMMrEyLWIXk4nBaAMsTZMz4p90WHbmTo.cache
@@ -0,0 +1 @@
+"%RmvS3.OLڹcƕq=_j
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/um/umpoh_W0-NUZAO_AlfvJXL5xVGFVSrG9p8xlbVAxL-E.cache b/tmp/cache/assets/sprockets/v3.0/um/umpoh_W0-NUZAO_AlfvJXL5xVGFVSrG9p8xlbVAxL-E.cache
new file mode 100644
index 000000000..c0b03c387
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/um/umpoh_W0-NUZAO_AlfvJXL5xVGFVSrG9p8xlbVAxL-E.cache
@@ -0,0 +1 @@
+I"/usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js?type=application/javascript&pipeline=self&id=b85d7a206095bf52278577ca17cd4354584739e1519a3560b8a60d44bfd1c2a5:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/vW/vWWZ1_9eViwoNWmn4Xvwn-pHIFy02wRVu7PeoPopUpk.cache b/tmp/cache/assets/sprockets/v3.0/vW/vWWZ1_9eViwoNWmn4Xvwn-pHIFy02wRVu7PeoPopUpk.cache
new file mode 100644
index 000000000..54f532800
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/vW/vWWZ1_9eViwoNWmn4Xvwn-pHIFy02wRVu7PeoPopUpk.cache
@@ -0,0 +1 @@
+I"/usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js?type=application/javascript&pipeline=self&id=a37af8862f02fcdb8c7d738d3b5632c17de48c5fc9cc435e646f1693325587d7:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/vX/vXLvwgi3uVGV2bUlxeDBYKH8PSPDA0Td1jAkrp9OThw.cache b/tmp/cache/assets/sprockets/v3.0/vX/vXLvwgi3uVGV2bUlxeDBYKH8PSPDA0Td1jAkrp9OThw.cache
new file mode 100644
index 000000000..6c8e1bbf7
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/vX/vXLvwgi3uVGV2bUlxeDBYKH8PSPDA0Td1jAkrp9OThw.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"mfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/wo/wo2RYmKKztBZ6Kj89TSTSqwCIyZ1xp5Xd2wY87daQ9U.cache b/tmp/cache/assets/sprockets/v3.0/wo/wo2RYmKKztBZ6Kj89TSTSqwCIyZ1xp5Xd2wY87daQ9U.cache
new file mode 100644
index 000000000..59b348e26
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/wo/wo2RYmKKztBZ6Kj89TSTSqwCIyZ1xp5Xd2wY87daQ9U.cache
@@ -0,0 +1 @@
+"%d-K`8Y3/Ya~K
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/wz/wzjbWEUa9cxIHJey47NJfr_WHZWZiCwMhzjn-BcI2eM.cache b/tmp/cache/assets/sprockets/v3.0/wz/wzjbWEUa9cxIHJey47NJfr_WHZWZiCwMhzjn-BcI2eM.cache
new file mode 100644
index 000000000..d4d70cd0f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/wz/wzjbWEUa9cxIHJey47NJfr_WHZWZiCwMhzjn-BcI2eM.cache
@@ -0,0 +1 @@
+"%Ѱč@6HuZoXZgbh0WV
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/x4/x4mqInErj2hkZm0X6kqxta4YxAY2mUH4dreGLtxEzQE.cache b/tmp/cache/assets/sprockets/v3.0/x4/x4mqInErj2hkZm0X6kqxta4YxAY2mUH4dreGLtxEzQE.cache
new file mode 100644
index 000000000..7aaf37dfd
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/x4/x4mqInErj2hkZm0X6kqxta4YxAY2mUH4dreGLtxEzQE.cache
@@ -0,0 +1 @@
+"%RmvS3.OLڹcƕq=_j
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/xH/xHPXH5UGOZ_TKEaQvJ6ri5Cvp87THCEXcsG9b2NS0YI.cache b/tmp/cache/assets/sprockets/v3.0/xH/xHPXH5UGOZ_TKEaQvJ6ri5Cvp87THCEXcsG9b2NS0YI.cache
new file mode 100644
index 000000000..192e6350a
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/xH/xHPXH5UGOZ_TKEaQvJ6ri5Cvp87THCEXcsG9b2NS0YI.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/yu/yuvZKoefUnMxY5EELXDeNOnFzt86ijUblxJQ5E1_FeE.cache b/tmp/cache/assets/sprockets/v3.0/yu/yuvZKoefUnMxY5EELXDeNOnFzt86ijUblxJQ5E1_FeE.cache
new file mode 100644
index 000000000..915fb624e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/yu/yuvZKoefUnMxY5EELXDeNOnFzt86ijUblxJQ5E1_FeE.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"sfile-digest:///usr/local/rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTF
\ No newline at end of file