diff --git a/.gitignore b/.gitignore index d28c5de8e..53a683ae2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.sqlite3 *.log -tmp/Gemfile.lock \ No newline at end of file +tmp/Gemfile.lock +.env \ No newline at end of file diff --git a/Gemfile b/Gemfile index 72da4c4f4..aebb1789d 100644 --- a/Gemfile +++ b/Gemfile @@ -33,6 +33,10 @@ gem 'turbolinks' # Use Capistrano for deployment # gem 'capistrano-rails', group: :development +gem 'omniauth' +gem 'omniauth-facebook' +gem 'dotenv-rails' + group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index f1add80b9..d6dcb6585 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -52,18 +52,26 @@ GEM concurrent-ruby (1.1.5) crass (1.0.5) daemons (1.3.1) + dotenv (2.7.5) + dotenv-rails (2.7.5) + dotenv (= 2.7.5) + railties (>= 3.2, < 6.1) erubis (2.7.0) eventmachine (1.2.7) execjs (2.7.0) + faraday (1.0.1) + multipart-post (>= 1.2, < 3) 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.1) loofah (2.3.1) crass (~> 1.0.2) nokogiri (>= 1.5.9) @@ -73,9 +81,26 @@ GEM mini_mime (1.0.2) mini_portile2 (2.4.0) minitest (5.11.3) + multi_json (1.14.1) + multi_xml (0.6.0) + multipart-post (2.1.1) nio4r (2.4.0) nokogiri (1.10.5) mini_portile2 (~> 2.4.0) + oauth2 (1.4.4) + faraday (>= 0.8, < 2.0) + jwt (>= 1.0, < 3.0) + multi_json (~> 1.3) + multi_xml (~> 0.5) + rack (>= 1.2, < 3) + omniauth (1.9.1) + hashie (>= 3.4.6) + rack (>= 1.6.2, < 3) + omniauth-facebook (6.0.0) + omniauth-oauth2 (~> 1.2) + omniauth-oauth2 (1.6.0) + oauth2 (~> 1.1) + omniauth (~> 1.9) pry (0.12.2) coderay (~> 1.1.0) method_source (~> 0.9.0) @@ -153,7 +178,10 @@ PLATFORMS DEPENDENCIES byebug coffee-rails (~> 4.1.0) + dotenv-rails jquery-rails + omniauth + omniauth-facebook pry rails (~> 5.0) sass-rails (~> 5.0) diff --git a/app/assets/javascripts/sessions.coffee b/app/assets/javascripts/sessions.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/sessions.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/javascripts/users.coffee b/app/assets/javascripts/users.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/users.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/sessions.scss b/app/assets/stylesheets/sessions.scss new file mode 100644 index 000000000..ccb1ed25b --- /dev/null +++ b/app/assets/stylesheets/sessions.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/users.scss b/app/assets/stylesheets/users.scss new file mode 100644 index 000000000..31a2eacb8 --- /dev/null +++ b/app/assets/stylesheets/users.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Users controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..396a556ab --- /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/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 000000000..3e74dea87 --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,2 @@ +class UsersController < ApplicationController +end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 000000000..309f8b2eb --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb new file mode 100644 index 000000000..2310a240d --- /dev/null +++ b/app/helpers/users_helper.rb @@ -0,0 +1,2 @@ +module UsersHelper +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..d1d4d27ef 100644 --- a/app/views/welcome/home.html.erb +++ b/app/views/welcome/home.html.erb @@ -1 +1,9 @@ <%# 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') %> +<% end %> \ No newline at end of file diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb new file mode 100644 index 000000000..a87ccef9b --- /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 \ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb index f7e854806..7c2bad62b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,8 @@ Rails.application.routes.draw do + resources :users 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/20200526212055_create_users.rb b/db/migrate/20200526212055_create_users.rb new file mode 100644 index 000000000..9800bfbcd --- /dev/null +++ b/db/migrate/20200526212055_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..575f7f5b8 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: 20200526212055) 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/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb new file mode 100644 index 000000000..6135ce6af --- /dev/null +++ b/test/controllers/sessions_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class SessionsControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # end +end diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb new file mode 100644 index 000000000..6c3da770c --- /dev/null +++ b/test/controllers/users_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class UsersControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # end +end diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 000000000..fc10908d1 --- /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: + email: + image: + uid: MyString + +two: + name: + email: + image: + 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/-5/-5fjJIlXL_KJWFfh31yG4vaDx8dw9Xog1YUhmoADiko.cache b/tmp/cache/assets/sprockets/v3.0/-5/-5fjJIlXL_KJWFfh31yG4vaDx8dw9Xog1YUhmoADiko.cache new file mode 100644 index 000000000..051e35f2d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-5/-5fjJIlXL_KJWFfh31yG4vaDx8dw9Xog1YUhmoADiko.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"|file-digest:///Users/tatyanascotce/.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/17/17ubBLAfkO54mc-A02R2ogRUedXvfWmqjsuLK0OEd7c.cache b/tmp/cache/assets/sprockets/v3.0/17/17ubBLAfkO54mc-A02R2ogRUedXvfWmqjsuLK0OEd7c.cache new file mode 100644 index 000000000..d4618e0ce --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/17/17ubBLAfkO54mc-A02R2ogRUedXvfWmqjsuLK0OEd7c.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"9file-digest://app/assets/javascripts/sessions.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1K/1KD1wTMt5kGXDEypGGQH0n5nJjDv8Ez6xaOV7T29uGk.cache b/tmp/cache/assets/sprockets/v3.0/1K/1KD1wTMt5kGXDEypGGQH0n5nJjDv8Ez6xaOV7T29uGk.cache new file mode 100644 index 000000000..847ac36ad --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1K/1KD1wTMt5kGXDEypGGQH0n5nJjDv8Ez6xaOV7T29uGk.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=9c9ae7f1e1079762aa43823433539386c680e8d0ddcad6a698c513a769dfda75:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2r/2rEUUEXQbBvVJGwhnrjxnco5RMs6Ayn-9732vfh0Vgo.cache b/tmp/cache/assets/sprockets/v3.0/2r/2rEUUEXQbBvVJGwhnrjxnco5RMs6Ayn-9732vfh0Vgo.cache new file mode 100644 index 000000000..e930c7d91 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2r/2rEUUEXQbBvVJGwhnrjxnco5RMs6Ayn-9732vfh0Vgo.cache @@ -0,0 +1 @@ +"%\OH\$*^7t}~~C/t͙ZJ \ 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..ab7632235 --- /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"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"7file-digest://app/assets/stylesheets/sessions.scss;TTI"4file-digest://app/assets/stylesheets/users.scss;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/66/6664eKfnqDP2F8GzAGEXkcdAWEs1Nu7DxaIvr01KOm4.cache b/tmp/cache/assets/sprockets/v3.0/66/6664eKfnqDP2F8GzAGEXkcdAWEs1Nu7DxaIvr01KOm4.cache new file mode 100644 index 000000000..f90eaead6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/66/6664eKfnqDP2F8GzAGEXkcdAWEs1Nu7DxaIvr01KOm4.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"~file-digest:///Users/tatyanascotce/.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/8a/8asTxWHvbMxW1PSQ4eC49ogV5tQ76ZJnxneUAUouBX4.cache b/tmp/cache/assets/sprockets/v3.0/8a/8asTxWHvbMxW1PSQ4eC49ogV5tQ76ZJnxneUAUouBX4.cache new file mode 100644 index 000000000..2c5a4dcd4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8a/8asTxWHvbMxW1PSQ4eC49ogV5tQ76ZJnxneUAUouBX4.cache differ 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..c073751b1 --- /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"nfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"ufile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery;TTI"xfile-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs;TTI"|file-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"kfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"vfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"ifile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"tfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"pfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"{file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks;TTI"~file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTI"9file-digest://app/assets/javascripts/sessions.coffee;TTI"6file-digest://app/assets/javascripts/users.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/BO/BO89Hmy5tccXxqJwd7pGlojRvs59NyhjP_ovA3jI_uc.cache b/tmp/cache/assets/sprockets/v3.0/BO/BO89Hmy5tccXxqJwd7pGlojRvs59NyhjP_ovA3jI_uc.cache new file mode 100644 index 000000000..e59565616 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/BO/BO89Hmy5tccXxqJwd7pGlojRvs59NyhjP_ovA3jI_uc.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/sessions.scss?type=text/css&pipeline=self&id=a3bc3310b41053ac2610e8a79fadfb884ede0e6037b258746dd43d1497c55d8d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bi/BiJkJvD6MOItHPIwL1HYfl0wtn30U_e90lJeqcxJHUc.cache b/tmp/cache/assets/sprockets/v3.0/Bi/BiJkJvD6MOItHPIwL1HYfl0wtn30U_e90lJeqcxJHUc.cache new file mode 100644 index 000000000..4442945cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Bi/BiJkJvD6MOItHPIwL1HYfl0wtn30U_e90lJeqcxJHUc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CF/CFiIesw_EsHy4N3zzHxjfFhXP4EiEjOv5ZpI9XR_Wjc.cache b/tmp/cache/assets/sprockets/v3.0/CF/CFiIesw_EsHy4N3zzHxjfFhXP4EiEjOv5ZpI9XR_Wjc.cache new file mode 100644 index 000000000..9944c1d88 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/CF/CFiIesw_EsHy4N3zzHxjfFhXP4EiEjOv5ZpI9XR_Wjc.cache @@ -0,0 +1 @@ +"%xJg&k"UmXV;Fj \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/CT/CTWbdYiaawoGXAkrxPSYfqFvcZ6CqKCgSlY1eZBwDtI.cache b/tmp/cache/assets/sprockets/v3.0/CT/CTWbdYiaawoGXAkrxPSYfqFvcZ6CqKCgSlY1eZBwDtI.cache new file mode 100644 index 000000000..47e05f336 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/CT/CTWbdYiaawoGXAkrxPSYfqFvcZ6CqKCgSlY1eZBwDtI.cache @@ -0,0 +1 @@ +"%` /F Y(}HR \ 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..5a647358e --- /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"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"7file-digest://app/assets/stylesheets/sessions.scss;TTI"4file-digest://app/assets/stylesheets/users.scss;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/DW/DWrmTEsL55g2_umHOUXU_RnD5GEOqoj_YmjJuj2HXNo.cache b/tmp/cache/assets/sprockets/v3.0/DW/DWrmTEsL55g2_umHOUXU_RnD5GEOqoj_YmjJuj2HXNo.cache new file mode 100644 index 000000000..6ce6a0306 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/DW/DWrmTEsL55g2_umHOUXU_RnD5GEOqoj_YmjJuj2HXNo.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"7file-digest://app/assets/stylesheets/sessions.scss;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..dde2f5020 --- /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"xfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTI"|file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTI"~file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"9file-digest://app/assets/javascripts/sessions.coffee;TTI"6file-digest://app/assets/javascripts/users.coffee;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"nfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"ufile-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"kfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"vfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"ifile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"tfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"pfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"{file-digest:///Users/tatyanascotce/.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/Fb/Fba-ME1OW45DkkJ_9YC-49CmalMMMXPeAFtgaNmbAMk.cache b/tmp/cache/assets/sprockets/v3.0/Fb/Fba-ME1OW45DkkJ_9YC-49CmalMMMXPeAFtgaNmbAMk.cache new file mode 100644 index 000000000..1dabae843 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Fb/Fba-ME1OW45DkkJ_9YC-49CmalMMMXPeAFtgaNmbAMk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Gy/GyK8z6HrK1k2ldXvcZ4Un_cjI9RRvqdSXAgfkgi6T40.cache b/tmp/cache/assets/sprockets/v3.0/Gy/GyK8z6HrK1k2ldXvcZ4Un_cjI9RRvqdSXAgfkgi6T40.cache new file mode 100644 index 000000000..5b105354e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Gy/GyK8z6HrK1k2ldXvcZ4Un_cjI9RRvqdSXAgfkgi6T40.cache @@ -0,0 +1 @@ +"%C6ܦM=Qu/,"c5u \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/J5/J5K25urVEMRb_qy0otfeCJs6rmK6rOMG8lLvD4wkFRQ.cache b/tmp/cache/assets/sprockets/v3.0/J5/J5K25urVEMRb_qy0otfeCJs6rmK6rOMG8lLvD4wkFRQ.cache new file mode 100644 index 000000000..5428e6509 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/J5/J5K25urVEMRb_qy0otfeCJs6rmK6rOMG8lLvD4wkFRQ.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&id=6725ffe7e174954fec2960e0216c28948d6acf63ffd06a0ba0a3e1e43fb41f9b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/JR/JRTADWj-GsSgTkdnyBI_G6Fwo1usZEL0pZ_3ntgC_pU.cache b/tmp/cache/assets/sprockets/v3.0/JR/JRTADWj-GsSgTkdnyBI_G6Fwo1usZEL0pZ_3ntgC_pU.cache new file mode 100644 index 000000000..75dc4c983 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JR/JRTADWj-GsSgTkdnyBI_G6Fwo1usZEL0pZ_3ntgC_pU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ka/KaYsqOexXRtVvdJ7kZfWfBjk8ZLMPsRLrUR802AraHQ.cache b/tmp/cache/assets/sprockets/v3.0/Ka/KaYsqOexXRtVvdJ7kZfWfBjk8ZLMPsRLrUR802AraHQ.cache new file mode 100644 index 000000000..2e987ab18 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ka/KaYsqOexXRtVvdJ7kZfWfBjk8ZLMPsRLrUR802AraHQ.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"xfile-digest:///Users/tatyanascotce/.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/MQ/MQvu2WkmK5fiPmiWWh9vFx8c8KO06YdiLMC4NJfnyI4.cache b/tmp/cache/assets/sprockets/v3.0/MQ/MQvu2WkmK5fiPmiWWh9vFx8c8KO06YdiLMC4NJfnyI4.cache new file mode 100644 index 000000000..d2f891fcc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/MQ/MQvu2WkmK5fiPmiWWh9vFx8c8KO06YdiLMC4NJfnyI4.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"4file-digest://app/assets/stylesheets/users.scss;TTF \ 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..b0d643905 --- /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;TTI"7file-digest://app/assets/stylesheets/sessions.scss;TTI"4file-digest://app/assets/stylesheets/users.scss;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OI/OivQ7I4P825hbNvWnQyZ3aIr-Pw6BY_AImwFewHhm14.cache b/tmp/cache/assets/sprockets/v3.0/OI/OivQ7I4P825hbNvWnQyZ3aIr-Pw6BY_AImwFewHhm14.cache new file mode 100644 index 000000000..3218a482b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OI/OivQ7I4P825hbNvWnQyZ3aIr-Pw6BY_AImwFewHhm14.cache @@ -0,0 +1 @@ +"%~2%a5pLJe5-,$o\2 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Oz/OzXkCNcixKntWTWF9k1yXcRP5lcykbDZvpUw0we5P0E.cache b/tmp/cache/assets/sprockets/v3.0/Oz/OzXkCNcixKntWTWF9k1yXcRP5lcykbDZvpUw0we5P0E.cache new file mode 100644 index 000000000..bd89202c7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Oz/OzXkCNcixKntWTWF9k1yXcRP5lcykbDZvpUw0we5P0E.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/users.coffee?type=application/javascript&pipeline=self&id=368c11fce9dec4b4fd6381be281b708d815ac47b2ec8f3b8fc627543dcc15063:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/P9/P9OSkhz0_Zvbt5NOVbYVkGFGaRRIdlUdcL6aDTKHXJY.cache b/tmp/cache/assets/sprockets/v3.0/P9/P9OSkhz0_Zvbt5NOVbYVkGFGaRRIdlUdcL6aDTKHXJY.cache new file mode 100644 index 000000000..a51c19150 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/P9/P9OSkhz0_Zvbt5NOVbYVkGFGaRRIdlUdcL6aDTKHXJY.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/sessions.coffee?type=application/javascript&pipeline=self&id=560275d7d797e276290e42f0d1d3468bc916318cfbe62d2511df7a91bde948d3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Px/PxQtkem-xttnugOAJok_XP3aGcUWLiD0yHvx_1Dktl4.cache b/tmp/cache/assets/sprockets/v3.0/Px/PxQtkem-xttnugOAJok_XP3aGcUWLiD0yHvx_1Dktl4.cache new file mode 100644 index 000000000..ff9124f98 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Px/PxQtkem-xttnugOAJok_XP3aGcUWLiD0yHvx_1Dktl4.cache @@ -0,0 +1 @@ +"%D#+R=@7|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Qr/Qr00KAQ3HMny4HZth2fbIWj7I6BOejEBM3w4BCmTCvM.cache b/tmp/cache/assets/sprockets/v3.0/Qr/Qr00KAQ3HMny4HZth2fbIWj7I6BOejEBM3w4BCmTCvM.cache new file mode 100644 index 000000000..6dd9ed98f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Qr/Qr00KAQ3HMny4HZth2fbIWj7I6BOejEBM3w4BCmTCvM.cache @@ -0,0 +1 @@ +"%Wgj^mPuAXjO}V \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/RT/RTGGkzJIKfSs7c85Lp7pvjYLU9Vf1c3H-mLkTzVnrxI.cache b/tmp/cache/assets/sprockets/v3.0/RT/RTGGkzJIKfSs7c85Lp7pvjYLU9Vf1c3H-mLkTzVnrxI.cache new file mode 100644 index 000000000..d4d70cd0f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RT/RTGGkzJIKfSs7c85Lp7pvjYLU9Vf1c3H-mLkTzVnrxI.cache @@ -0,0 +1 @@ +"%Ѱč@6HuZoXZgbh0WV \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/SW/SWr2P0nP6VHIJSOcdDXrkUyGkxBKYpYpS7IA-qkLqBA.cache b/tmp/cache/assets/sprockets/v3.0/SW/SWr2P0nP6VHIJSOcdDXrkUyGkxBKYpYpS7IA-qkLqBA.cache new file mode 100644 index 000000000..1b038b6bf --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/SW/SWr2P0nP6VHIJSOcdDXrkUyGkxBKYpYpS7IA-qkLqBA.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/users.scss?type=text/css&pipeline=self&id=9e0f81bab63571ecdc184ae4c06ee8dbf7c85c997d3d4c70dad40913bee0ef64:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Sd/Sdx5UKotrugpTJRPOc-Kwnht58skO8eET3z4w3uNEnU.cache b/tmp/cache/assets/sprockets/v3.0/Sd/Sdx5UKotrugpTJRPOc-Kwnht58skO8eET3z4w3uNEnU.cache new file mode 100644 index 000000000..58ded955e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Sd/Sdx5UKotrugpTJRPOc-Kwnht58skO8eET3z4w3uNEnU.cache @@ -0,0 +1 @@ +"%ónx|b[ģYxF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Sd/sDNReBFur078fHCvHnxqH6OclQ1CD2K6-bIQ9Asn45M.cache b/tmp/cache/assets/sprockets/v3.0/Sd/sDNReBFur078fHCvHnxqH6OclQ1CD2K6-bIQ9Asn45M.cache new file mode 100644 index 000000000..7214c2f18 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Sd/sDNReBFur078fHCvHnxqH6OclQ1CD2K6-bIQ9Asn45M.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=5c92d497b1bc0675015e3e1e874adfa616ff971b7b15a98a614203f7d54c8456:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Su/SunPg7Ibp13B8cSVMYa8NCmtoXLPGeBlkPjZOrZYjCw.cache b/tmp/cache/assets/sprockets/v3.0/Su/SunPg7Ibp13B8cSVMYa8NCmtoXLPGeBlkPjZOrZYjCw.cache new file mode 100644 index 000000000..e0e2fc685 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Su/SunPg7Ibp13B8cSVMYa8NCmtoXLPGeBlkPjZOrZYjCw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/W_/W_UeqteJrwG9ChfovdllSB7qtx-BoU3mipJsB2y4HGs.cache b/tmp/cache/assets/sprockets/v3.0/W_/W_UeqteJrwG9ChfovdllSB7qtx-BoU3mipJsB2y4HGs.cache new file mode 100644 index 000000000..8a0a6ac5d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/W_/W_UeqteJrwG9ChfovdllSB7qtx-BoU3mipJsB2y4HGs.cache @@ -0,0 +1 @@ +I"/Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js?type=application/javascript&pipeline=self&id=ba2bedceadd32bf8a23df16969e58f501db6e48b43e0e978f855aae4f59a6d4d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YW/YW9lQDbmQXM5oUUekieeHkRUjqnzijoa7XH6Ew6JZNg.cache b/tmp/cache/assets/sprockets/v3.0/YW/YW9lQDbmQXM5oUUekieeHkRUjqnzijoa7XH6Ew6JZNg.cache new file mode 100644 index 000000000..8fc9ac0cf --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YW/YW9lQDbmQXM5oUUekieeHkRUjqnzijoa7XH6Ew6JZNg.cache @@ -0,0 +1 @@ +"%ɣL#.ZmW oΕAM4Y \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache b/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache new file mode 100644 index 000000000..736a55481 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache @@ -0,0 +1,5 @@ +I"$(function() { + + +}).call(this); +:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_T/_TDOlQml58w4KviflsnBrYRk7YhvfAq2snFPu0Xq6G0.cache b/tmp/cache/assets/sprockets/v3.0/_T/_TDOlQml58w4KviflsnBrYRk7YhvfAq2snFPu0Xq6G0.cache new file mode 100644 index 000000000..9d1aa6b28 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_T/_TDOlQml58w4KviflsnBrYRk7YhvfAq2snFPu0Xq6G0.cache @@ -0,0 +1,2 @@ +"%y &B"H +m),%܎Zt \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/br/brYDD41brBfCpP6B9XjaxI4Stu4c2v_G_yZyE-iXa9o.cache b/tmp/cache/assets/sprockets/v3.0/br/brYDD41brBfCpP6B9XjaxI4Stu4c2v_G_yZyE-iXa9o.cache new file mode 100644 index 000000000..ff9124f98 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/br/brYDD41brBfCpP6B9XjaxI4Stu4c2v_G_yZyE-iXa9o.cache @@ -0,0 +1 @@ +"%D#+R=@7|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/dE/dE6EpO1WHC6111fzJ2tMrS5v9cl_yI1YOhE_axlASLQ.cache b/tmp/cache/assets/sprockets/v3.0/dE/dE6EpO1WHC6111fzJ2tMrS5v9cl_yI1YOhE_axlASLQ.cache new file mode 100644 index 000000000..2800ad3b2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/dE/dE6EpO1WHC6111fzJ2tMrS5v9cl_yI1YOhE_axlASLQ.cache @@ -0,0 +1 @@ +"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/eo/eoT22lEKlBJUc0aJFB0lYP07F6EeMYpefSndJycrdYo.cache b/tmp/cache/assets/sprockets/v3.0/eo/eoT22lEKlBJUc0aJFB0lYP07F6EeMYpefSndJycrdYo.cache new file mode 100644 index 000000000..c0d98049e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/eo/eoT22lEKlBJUc0aJFB0lYP07F6EeMYpefSndJycrdYo.cache @@ -0,0 +1 @@ +I"/Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=2f49996244186e69c699e8d305e94b198f48a0eb276edd3987d86270ec1e5e0f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/f8/f8AuE9CZ_B-wE8q8P4IKoEiydGZFid_PUlPd3lvi45o.cache b/tmp/cache/assets/sprockets/v3.0/f8/f8AuE9CZ_B-wE8q8P4IKoEiydGZFid_PUlPd3lvi45o.cache new file mode 100644 index 000000000..1eea34ed8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/f8/f8AuE9CZ_B-wE8q8P4IKoEiydGZFid_PUlPd3lvi45o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ff/ffLFhCaxlTni3NdZRHXJd6v4RgcXuuypODanSarWUPA.cache b/tmp/cache/assets/sprockets/v3.0/ff/ffLFhCaxlTni3NdZRHXJd6v4RgcXuuypODanSarWUPA.cache new file mode 100644 index 000000000..5f8959a65 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ff/ffLFhCaxlTni3NdZRHXJd6v4RgcXuuypODanSarWUPA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gj/gjL7RfrYw7phGJ2YnO3MAx2QcgyVBXi5pAsYXjovgg4.cache b/tmp/cache/assets/sprockets/v3.0/gj/gjL7RfrYw7phGJ2YnO3MAx2QcgyVBXi5pAsYXjovgg4.cache new file mode 100644 index 000000000..0707a3c67 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gj/gjL7RfrYw7phGJ2YnO3MAx2QcgyVBXi5pAsYXjovgg4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/hG/hGLa6HSBxDRJ5sRTjif-9u5-KbPVcPbonBvSSVMoGPg.cache b/tmp/cache/assets/sprockets/v3.0/hG/hGLa6HSBxDRJ5sRTjif-9u5-KbPVcPbonBvSSVMoGPg.cache new file mode 100644 index 000000000..07889562b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hG/hGLa6HSBxDRJ5sRTjif-9u5-KbPVcPbonBvSSVMoGPg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/hO/hOBRsjPKLjigB1jCHKHwCwmKCfWjlv2rDXFq0lthdi8.cache b/tmp/cache/assets/sprockets/v3.0/hO/hOBRsjPKLjigB1jCHKHwCwmKCfWjlv2rDXFq0lthdi8.cache new file mode 100644 index 000000000..2f24ae433 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hO/hOBRsjPKLjigB1jCHKHwCwmKCfWjlv2rDXFq0lthdi8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/iG/iG-f88DcPhWuagh9fma1L2BfeWnU5Yqjc_biFrGuUWk.cache b/tmp/cache/assets/sprockets/v3.0/iG/iG-f88DcPhWuagh9fma1L2BfeWnU5Yqjc_biFrGuUWk.cache new file mode 100644 index 000000000..59b348e26 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/iG/iG-f88DcPhWuagh9fma1L2BfeWnU5Yqjc_biFrGuUWk.cache @@ -0,0 +1 @@ +"%d-K`8Y3͹/Ya~K \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/jD/jDrelWWDDk4nTsL4uvHZIUablGiJmsIYvXr-CgsPOuE.cache b/tmp/cache/assets/sprockets/v3.0/jD/jDrelWWDDk4nTsL4uvHZIUablGiJmsIYvXr-CgsPOuE.cache new file mode 100644 index 000000000..383bdf1c8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/jD/jDrelWWDDk4nTsL4uvHZIUablGiJmsIYvXr-CgsPOuE.cache @@ -0,0 +1 @@ +"%/.?Ȳ0-HqNc2{Mrb \ 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..60a2f7e11 --- /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"xfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js;TTI"|file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery_ujs.js;TTI"~file-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"9file-digest://app/assets/javascripts/sessions.coffee;TTI"6file-digest://app/assets/javascripts/users.coffee;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"nfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts;TTI"ufile-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.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"yfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/turbolinks;TTI"kfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts;TTI"vfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/coffee-rails-4.1.1/lib/assets/javascripts/turbolinks;TTI"ifile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled;TTI"tfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/actioncable-5.0.7.2/lib/assets/compiled/turbolinks;TTI"pfile-digest:///Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts;TTI"{file-digest:///Users/tatyanascotce/.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/m8/m8RV6Jib53pxfhAQaiTgUFJpfYn-raiX_ujaG-cnyP0.cache b/tmp/cache/assets/sprockets/v3.0/m8/m8RV6Jib53pxfhAQaiTgUFJpfYn-raiX_ujaG-cnyP0.cache new file mode 100644 index 000000000..fed56ae63 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/m8/m8RV6Jib53pxfhAQaiTgUFJpfYn-raiX_ujaG-cnyP0.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"6file-digest://app/assets/javascripts/users.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ml/ml3dyAr0idG19LxcHPkDK_PPqpDWv0c-RRADhQLUg7c.cache b/tmp/cache/assets/sprockets/v3.0/ml/ml3dyAr0idG19LxcHPkDK_PPqpDWv0c-RRADhQLUg7c.cache new file mode 100644 index 000000000..530dfc00d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ml/ml3dyAr0idG19LxcHPkDK_PPqpDWv0c-RRADhQLUg7c.cache @@ -0,0 +1 @@ +I"/Users/tatyanascotce/.rvm/gems/ruby-2.6.1/gems/jquery-rails-4.3.5/vendor/assets/javascripts/jquery.js?type=application/javascript&pipeline=self&id=745d955527b8163b03455305d15c231cdc1a3775622a7ff6503e1a7702309a7d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/mz/mzoW78ILFZ5CceyvHaaoYeybHoLJc7ZWskX6PGXV8Fc.cache b/tmp/cache/assets/sprockets/v3.0/mz/mzoW78ILFZ5CceyvHaaoYeybHoLJc7ZWskX6PGXV8Fc.cache new file mode 100644 index 000000000..90989de74 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/mz/mzoW78ILFZ5CceyvHaaoYeybHoLJc7ZWskX6PGXV8Fc.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=5d85f942da5dcbfeb8a8ba6a8d46cba0a0eb20b5f9f604b84ba0d8a261501097:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nf/nfecV1ZXF4jarGvQKPU-amSOQ-_ScfZVG4xSxxmNXTY.cache b/tmp/cache/assets/sprockets/v3.0/nf/nfecV1ZXF4jarGvQKPU-amSOQ-_ScfZVG4xSxxmNXTY.cache new file mode 100644 index 000000000..a70ff08c3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nf/nfecV1ZXF4jarGvQKPU-amSOQ-_ScfZVG4xSxxmNXTY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/pZ/pZpM3toJGD3_i0XAXDjOgPmxnolKScKPJFLfUEAqQIs.cache b/tmp/cache/assets/sprockets/v3.0/pZ/pZpM3toJGD3_i0XAXDjOgPmxnolKScKPJFLfUEAqQIs.cache new file mode 100644 index 000000000..7c18cd090 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/pZ/pZpM3toJGD3_i0XAXDjOgPmxnolKScKPJFLfUEAqQIs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qC/qCIEUhMcNQj0D2ml3Gv2_81y6HedWnxYbYP7YAfWCkQ.cache b/tmp/cache/assets/sprockets/v3.0/qC/qCIEUhMcNQj0D2ml3Gv2_81y6HedWnxYbYP7YAfWCkQ.cache new file mode 100644 index 000000000..7678f9b02 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/qC/qCIEUhMcNQj0D2ml3Gv2_81y6HedWnxYbYP7YAfWCkQ.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=dda36d7c232f171c5cd53716b5ae5d0a290d49041911048f60d420bb95216a07:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tF/tF5YZGzuNWt_ibymz8-zydX9aGX1zVk7dwFyYRAie-I.cache b/tmp/cache/assets/sprockets/v3.0/tF/tF5YZGzuNWt_ibymz8-zydX9aGX1zVk7dwFyYRAie-I.cache new file mode 100644 index 000000000..cd4e92337 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/tF/tF5YZGzuNWt_ibymz8-zydX9aGX1zVk7dwFyYRAie-I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ts/tsAfJzVTHcCQyH2u8gcuY_MjMphyIMc4uwUmgSjcyK8.cache b/tmp/cache/assets/sprockets/v3.0/ts/tsAfJzVTHcCQyH2u8gcuY_MjMphyIMc4uwUmgSjcyK8.cache new file mode 100644 index 000000000..ef9eac034 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ts/tsAfJzVTHcCQyH2u8gcuY_MjMphyIMc4uwUmgSjcyK8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/u4/u4IfVFXJsda-bgiBK5B4wMLup7aLm1Z9AZqZKziqv1I.cache b/tmp/cache/assets/sprockets/v3.0/u4/u4IfVFXJsda-bgiBK5B4wMLup7aLm1Z9AZqZKziqv1I.cache new file mode 100644 index 000000000..5c5e1dcd9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/u4/u4IfVFXJsda-bgiBK5B4wMLup7aLm1Z9AZqZKziqv1I.cache @@ -0,0 +1 @@ +"%uWljZ xU>?]pcs \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/uv/uvsAnwSG8vLMaNE_9LO5qo88TTSB_-17JQ18Slrjoeo.cache b/tmp/cache/assets/sprockets/v3.0/uv/uvsAnwSG8vLMaNE_9LO5qo88TTSB_-17JQ18Slrjoeo.cache new file mode 100644 index 000000000..1ef35a349 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/uv/uvsAnwSG8vLMaNE_9LO5qo88TTSB_-17JQ18Slrjoeo.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=24fc692663c94fd480eefd32f70fb7cde383857035811696b76689be84e35c81:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/vm/vmeSIQvuKag-E1CsezxGjiaXUgb0aG1jBkao71b__rc.cache b/tmp/cache/assets/sprockets/v3.0/vm/vmeSIQvuKag-E1CsezxGjiaXUgb0aG1jBkao71b__rc.cache new file mode 100644 index 000000000..3d81d19bb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/vm/vmeSIQvuKag-E1CsezxGjiaXUgb0aG1jBkao71b__rc.cache differ