diff --git a/.gitignore b/.gitignore index dcc5b36..7f4b696 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1 @@ -# See https://help.github.com/articles/ignoring-files for more about ignoring files. -# -# If you find yourself ignoring temporary files generated by your text editor -# or operating system, you probably want to add a global ignore instead: -# git config --global core.excludesfile '~/.gitignore_global' - -# Ignore bundler config. -/.bundle - -# Ignore the default SQLite database. -/db/*.sqlite3 -/db/*.sqlite3-journal - -# Ignore all logfiles and tempfiles. -/log/* -/tmp/* -!/log/.keep -!/tmp/.keep - -/node_modules -/yarn-error.log - -.byebug_history +.editorconfig diff --git a/Gemfile b/Gemfile index 13ab512..45adcdc 100644 --- a/Gemfile +++ b/Gemfile @@ -8,8 +8,8 @@ end # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 5.1.4' -# Use sqlite3 as the database for Active Record -gem 'sqlite3' +# Use mysql á the database for Active Record +gem 'mysql2', '>=0.3.18', '<0.5' # Use Puma as the app server gem 'puma', '~> 3.7' # Use SCSS for stylesheets diff --git a/Gemfile.lock b/Gemfile.lock index 77b28a3..3c0ea02 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -86,6 +86,7 @@ GEM mini_portile2 (2.3.0) minitest (5.11.1) multi_json (1.13.1) + mysql2 (0.4.10) nio4r (2.2.0) nokogiri (1.8.1) mini_portile2 (~> 2.3.0) @@ -149,7 +150,6 @@ GEM actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) - sqlite3 (1.3.13) thor (0.20.0) thread_safe (0.3.6) tilt (2.0.8) @@ -180,13 +180,13 @@ DEPENDENCIES coffee-rails (~> 4.2) jbuilder (~> 2.5) listen (>= 3.0.5, < 3.2) + mysql2 (>= 0.3.18, < 0.5) puma (~> 3.7) rails (~> 5.1.4) sass-rails (~> 5.0) selenium-webdriver spring spring-watcher-listen (~> 2.0.0) - sqlite3 turbolinks (~> 5) tzinfo-data uglifier (>= 1.3.0) diff --git a/app/assets/javascripts/students.coffee b/app/assets/javascripts/students.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/students.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 0000000..24f83d1 --- /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/scaffolds.scss b/app/assets/stylesheets/scaffolds.scss new file mode 100644 index 0000000..6045188 --- /dev/null +++ b/app/assets/stylesheets/scaffolds.scss @@ -0,0 +1,84 @@ +body { + background-color: #fff; + color: #333; + margin: 33px; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { + color: #000; + + &:visited { + color: #666; + } + + &:hover { + color: #fff; + background-color: #000; + } +} + +th { + padding-bottom: 5px; +} + +td { + padding: 0 5px 7px; +} + +div { + &.field, &.actions { + margin-bottom: 10px; + } +} + +#notice { + color: green; +} + +.field_with_errors { + padding: 2px; + background-color: red; + display: table; +} + +#error_explanation { + width: 450px; + border: 2px solid red; + padding: 7px 7px 0; + margin-bottom: 20px; + background-color: #f0f0f0; + + h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px -7px 0; + background-color: #c00; + color: #fff; + } + + ul li { + font-size: 12px; + list-style: square; + } +} + +label { + display: block; +} diff --git a/app/assets/stylesheets/students.scss b/app/assets/stylesheets/students.scss new file mode 100644 index 0000000..f5e154d --- /dev/null +++ b/app/assets/stylesheets/students.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Students 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 0000000..31a2eac --- /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/admin/admin_controller.rb b/app/controllers/admin/admin_controller.rb new file mode 100644 index 0000000..65a61c3 --- /dev/null +++ b/app/controllers/admin/admin_controller.rb @@ -0,0 +1,8 @@ +class Admin::AdminController < ActionController::Base + def index + render html: 'Hello world' + end +end + + + \ No newline at end of file diff --git a/app/controllers/students_controller.rb b/app/controllers/students_controller.rb new file mode 100644 index 0000000..9a08285 --- /dev/null +++ b/app/controllers/students_controller.rb @@ -0,0 +1,74 @@ +class StudentsController < ApplicationController + before_action :set_student, only: [:show, :edit, :update, :destroy] + + # GET /students + # GET /students.json + def index + @students = Student.all + end + + # GET /students/1 + # GET /students/1.json + def show + end + + # GET /students/new + def new + @student = Student.new + end + + # GET /students/1/edit + def edit + end + + # POST /students + # POST /students.json + def create + @student = Student.new(student_params) + + respond_to do |format| + if @student.save + format.html { redirect_to @student, notice: 'Student was successfully created.' } + format.json { render :show, status: :created, location: @student } + else + format.html { render :new } + format.json { render json: @student.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /students/1 + # PATCH/PUT /students/1.json + def update + respond_to do |format| + if @student.update(student_params) + format.html { redirect_to @student, notice: 'Student was successfully updated.' } + format.json { render :show, status: :ok, location: @student } + else + format.html { render :edit } + format.json { render json: @student.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /students/1 + # DELETE /students/1.json + def destroy + @student.destroy + respond_to do |format| + format.html { redirect_to students_url, notice: 'Student was successfully destroyed.' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_student + @student = Student.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def student_params + params.require(:student).permit(:name, :address) + end +end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 0000000..46b6a95 --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,74 @@ +class UsersController < ApplicationController + before_action :set_user, only: [:show, :edit, :update, :destroy] + + # GET /users + # GET /users.json + def index + @users = User.all + end + + # GET /users/1 + # GET /users/1.json + def show + end + + # GET /users/new + def new + @user = User.new + end + + # GET /users/1/edit + def edit + end + + # POST /users + # POST /users.json + def create + @user = User.new(user_params) + + respond_to do |format| + if @user.save + format.html { redirect_to @user, notice: 'User was successfully created.' } + format.json { render :show, status: :created, location: @user } + else + format.html { render :new } + format.json { render json: @user.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /users/1 + # PATCH/PUT /users/1.json + def update + respond_to do |format| + if @user.update(user_params) + format.html { redirect_to @user, notice: 'User was successfully updated.' } + format.json { render :show, status: :ok, location: @user } + else + format.html { render :edit } + format.json { render json: @user.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /users/1 + # DELETE /users/1.json + def destroy + @user.destroy + respond_to do |format| + format.html { redirect_to users_url, notice: 'User was successfully destroyed.' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_user + @user = User.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def user_params + params.require(:user).permit(:name, :email) + end +end diff --git a/app/helpers/students_helper.rb b/app/helpers/students_helper.rb new file mode 100644 index 0000000..6191d9e --- /dev/null +++ b/app/helpers/students_helper.rb @@ -0,0 +1,2 @@ +module StudentsHelper +end diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb new file mode 100644 index 0000000..2310a24 --- /dev/null +++ b/app/helpers/users_helper.rb @@ -0,0 +1,2 @@ +module UsersHelper +end diff --git a/app/models/student.rb b/app/models/student.rb new file mode 100644 index 0000000..78de1a4 --- /dev/null +++ b/app/models/student.rb @@ -0,0 +1,2 @@ +class Student < ApplicationRecord +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 0000000..379658a --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,2 @@ +class User < ApplicationRecord +end diff --git a/app/views/students/_form.html.erb b/app/views/students/_form.html.erb new file mode 100644 index 0000000..4171470 --- /dev/null +++ b/app/views/students/_form.html.erb @@ -0,0 +1,27 @@ +<%= form_with(model: student, local: true) do |form| %> + <% if student.errors.any? %> +
<%= notice %>
+ +| Name | +Address | ++ | ||
|---|---|---|---|---|
| <%= student.name %> | +<%= student.address %> | +<%= link_to 'Show', student %> | +<%= link_to 'Edit', edit_student_path(student) %> | +<%= link_to 'Destroy', student, method: :delete, data: { confirm: 'Are you sure?' } %> | +
<%= notice %>
+ ++ Name: + <%= @student.name %> +
+ ++ Address: + <%= @student.address %> +
+ +<%= link_to 'Edit', edit_student_path(@student) %> | +<%= link_to 'Back', students_path %> diff --git a/app/views/students/show.json.jbuilder b/app/views/students/show.json.jbuilder new file mode 100644 index 0000000..17301de --- /dev/null +++ b/app/views/students/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "students/student", student: @student diff --git a/app/views/users/_form.html.erb b/app/views/users/_form.html.erb new file mode 100644 index 0000000..a35810d --- /dev/null +++ b/app/views/users/_form.html.erb @@ -0,0 +1,27 @@ +<%= form_with(model: user, local: true) do |form| %> + <% if user.errors.any? %> +<%= notice %>
+ +| Name | ++ | |||
|---|---|---|---|---|
| <%= user.name %> | +<%= user.email %> | +<%= link_to 'Show', user %> | +<%= link_to 'Edit', edit_user_path(user) %> | +<%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %> | +
<%= notice %>
+ ++ Name: + <%= @user.name %> +
+ ++ Email: + <%= @user.email %> +
+ +<%= link_to 'Edit', edit_user_path(@user) %> | +<%= link_to 'Back', users_path %> diff --git a/app/views/users/show.json.jbuilder b/app/views/users/show.json.jbuilder new file mode 100644 index 0000000..ff40bb9 --- /dev/null +++ b/app/views/users/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "users/user", user: @user diff --git a/config/database.yml b/config/database.yml index 0d02f24..35ba097 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,25 +1,19 @@ -# SQLite version 3.x -# gem install sqlite3 -# -# Ensure the SQLite 3 gem is defined in your Gemfile -# gem 'sqlite3' -# default: &default - adapter: sqlite3 - pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> - timeout: 5000 + adapter: mysql2 + encoding: utf8 + pool: 5 + username: root + password: 1 + socket: /var/run/mysqld/mysqld.sock development: <<: *default - database: db/development.sqlite3 - -# Warning: The database defined as "test" will be erased and -# re-generated from your development database when you run "rake". -# Do not set this db to the same as development or production. + database: InsalDemo_development test: <<: *default - database: db/test.sqlite3 - + database: InsalDemo_test production: <<: *default - database: db/production.sqlite3 + database: InsalDemo_production + username: InsalDemo + password: <%= ENV['INSALDEMO_DATABASE_PASSWORD'] %> diff --git a/config/routes.rb b/config/routes.rb index 787824f..cacb787 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,3 +1,6 @@ Rails.application.routes.draw do + resources :students + # resources :users # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html -end + root "students#index" + end diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000..fc44f6e Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/migrate/20180111133825_create_users.rb b/db/migrate/20180111133825_create_users.rb new file mode 100644 index 0000000..e8018b0 --- /dev/null +++ b/db/migrate/20180111133825_create_users.rb @@ -0,0 +1,10 @@ +class CreateUsers < ActiveRecord::Migration[5.1] + def change + create_table :users do |t| + t.string :name + t.string :email + + t.timestamps + end + end +end diff --git a/db/migrate/20180114120217_create_students.rb b/db/migrate/20180114120217_create_students.rb new file mode 100644 index 0000000..6ffe94d --- /dev/null +++ b/db/migrate/20180114120217_create_students.rb @@ -0,0 +1,10 @@ +class CreateStudents < ActiveRecord::Migration[5.1] + def change + create_table :students do |t| + t.string :name + t.string :address + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..1e98a9b --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,29 @@ +# 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. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20180114120217) do + + create_table "students", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t| + t.string "name" + t.string "address" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "users", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8" do |t| + t.string "name" + t.string "email" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..68000ca --- /dev/null +++ b/log/development.log @@ -0,0 +1,294 @@ +Started GET "/admin" for 127.0.0.1 at 2018-01-11 20:33:38 +0700 +Processing by Admin::AdminController#index as HTML + Rendering html template + Rendered html template (0.0ms) +Completed 200 OK in 167ms (Views: 2.5ms) + + +Started GET "/admin" for 127.0.0.1 at 2018-01-11 20:44:28 +0700 + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.1.4) lib/active_record/migration.rb:576:in `check_pending!' +activerecord (5.1.4) lib/active_record/migration.rb:553:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.11.0) lib/puma/configuration.rb:225:in `call' +puma (3.11.0) lib/puma/server.rb:624:in `handle_request' +puma (3.11.0) lib/puma/server.rb:438:in `process_client' +puma (3.11.0) lib/puma/server.rb:302:in `block in run' +puma (3.11.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + [1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m + [1m[35m (100.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m + [1m[35m (115.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m + [1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m +Migrating to CreateUsers (20180111133825) + [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m + [1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m + [1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20180111133825"]] + [1m[35m (119.7ms)[0m [1m[36mcommit transaction[0m + [1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]] + [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m + [1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2018-01-11 13:45:20.937410"], ["updated_at", "2018-01-11 13:45:20.937410"]] + [1m[35m (97.6ms)[0m [1m[36mcommit transaction[0m + [1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m + [1m[35m (0.4ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m + [1m[35m (319.9ms)[0m [1m[35mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL PRIMARY KEY) ENGINE=InnoDB[0m + [1m[35m (275.2ms)[0m [1m[35mCREATE TABLE `ar_internal_metadata` (`key` varchar(255) NOT NULL PRIMARY KEY, `value` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m + [1m[35m (0.3ms)[0m [1m[34mSELECT GET_LOCK(3863027755651855350, 0)[0m + [1m[35m (0.4ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Migrating to CreateUsers (20180111133825) + [1m[35m (303.7ms)[0m [1m[35mCREATE TABLE `users` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m + [1m[35m (0.3ms)[0m [1m[35mBEGIN[0m + [1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20180111133825')[0m + [1m[35m (35.8ms)[0m [1m[35mCOMMIT[0m + [1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT `ar_internal_metadata`.* FROM `ar_internal_metadata` WHERE `ar_internal_metadata`.`key` = 'environment' LIMIT 1[0m + [1m[35m (0.2ms)[0m [1m[35mBEGIN[0m + [1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO `ar_internal_metadata` (`key`, `value`, `created_at`, `updated_at`) VALUES ('environment', 'development', '2018-01-11 13:59:47', '2018-01-11 13:59:47')[0m + [1m[35m (38.5ms)[0m [1m[35mCOMMIT[0m + [1m[35m (0.4ms)[0m [1m[34mSELECT RELEASE_LOCK(3863027755651855350)[0m + [1m[35m (0.4ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Started GET "/users" for 127.0.0.1 at 2018-01-11 21:04:30 +0700 + [1m[35m (0.3ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m + [1m[35m (0.9ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Processing by UsersController#index as HTML + Rendering users/index.html.erb within layouts/application + [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT `users`.* FROM `users`[0m + Rendered users/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 2036ms (Views: 2025.5ms | ActiveRecord: 1.0ms) + + +Started GET "/users/new" for 127.0.0.1 at 2018-01-11 21:04:38 +0700 +Processing by UsersController#new as HTML + Rendering users/new.html.erb within layouts/application + Rendered users/_form.html.erb (73.5ms) + Rendered users/new.html.erb within layouts/application (75.0ms) +Completed 200 OK in 113ms (Views: 102.1ms | ActiveRecord: 1.0ms) + + +Started POST "/users" for 127.0.0.1 at 2018-01-11 21:05:21 +0700 +Processing by UsersController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PbA8JbUlXtL7yKvm+in3IeqHBkySQNY/3iRArqLMPtX1E52NypHk1Vz0qBxSDKqlXU+xxeWQb+S1gtAKwkrU5A==", "user"=>{"name"=>"Angel", "email"=>"insal@gmail.com"}, "commit"=>"Create User"} + [1m[35m (0.2ms)[0m [1m[35mBEGIN[0m + [1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO `users` (`name`, `email`, `created_at`, `updated_at`) VALUES ('Angel', 'insal@gmail.com', '2018-01-11 14:05:21', '2018-01-11 14:05:21')[0m + [1m[35m (71.0ms)[0m [1m[35mCOMMIT[0m +Redirected to http://localhost:3000/users/1 +Completed 302 Found in 77ms (ActiveRecord: 71.7ms) + + +Started GET "/users/1" for 127.0.0.1 at 2018-01-11 21:05:21 +0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m + Rendering users/show.html.erb within layouts/application + Rendered users/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 60ms (Views: 52.0ms | ActiveRecord: 0.4ms) + + +Started GET "/users/1" for 127.0.0.1 at 2018-01-11 21:11:03 +0700 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + [1m[36mUser Load (0.8ms)[0m [1m[34mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m + Rendering users/show.html.erb within layouts/application + Rendered users/show.html.erb within layouts/application (4.1ms) +Completed 200 OK in 63ms (Views: 41.9ms | ActiveRecord: 2.6ms) + + +Started GET "/" for 127.0.0.1 at 2018-01-11 21:11:07 +0700 +Processing by UsersController#index as HTML + Rendering users/index.html.erb within layouts/application + [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT `users`.* FROM `users`[0m + Rendered users/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 57ms (Views: 55.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2018-01-11 21:27:12 +0700 +Processing by UsersController#index as HTML + Rendering users/index.html.erb within layouts/application + [1m[36mUser Load (0.3ms)[0m [1m[34mSELECT `users`.* FROM `users`[0m + Rendered users/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 66ms (Views: 64.1ms | ActiveRecord: 0.3ms) + + + [1m[35m (23.1ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m + [1m[35m (0.5ms)[0m [1m[34mSELECT GET_LOCK(3863027755651855350, 0)[0m + [1m[35m (0.5ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Migrating to CreateStudents (20180114120217) + [1m[35m (283.4ms)[0m [1m[35mCREATE TABLE `students` (`id` bigint NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(255), `address` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m + [1m[35m (0.3ms)[0m [1m[35mBEGIN[0m + [1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO `schema_migrations` (`version`) VALUES ('20180114120217')[0m + [1m[35m (35.2ms)[0m [1m[35mCOMMIT[0m + [1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT `ar_internal_metadata`.* FROM `ar_internal_metadata` WHERE `ar_internal_metadata`.`key` = 'environment' LIMIT 1[0m + [1m[35m (0.3ms)[0m [1m[35mBEGIN[0m + [1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m + [1m[35m (0.3ms)[0m [1m[34mSELECT RELEASE_LOCK(3863027755651855350)[0m + [1m[35m (0.4ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Started GET "/" for 127.0.0.1 at 2018-01-14 19:04:33 +0700 + [1m[35m (0.3ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m + [1m[35m (0.2ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m +Processing by UsersController#index as HTML + Rendering users/index.html.erb within layouts/application + [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT `users`.* FROM `users`[0m + Rendered users/index.html.erb within layouts/application (16.6ms) +Completed 200 OK in 549ms (Views: 532.1ms | ActiveRecord: 1.3ms) + + +Started GET "/" for 127.0.0.1 at 2018-01-14 19:06:24 +0700 + [1m[35m (0.3ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m + [1m[35m (0.3ms)[0m [1m[34mSELECT `schema_migrations`.`version` FROM `schema_migrations` ORDER BY `schema_migrations`.`version` ASC[0m + +ActionController::RoutingError (uninitialized constant StudentController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.11.0) lib/puma/configuration.rb:225:in `call' +puma (3.11.0) lib/puma/server.rb:624:in `handle_request' +puma (3.11.0) lib/puma/server.rb:438:in `process_client' +puma (3.11.0) lib/puma/server.rb:302:in `block in run' +puma (3.11.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-01-14 19:06:24 +0700 + +ActionController::RoutingError (uninitialized constant StudentController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.11.0) lib/puma/configuration.rb:225:in `call' +puma (3.11.0) lib/puma/server.rb:624:in `handle_request' +puma (3.11.0) lib/puma/server.rb:438:in `process_client' +puma (3.11.0) lib/puma/server.rb:302:in `block in run' +puma (3.11.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-01-14 19:08:51 +0700 + [1m[35m (0.4ms)[0m [1m[35mSET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483[0m +Processing by StudentsController#index as HTML + Rendering students/index.html.erb within layouts/application + [1m[36mStudent Load (0.4ms)[0m [1m[34mSELECT `students`.* FROM `students`[0m + Rendered students/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 172ms (Views: 167.2ms | ActiveRecord: 1.0ms) + + +Started GET "/students/new" for 127.0.0.1 at 2018-01-14 19:09:05 +0700 +Processing by StudentsController#new as HTML + Rendering students/new.html.erb within layouts/application + Rendered students/_form.html.erb (123.3ms) + Rendered students/new.html.erb within layouts/application (125.2ms) +Completed 200 OK in 161ms (Views: 149.7ms | ActiveRecord: 1.3ms) + + diff --git a/test/controllers/students_controller_test.rb b/test/controllers/students_controller_test.rb new file mode 100644 index 0000000..ac442b5 --- /dev/null +++ b/test/controllers/students_controller_test.rb @@ -0,0 +1,48 @@ +require 'test_helper' + +class StudentsControllerTest < ActionDispatch::IntegrationTest + setup do + @student = students(:one) + end + + test "should get index" do + get students_url + assert_response :success + end + + test "should get new" do + get new_student_url + assert_response :success + end + + test "should create student" do + assert_difference('Student.count') do + post students_url, params: { student: { address: @student.address, name: @student.name } } + end + + assert_redirected_to student_url(Student.last) + end + + test "should show student" do + get student_url(@student) + assert_response :success + end + + test "should get edit" do + get edit_student_url(@student) + assert_response :success + end + + test "should update student" do + patch student_url(@student), params: { student: { address: @student.address, name: @student.name } } + assert_redirected_to student_url(@student) + end + + test "should destroy student" do + assert_difference('Student.count', -1) do + delete student_url(@student) + end + + assert_redirected_to students_url + end +end diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb new file mode 100644 index 0000000..f45042b --- /dev/null +++ b/test/controllers/users_controller_test.rb @@ -0,0 +1,48 @@ +require 'test_helper' + +class UsersControllerTest < ActionDispatch::IntegrationTest + setup do + @user = users(:one) + end + + test "should get index" do + get users_url + assert_response :success + end + + test "should get new" do + get new_user_url + assert_response :success + end + + test "should create user" do + assert_difference('User.count') do + post users_url, params: { user: { email: @user.email, name: @user.name } } + end + + assert_redirected_to user_url(User.last) + end + + test "should show user" do + get user_url(@user) + assert_response :success + end + + test "should get edit" do + get edit_user_url(@user) + assert_response :success + end + + test "should update user" do + patch user_url(@user), params: { user: { email: @user.email, name: @user.name } } + assert_redirected_to user_url(@user) + end + + test "should destroy user" do + assert_difference('User.count', -1) do + delete user_url(@user) + end + + assert_redirected_to users_url + end +end diff --git a/test/fixtures/students.yml b/test/fixtures/students.yml new file mode 100644 index 0000000..00f4989 --- /dev/null +++ b/test/fixtures/students.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + address: MyString + +two: + name: MyString + address: MyString diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 0000000..5dc4ddf --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + email: MyString + +two: + name: MyString + email: MyString diff --git a/test/models/student_test.rb b/test/models/student_test.rb new file mode 100644 index 0000000..8a25253 --- /dev/null +++ b/test/models/student_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class StudentTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 0000000..82f61e0 --- /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/test/system/students_test.rb b/test/system/students_test.rb new file mode 100644 index 0000000..f49fdfb --- /dev/null +++ b/test/system/students_test.rb @@ -0,0 +1,9 @@ +require "application_system_test_case" + +class StudentsTest < ApplicationSystemTestCase + # test "visiting the index" do + # visit students_url + # + # assert_selector "h1", text: "Student" + # end +end diff --git a/test/system/users_test.rb b/test/system/users_test.rb new file mode 100644 index 0000000..99d1e21 --- /dev/null +++ b/test/system/users_test.rb @@ -0,0 +1,9 @@ +require "application_system_test_case" + +class UsersTest < ApplicationSystemTestCase + # test "visiting the index" do + # visit users_url + # + # assert_selector "h1", text: "User" + # end +end diff --git a/tmp/cache/assets/sprockets/v3.0/-N/-NkEYCFfhA1oI-6ihXMcOYu0jSWRY2jeS9ACLuj5eRw.cache b/tmp/cache/assets/sprockets/v3.0/-N/-NkEYCFfhA1oI-6ihXMcOYu0jSWRY2jeS9ACLuj5eRw.cache new file mode 100644 index 0000000..ebad80d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-N/-NkEYCFfhA1oI-6ihXMcOYu0jSWRY2jeS9ACLuj5eRw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/09/09VG3ntpdKqcsVUBQd0vh6gbB61Tg52pl4mX3Dp80zA.cache b/tmp/cache/assets/sprockets/v3.0/09/09VG3ntpdKqcsVUBQd0vh6gbB61Tg52pl4mX3Dp80zA.cache new file mode 100644 index 0000000..6ca3953 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/09/09VG3ntpdKqcsVUBQd0vh6gbB61Tg52pl4mX3Dp80zA.cache @@ -0,0 +1,3 @@ +x��VAo�0�a��;V;WӤ�i�MQ�]6��U�.��̐GpF0����K�3$�H��7����g�{~���� wOo@X�o!��ipu�✥<^A,�Rd<�\������Y}-�"Dk|�^x�R�],��$�> �]���&I�|* +6��9E?e���f/$,���0���-$��5̞��p )��"��I��Yn+��^BH��ݺHNS1�,`�d�\:���k���?��s�6Ar>_%˜�G�-�*>T�Y�h#�R6i�4���«T��V|�E��^ʨ�&��1T����A���m%r��SR'5[��g'u�����Ve�g5u�I��1��b�%��(��]�x����I^O7��u�Zr>�S��IH���q.u�s/�W'Ny�{߽�J�����@��K��h�tu��� �� �T*MU�&j�]��S�:m���8����(�T��.�TC�!��B����VP�G��Z)~k�P�~���[�wG1O����6y~��+kl=�6��Ÿt�ҍK7.ݸt����q��i�m��q� +N�Yr� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0E/0ElH22Mep9Xz-qzv0uwkF0f42Wr2wxXcVw8yiEcTHhw.cache b/tmp/cache/assets/sprockets/v3.0/0E/0ElH22Mep9Xz-qzv0uwkF0f42Wr2wxXcVw8yiEcTHhw.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0E/0ElH22Mep9Xz-qzv0uwkF0f42Wr2wxXcVw8yiEcTHhw.cache @@ -0,0 +1 @@ +"%��B�����șo�$'�A�d��L���xR�U \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1N/1NjgHFHqnCL8GF5BJ3N8ZxJilRoT-DjPgS2H7U8gESU.cache b/tmp/cache/assets/sprockets/v3.0/1N/1NjgHFHqnCL8GF5BJ3N8ZxJilRoT-DjPgS2H7U8gESU.cache new file mode 100644 index 0000000..94d3c60 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1N/1NjgHFHqnCL8GF5BJ3N8ZxJilRoT-DjPgS2H7U8gESU.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=be1bbd5f7884a08835e46e427a7183e2c89b2364212d39421a6df3bd0c1d2df9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1g/1gPLoLYHBx3hqudZNvnIIWnZEgg_ngTUGXCd9aJnx4E.cache b/tmp/cache/assets/sprockets/v3.0/1g/1gPLoLYHBx3hqudZNvnIIWnZEgg_ngTUGXCd9aJnx4E.cache new file mode 100644 index 0000000..cbfdb27 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1g/1gPLoLYHBx3hqudZNvnIIWnZEgg_ngTUGXCd9aJnx4E.cache @@ -0,0 +1 @@ +I"�/var/lib/gems/2.3.0/gems/turbolinks-source-5.1.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=040db6272b76e5de2fb02744d7df7a65bec5b2a73c4a7888cba7d8b277f3eb6a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1t/1tUEBxGeys4BAIgKaimOK6yOE1_S2uv9pNtyaMOBLQo.cache b/tmp/cache/assets/sprockets/v3.0/1t/1tUEBxGeys4BAIgKaimOK6yOE1_S2uv9pNtyaMOBLQo.cache new file mode 100644 index 0000000..b3ccb91 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1t/1tUEBxGeys4BAIgKaimOK6yOE1_S2uv9pNtyaMOBLQo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2d/2dehC5f1yO6b0RJqvvdBIS0A-YLskNOVN4S2c5xKcsM.cache b/tmp/cache/assets/sprockets/v3.0/2d/2dehC5f1yO6b0RJqvvdBIS0A-YLskNOVN4S2c5xKcsM.cache new file mode 100644 index 0000000..173707e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2d/2dehC5f1yO6b0RJqvvdBIS0A-YLskNOVN4S2c5xKcsM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/32/32ThJXLVG0Jn9r00wNOx2Brfhx29NV6SSvYGOWjTjfc.cache b/tmp/cache/assets/sprockets/v3.0/32/32ThJXLVG0Jn9r00wNOx2Brfhx29NV6SSvYGOWjTjfc.cache new file mode 100644 index 0000000..7e7ea8f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/32/32ThJXLVG0Jn9r00wNOx2Brfhx29NV6SSvYGOWjTjfc.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&id=74e7a24ec235ca8e96e7132f7bf203681c759e3a72c2d9ab375b60f8e4be15fb:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/33/33wxI9ns4kjqJd-p5Iuu_lbVk0iGaoay8DkUOj6HuPs.cache b/tmp/cache/assets/sprockets/v3.0/33/33wxI9ns4kjqJd-p5Iuu_lbVk0iGaoay8DkUOj6HuPs.cache new file mode 100644 index 0000000..c678ef4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/33/33wxI9ns4kjqJd-p5Iuu_lbVk0iGaoay8DkUOj6HuPs.cache @@ -0,0 +1 @@ +"%��C�m�&��UV�U���i����>7.a2�4� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/45/45fnHcUwt3bWyeBRaZH5GSjk6vzf2DebX5L6CIFQCzo.cache b/tmp/cache/assets/sprockets/v3.0/45/45fnHcUwt3bWyeBRaZH5GSjk6vzf2DebX5L6CIFQCzo.cache new file mode 100644 index 0000000..f703fc5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/45/45fnHcUwt3bWyeBRaZH5GSjk6vzf2DebX5L6CIFQCzo.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=32f90b0e2c2e6bc3cdfa723257a91276194a8d41f7daa6c5d254d1bd4105b580:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4n/4nlGkfS01xobWu2b744iAV16FTuTuI2OmavgpELJqz4.cache b/tmp/cache/assets/sprockets/v3.0/4n/4nlGkfS01xobWu2b744iAV16FTuTuI2OmavgpELJqz4.cache new file mode 100644 index 0000000..59b348e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4n/4nlGkfS01xobWu2b744iAV16FTuTuI2OmavgpELJqz4.cache @@ -0,0 +1 @@ +"%�d�-�K���`���8Y��3�/Y����a~K \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4s/4sqXmtsNNM9XXJ3cpP1cHM5RtM_dZV7Rna5teplTNFk.cache b/tmp/cache/assets/sprockets/v3.0/4s/4sqXmtsNNM9XXJ3cpP1cHM5RtM_dZV7Rna5teplTNFk.cache new file mode 100644 index 0000000..35be49e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4s/4sqXmtsNNM9XXJ3cpP1cHM5RtM_dZV7Rna5teplTNFk.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=8a0f6c802e1ad655c973c85377fb26ca310682638fbd514a90ccd4cf632e1e68:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/61/61DYE6KWkT0kZHOqhoDyZVE-tFnswqDzUluEf04Z9qI.cache b/tmp/cache/assets/sprockets/v3.0/61/61DYE6KWkT0kZHOqhoDyZVE-tFnswqDzUluEf04Z9qI.cache new file mode 100644 index 0000000..171a0c3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/61/61DYE6KWkT0kZHOqhoDyZVE-tFnswqDzUluEf04Z9qI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6W/6W7OWqgF9PWLavxfsgHbdH16n4lgpcDxaPszLUYK0Mk.cache b/tmp/cache/assets/sprockets/v3.0/6W/6W7OWqgF9PWLavxfsgHbdH16n4lgpcDxaPszLUYK0Mk.cache new file mode 100644 index 0000000..252857d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6W/6W7OWqgF9PWLavxfsgHbdH16n4lgpcDxaPszLUYK0Mk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6z/6z0wWiPYhUMW2HQaCtQwqL4vsbqxA7XdxKlhr0fQsrY.cache b/tmp/cache/assets/sprockets/v3.0/6z/6z0wWiPYhUMW2HQaCtQwqL4vsbqxA7XdxKlhr0fQsrY.cache new file mode 100644 index 0000000..365b27a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6z/6z0wWiPYhUMW2HQaCtQwqL4vsbqxA7XdxKlhr0fQsrY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8h/8h1-w3CNYArjh6uhNoEaY6h8TIBwywzpgDM-wVNBBGQ.cache b/tmp/cache/assets/sprockets/v3.0/8h/8h1-w3CNYArjh6uhNoEaY6h8TIBwywzpgDM-wVNBBGQ.cache new file mode 100644 index 0000000..f49feb0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8h/8h1-w3CNYArjh6uhNoEaY6h8TIBwywzpgDM-wVNBBGQ.cache @@ -0,0 +1,2 @@ +"%�k�_�섖�Wj�����k��% +��H \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache b/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache new file mode 100644 index 0000000..60f949c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/9f/9f688cG_0P8o8Wqx1KypPoxIcUbAs0BFzRoBLbAJTtA.cache b/tmp/cache/assets/sprockets/v3.0/9f/9f688cG_0P8o8Wqx1KypPoxIcUbAs0BFzRoBLbAJTtA.cache new file mode 100644 index 0000000..4c5c54f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/9f/9f688cG_0P8o8Wqx1KypPoxIcUbAs0BFzRoBLbAJTtA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/B4/B43LeT9Wba4fLvXw-C_kKq-x9HwYZxnBBiltbIufzzQ.cache b/tmp/cache/assets/sprockets/v3.0/B4/B43LeT9Wba4fLvXw-C_kKq-x9HwYZxnBBiltbIufzzQ.cache new file mode 100644 index 0000000..4e4a9da Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/B4/B43LeT9Wba4fLvXw-C_kKq-x9HwYZxnBBiltbIufzzQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/DH/DH9FonIOSBzQUw9wJPp3EzQHWvn-23vJtKMpNdEPhMM.cache b/tmp/cache/assets/sprockets/v3.0/DH/DH9FonIOSBzQUw9wJPp3EzQHWvn-23vJtKMpNdEPhMM.cache new file mode 100644 index 0000000..1faefe9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/DH/DH9FonIOSBzQUw9wJPp3EzQHWvn-23vJtKMpNdEPhMM.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:///var/lib/gems/2.3.0/gems/actionview-5.1.4/lib/assets/compiled/rails-ujs.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Er/ErVcA5WqlY5uTfGU7qDJVttgImtRzHy1uh-2aTubI24.cache b/tmp/cache/assets/sprockets/v3.0/Er/ErVcA5WqlY5uTfGU7qDJVttgImtRzHy1uh-2aTubI24.cache new file mode 100644 index 0000000..d1a2a34 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Er/ErVcA5WqlY5uTfGU7qDJVttgImtRzHy1uh-2aTubI24.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Fr/FrIfXOJdE7vanhYmJJ6NBh1_qDKef4pXtFHb-SjLu64.cache b/tmp/cache/assets/sprockets/v3.0/Fr/FrIfXOJdE7vanhYmJJ6NBh1_qDKef4pXtFHb-SjLu64.cache new file mode 100644 index 0000000..da19a3e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fr/FrIfXOJdE7vanhYmJJ6NBh1_qDKef4pXtFHb-SjLu64.cache @@ -0,0 +1 @@ +"%[`s$^���I[~4ZU����#N\:P���y��K \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fx/Fxd4jyfPSY4LjvFXlCf5cJNZE_q2lBf1R6FzC8Tlfzk.cache b/tmp/cache/assets/sprockets/v3.0/Fx/Fxd4jyfPSY4LjvFXlCf5cJNZE_q2lBf1R6FzC8Tlfzk.cache new file mode 100644 index 0000000..f3a3e55 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fx/Fxd4jyfPSY4LjvFXlCf5cJNZE_q2lBf1R6FzC8Tlfzk.cache @@ -0,0 +1,2 @@ +"%�E�r��Z��JM=ֽek +�rX�ˊ@�KҞ$��^ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/GM/GMgSZsq8BFxKGy9Nkdvx5XIE-IYdE6GeEc2pvda3E8w.cache b/tmp/cache/assets/sprockets/v3.0/GM/GMgSZsq8BFxKGy9Nkdvx5XIE-IYdE6GeEc2pvda3E8w.cache new file mode 100644 index 0000000..3218a48 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/GM/GMgSZsq8BFxKGy9Nkdvx5XIE-IYdE6GeEc2pvda3E8w.cache @@ -0,0 +1 @@ +"%�~��2%�a�5�p���L�Je5�-,$�o\2 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Gj/GjeRcfFXBBb_JP__qJTY8UmH69bUbygWxWkFO8c-o3c.cache b/tmp/cache/assets/sprockets/v3.0/Gj/GjeRcfFXBBb_JP__qJTY8UmH69bUbygWxWkFO8c-o3c.cache new file mode 100644 index 0000000..9d02408 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Gj/GjeRcfFXBBb_JP__qJTY8UmH69bUbygWxWkFO8c-o3c.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/students.scss;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Gs/Gs32ajT0FmyEgkB1lt9ZwrESwIWYefiM__Y4lxntkbE.cache b/tmp/cache/assets/sprockets/v3.0/Gs/Gs32ajT0FmyEgkB1lt9ZwrESwIWYefiM__Y4lxntkbE.cache new file mode 100644 index 0000000..09db756 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Gs/Gs32ajT0FmyEgkB1lt9ZwrESwIWYefiM__Y4lxntkbE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache b/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache new file mode 100644 index 0000000..5805bc5 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/KD/KD5XXzgG8B9Ezv-Yni1ElO1cm6Gs7pxU7nRdhaUUOQw.cache b/tmp/cache/assets/sprockets/v3.0/KD/KD5XXzgG8B9Ezv-Yni1ElO1cm6Gs7pxU7nRdhaUUOQw.cache new file mode 100644 index 0000000..1ae64f2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/KD/KD5XXzgG8B9Ezv-Yni1ElO1cm6Gs7pxU7nRdhaUUOQw.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=af17c88223aa3a1277bb7b1c99eafb63d681cccc3ec28ffc69840c701ce6c8a9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ls/LsbRpDe4h3aJ2TTowPYlVgj0Eks8rYK3Ga4ZJmw_8dU.cache b/tmp/cache/assets/sprockets/v3.0/Ls/LsbRpDe4h3aJ2TTowPYlVgj0Eks8rYK3Ga4ZJmw_8dU.cache new file mode 100644 index 0000000..70ce5c3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ls/LsbRpDe4h3aJ2TTowPYlVgj0Eks8rYK3Ga4ZJmw_8dU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Lz/LzzRsuQDij4Sgb3lexSi7I7UJCzin7K-RaEXx46F1K0.cache b/tmp/cache/assets/sprockets/v3.0/Lz/LzzRsuQDij4Sgb3lexSi7I7UJCzin7K-RaEXx46F1K0.cache new file mode 100644 index 0000000..3672ea5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Lz/LzzRsuQDij4Sgb3lexSi7I7UJCzin7K-RaEXx46F1K0.cache @@ -0,0 +1,2 @@ +"%ǟ���u�c�MO���Jď +d�W�uP�Ԫ~�� \ 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 0000000..d2f891f --- /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/MZ/MZcwDENEs93Wd9q7A_7UWdfJrWsBXa0pGp03P9mqG2I.cache b/tmp/cache/assets/sprockets/v3.0/MZ/MZcwDENEs93Wd9q7A_7UWdfJrWsBXa0pGp03P9mqG2I.cache new file mode 100644 index 0000000..19e3e34 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/MZ/MZcwDENEs93Wd9q7A_7UWdfJrWsBXa0pGp03P9mqG2I.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"8file-digest://app/assets/stylesheets/scaffolds.scss;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Nm/Nmv5k365mGSre2vPgRZI2lH6xWlQpz2WtyJvffQ3DII.cache b/tmp/cache/assets/sprockets/v3.0/Nm/Nmv5k365mGSre2vPgRZI2lH6xWlQpz2WtyJvffQ3DII.cache new file mode 100644 index 0000000..c393554 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Nm/Nmv5k365mGSre2vPgRZI2lH6xWlQpz2WtyJvffQ3DII.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=73e375894077769e9a8019b9fca0e1909f0437416e343dcf8d43ce4dea4e4fd0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/PL/PLymusepb_qAEN_mW8FFCarbdxEOfYOKJFFZa63SLP4.cache b/tmp/cache/assets/sprockets/v3.0/PL/PLymusepb_qAEN_mW8FFCarbdxEOfYOKJFFZa63SLP4.cache new file mode 100644 index 0000000..58ded95 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/PL/PLymusepb_qAEN_mW8FFCarbdxEOfYOKJFFZa63SLP4.cache @@ -0,0 +1 @@ +"%ó�n���x���|��b�[ģ��Y��xF� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/S5/S5DBl2Mbiz9Rxdx_Fw3_njNAvwrU8jYAJc8Of2gbucY.cache b/tmp/cache/assets/sprockets/v3.0/S5/S5DBl2Mbiz9Rxdx_Fw3_njNAvwrU8jYAJc8Of2gbucY.cache new file mode 100644 index 0000000..6e909ae --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/S5/S5DBl2Mbiz9Rxdx_Fw3_njNAvwrU8jYAJc8Of2gbucY.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/scaffolds.scss?type=text/css&pipeline=self&id=9dd863efe2270289357ebaf33e8e8897ffc8de63fbfb1572a91b6e4d36fa471b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/SM/SMEEf6sPlV13XHKIU0On3_a7nwCRy7n4FB7_-998n_0.cache b/tmp/cache/assets/sprockets/v3.0/SM/SMEEf6sPlV13XHKIU0On3_a7nwCRy7n4FB7_-998n_0.cache new file mode 100644 index 0000000..a3cc20a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/SM/SMEEf6sPlV13XHKIU0On3_a7nwCRy7n4FB7_-998n_0.cache @@ -0,0 +1 @@ +I"�/var/lib/gems/2.3.0/gems/actionview-5.1.4/lib/assets/compiled/rails-ujs.js?type=application/javascript&pipeline=self&id=8ef1d63894fe41ba6321bb9020cd86374ac6f78acfc4a9c1ffe483229ae63980:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/SV/SVJNEpmlDYimjZ6qaCJlfE6pEWtMQrIM-efpaJhOEcY.cache b/tmp/cache/assets/sprockets/v3.0/SV/SVJNEpmlDYimjZ6qaCJlfE6pEWtMQrIM-efpaJhOEcY.cache new file mode 100644 index 0000000..4fa651e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/SV/SVJNEpmlDYimjZ6qaCJlfE6pEWtMQrIM-efpaJhOEcY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/T2/T2b8yq5--QJIN-NugdZtCAceUNMCZauW0cJE1QVjALs.cache b/tmp/cache/assets/sprockets/v3.0/T2/T2b8yq5--QJIN-NugdZtCAceUNMCZauW0cJE1QVjALs.cache new file mode 100644 index 0000000..a71c951 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/T2/T2b8yq5--QJIN-NugdZtCAceUNMCZauW0cJE1QVjALs.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/students.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Td/TdgRiZdjvSwBCytL54PUwV0sMUBcco0LOD202oaq1pA.cache b/tmp/cache/assets/sprockets/v3.0/Td/TdgRiZdjvSwBCytL54PUwV0sMUBcco0LOD202oaq1pA.cache new file mode 100644 index 0000000..80d9c0c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Td/TdgRiZdjvSwBCytL54PUwV0sMUBcco0LOD202oaq1pA.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"hfile-digest:///var/lib/gems/2.3.0/gems/turbolinks-source-5.1.0/lib/assets/javascripts/turbolinks.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Tr/TrVygnCYwJN-mgrN5u36Dw5BEqsQLIW42l2iLzKVXLs.cache b/tmp/cache/assets/sprockets/v3.0/Tr/TrVygnCYwJN-mgrN5u36Dw5BEqsQLIW42l2iLzKVXLs.cache new file mode 100644 index 0000000..fd47310 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Tr/TrVygnCYwJN-mgrN5u36Dw5BEqsQLIW42l2iLzKVXLs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/UX/UXZxBnBYvKwNnsWUrVlWJVlyfL5OSpqtlLZ7fwfWs5c.cache b/tmp/cache/assets/sprockets/v3.0/UX/UXZxBnBYvKwNnsWUrVlWJVlyfL5OSpqtlLZ7fwfWs5c.cache new file mode 100644 index 0000000..37aa63b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/UX/UXZxBnBYvKwNnsWUrVlWJVlyfL5OSpqtlLZ7fwfWs5c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Um/UmSh89QL6De7OyFU4_q_Z8Vv8YZh0zQF1I6y-41qeXw.cache b/tmp/cache/assets/sprockets/v3.0/Um/UmSh89QL6De7OyFU4_q_Z8Vv8YZh0zQF1I6y-41qeXw.cache new file mode 100644 index 0000000..8a6cadc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Um/UmSh89QL6De7OyFU4_q_Z8Vv8YZh0zQF1I6y-41qeXw.cache @@ -0,0 +1 @@ +"%��%���?�a>6�(��8���ϥ>j�aUz \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/VU/VUPlq5G8GkIgDkjKpTn4nSk_Xn_LzlPvh3MgbfrpRVA.cache b/tmp/cache/assets/sprockets/v3.0/VU/VUPlq5G8GkIgDkjKpTn4nSk_Xn_LzlPvh3MgbfrpRVA.cache new file mode 100644 index 0000000..d78ca3d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/VU/VUPlq5G8GkIgDkjKpTn4nSk_Xn_LzlPvh3MgbfrpRVA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Vz/VzE9R_HwWjfxXptN-7ciwATxkRr_tDXII13ndOGtarI.cache b/tmp/cache/assets/sprockets/v3.0/Vz/VzE9R_HwWjfxXptN-7ciwATxkRr_tDXII13ndOGtarI.cache new file mode 100644 index 0000000..9d1aa6b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Vz/VzE9R_HwWjfxXptN-7ciwATxkRr_tDXII13ndOGtarI.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/WJ/WJuFgucvo9GeqmEj4OJVJ9zaeIoRcT4n7sXcBzF2Lek.cache b/tmp/cache/assets/sprockets/v3.0/WJ/WJuFgucvo9GeqmEj4OJVJ9zaeIoRcT4n7sXcBzF2Lek.cache new file mode 100644 index 0000000..d35bb7e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WJ/WJuFgucvo9GeqmEj4OJVJ9zaeIoRcT4n7sXcBzF2Lek.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Xf/Xf8X5mZUo1i2UqeGbq1TzEu_n7T3pGw9NCLYY5pfMjc.cache b/tmp/cache/assets/sprockets/v3.0/Xf/Xf8X5mZUo1i2UqeGbq1TzEu_n7T3pGw9NCLYY5pfMjc.cache new file mode 100644 index 0000000..a173317 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Xf/Xf8X5mZUo1i2UqeGbq1TzEu_n7T3pGw9NCLYY5pfMjc.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=7f6fe7dd43fe3acc8cf0947151a1b1f91c3c7e0e79b5b95ff38e5037b67b4522:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Xi/XieJ0ToOpPlluLi99n4eJ5U-z_NV-qu-EK69RvpOBVI.cache b/tmp/cache/assets/sprockets/v3.0/Xi/XieJ0ToOpPlluLi99n4eJ5U-z_NV-qu-EK69RvpOBVI.cache new file mode 100644 index 0000000..010473d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Xi/XieJ0ToOpPlluLi99n4eJ5U-z_NV-qu-EK69RvpOBVI.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=920f9a19a1eb88bf8dd4ca75520dbb32d626bd0068517a89e67e971e0ddac831:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Yz/Yz7V-oslThA9b-XabTdtLCP53sy_pA0Zmy5nxy1sfY8.cache b/tmp/cache/assets/sprockets/v3.0/Yz/Yz7V-oslThA9b-XabTdtLCP53sy_pA0Zmy5nxy1sfY8.cache new file mode 100644 index 0000000..c5b4fbd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Yz/Yz7V-oslThA9b-XabTdtLCP53sy_pA0Zmy5nxy1sfY8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Z8/Z8ztokljILkQK1ZdxjkxJW1h3a2ZpJ0-_-FfUFsX_Jc.cache b/tmp/cache/assets/sprockets/v3.0/Z8/Z8ztokljILkQK1ZdxjkxJW1h3a2ZpJ0-_-FfUFsX_Jc.cache new file mode 100644 index 0000000..0a91802 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Z8/Z8ztokljILkQK1ZdxjkxJW1h3a2ZpJ0-_-FfUFsX_Jc.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"afile-digest:///var/lib/gems/2.3.0/gems/actioncable-5.1.4/lib/assets/compiled/action_cable.js;TTF \ 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 0000000..736a554 --- /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/_n/_n19CQPc-NcbaJDFiznHHxE1Uy9xQZIeSJZu-LFtUgE.cache b/tmp/cache/assets/sprockets/v3.0/_n/_n19CQPc-NcbaJDFiznHHxE1Uy9xQZIeSJZu-LFtUgE.cache new file mode 100644 index 0000000..d2d5d31 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_n/_n19CQPc-NcbaJDFiznHHxE1Uy9xQZIeSJZu-LFtUgE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/aL/aLJbvkSM3-JJoP162ozpytAM-nX3Xw38U_xHesWRuEc.cache b/tmp/cache/assets/sprockets/v3.0/aL/aLJbvkSM3-JJoP162ozpytAM-nX3Xw38U_xHesWRuEc.cache new file mode 100644 index 0000000..5065680 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/aL/aLJbvkSM3-JJoP162ozpytAM-nX3Xw38U_xHesWRuEc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ak/akmkpItORyYloXV7eoJdW4-n1EavexasiitzW42FK40.cache b/tmp/cache/assets/sprockets/v3.0/ak/akmkpItORyYloXV7eoJdW4-n1EavexasiitzW42FK40.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ak/akmkpItORyYloXV7eoJdW4-n1EavexasiitzW42FK40.cache @@ -0,0 +1 @@ +"%��B�����șo�$'�A�d��L���xR�U \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bY/bYb9JjJmzWE48BGVNCsYFwAiov4urNmqG2pxR5Ul6gQ.cache b/tmp/cache/assets/sprockets/v3.0/bY/bYb9JjJmzWE48BGVNCsYFwAiov4urNmqG2pxR5Ul6gQ.cache new file mode 100644 index 0000000..9138724 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bY/bYb9JjJmzWE48BGVNCsYFwAiov4urNmqG2pxR5Ul6gQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bm/bmZiVV6vCwiB-OonVQtkaa8gQmGZODrjKVRWKOs7-Rw.cache b/tmp/cache/assets/sprockets/v3.0/bm/bmZiVV6vCwiB-OonVQtkaa8gQmGZODrjKVRWKOs7-Rw.cache new file mode 100644 index 0000000..ec8c117 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bm/bmZiVV6vCwiB-OonVQtkaa8gQmGZODrjKVRWKOs7-Rw.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=1807f2d879543e4d5f54c5babcab90512d52defa55336479a34c91d3ca630a21:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/cM/cMmJZA3DxZdKH1dRZYF_5Xi24Q09-AQvf6bTxz3YWjs.cache b/tmp/cache/assets/sprockets/v3.0/cM/cMmJZA3DxZdKH1dRZYF_5Xi24Q09-AQvf6bTxz3YWjs.cache new file mode 100644 index 0000000..60f52bb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/cM/cMmJZA3DxZdKH1dRZYF_5Xi24Q09-AQvf6bTxz3YWjs.cache @@ -0,0 +1 @@ +"%A��G�{h t�l�m�V���NE���f��� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/cn/cnDe8W22-hWPG6Y9kjqIvs2zJSMf12-7-EZe-kqUtuY.cache b/tmp/cache/assets/sprockets/v3.0/cn/cnDe8W22-hWPG6Y9kjqIvs2zJSMf12-7-EZe-kqUtuY.cache new file mode 100644 index 0000000..d11e22e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/cn/cnDe8W22-hWPG6Y9kjqIvs2zJSMf12-7-EZe-kqUtuY.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/users.coffee?type=application/javascript&pipeline=self&id=e0d5602dd9b6c04432499d3ce4e04b0cba0e80c689e641de7248869962b70538:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/dK/dKI-b02Qlh6p7CQIMsaoW0n07snEKNPzYcH_69HcCJY.cache b/tmp/cache/assets/sprockets/v3.0/dK/dKI-b02Qlh6p7CQIMsaoW0n07snEKNPzYcH_69HcCJY.cache new file mode 100644 index 0000000..64f0d2d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dK/dKI-b02Qlh6p7CQIMsaoW0n07snEKNPzYcH_69HcCJY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/e7/e7qkmY4OAlIBBSTV4CCI7sJ5-8xce0qLr07FpZwa3-k.cache b/tmp/cache/assets/sprockets/v3.0/e7/e7qkmY4OAlIBBSTV4CCI7sJ5-8xce0qLr07FpZwa3-k.cache new file mode 100644 index 0000000..9eedfd8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/e7/e7qkmY4OAlIBBSTV4CCI7sJ5-8xce0qLr07FpZwa3-k.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=2fa29dff85b8238e5f32aea4f168b6fa635bb48025d1ad1d07e6059d7b7bc821:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ep/epeTak4BfEpTKK_aOfKMTqrfZlgmPnTnMANwxe6bsP0.cache b/tmp/cache/assets/sprockets/v3.0/ep/epeTak4BfEpTKK_aOfKMTqrfZlgmPnTnMANwxe6bsP0.cache new file mode 100644 index 0000000..cf1cee8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ep/epeTak4BfEpTKK_aOfKMTqrfZlgmPnTnMANwxe6bsP0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/g4/g4NPOxH-e3Rps1gVyriQNNqTieuCGXTxvhmxv7dLWnE.cache b/tmp/cache/assets/sprockets/v3.0/g4/g4NPOxH-e3Rps1gVyriQNNqTieuCGXTxvhmxv7dLWnE.cache new file mode 100644 index 0000000..52644f9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/g4/g4NPOxH-e3Rps1gVyriQNNqTieuCGXTxvhmxv7dLWnE.cache @@ -0,0 +1 @@ +"%� 9�fH�|�/��웋�N4�$� >5Q�c� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/gh/ghOpkRO2LDxNSQUuAEzVIuN6X4fZRWWA8p_u4OfZAhc.cache b/tmp/cache/assets/sprockets/v3.0/gh/ghOpkRO2LDxNSQUuAEzVIuN6X4fZRWWA8p_u4OfZAhc.cache new file mode 100644 index 0000000..594cfe0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/gh/ghOpkRO2LDxNSQUuAEzVIuN6X4fZRWWA8p_u4OfZAhc.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=8cb96d5206ffe54dce76d57883af6ec04b0117b19891fcca2397ecb8fc83aed8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/i7/i7Ha-HBlmHA0sF3aZE1UkGMePh11V2Z_odJJIY6tkco.cache b/tmp/cache/assets/sprockets/v3.0/i7/i7Ha-HBlmHA0sF3aZE1UkGMePh11V2Z_odJJIY6tkco.cache new file mode 100644 index 0000000..6a1d0df Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/i7/i7Ha-HBlmHA0sF3aZE1UkGMePh11V2Z_odJJIY6tkco.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ik/ik4yzwy2XW2XjFGLrtwWcVjPJVwIffzjNI4G5LwuZTI.cache b/tmp/cache/assets/sprockets/v3.0/ik/ik4yzwy2XW2XjFGLrtwWcVjPJVwIffzjNI4G5LwuZTI.cache new file mode 100644 index 0000000..b138b80 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ik/ik4yzwy2XW2XjFGLrtwWcVjPJVwIffzjNI4G5LwuZTI.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/students.coffee?type=application/javascript&pipeline=self&id=906526cc342de9ed9844137be01630685d7feec78cf920bd99792f39a93c0b4f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ji/jinmyffi2B0iADYhYcJpRgqFlVOeTKu24KSCy2wZn0o.cache b/tmp/cache/assets/sprockets/v3.0/ji/jinmyffi2B0iADYhYcJpRgqFlVOeTKu24KSCy2wZn0o.cache new file mode 100644 index 0000000..d838b42 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ji/jinmyffi2B0iADYhYcJpRgqFlVOeTKu24KSCy2wZn0o.cache @@ -0,0 +1 @@ +I"�/var/lib/gems/2.3.0/gems/actioncable-5.1.4/lib/assets/compiled/action_cable.js?type=application/javascript&pipeline=self&id=146b2e926d1fb39d5cdeec506a099ec507dfec211e52bc88dfb45b963b9b2326:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/jj/jjzvXx7TuIXAy2v8E2HBrfoZ-DMbHtUsJFjkJ-fE768.cache b/tmp/cache/assets/sprockets/v3.0/jj/jjzvXx7TuIXAy2v8E2HBrfoZ-DMbHtUsJFjkJ-fE768.cache new file mode 100644 index 0000000..09921dd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/jj/jjzvXx7TuIXAy2v8E2HBrfoZ-DMbHtUsJFjkJ-fE768.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/k6/k6b1vUMDixRzCETFdIfchuMdASZyaXmSQ3lpAXApHHY.cache b/tmp/cache/assets/sprockets/v3.0/k6/k6b1vUMDixRzCETFdIfchuMdASZyaXmSQ3lpAXApHHY.cache new file mode 100644 index 0000000..ff9124f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/k6/k6b1vUMDixRzCETFdIfchuMdASZyaXmSQ3lpAXApHHY.cache @@ -0,0 +1 @@ +"%�D�����#+��R=��������@7����|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/k8/k80zN9S6SsARrRrpzoeIHG35l0ammmCBKqWslF_Rbok.cache b/tmp/cache/assets/sprockets/v3.0/k8/k80zN9S6SsARrRrpzoeIHG35l0ammmCBKqWslF_Rbok.cache new file mode 100644 index 0000000..f4bb5e4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/k8/k80zN9S6SsARrRrpzoeIHG35l0ammmCBKqWslF_Rbok.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/students.scss?type=text/css&pipeline=self&id=2c5f0e841408fb892a97c7fc44c1fa33c66514c727a2f8d77df4b75a5888cb86:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/l3/l3W-H7nd4fPMcsQHx16W09JWqmBTHa5n2yVfLkZOKlA.cache b/tmp/cache/assets/sprockets/v3.0/l3/l3W-H7nd4fPMcsQHx16W09JWqmBTHa5n2yVfLkZOKlA.cache new file mode 100644 index 0000000..615be73 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/l3/l3W-H7nd4fPMcsQHx16W09JWqmBTHa5n2yVfLkZOKlA.cache @@ -0,0 +1 @@ +"%i����O����H�3 l��;���ӯ��Y��4Q \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/lw/lw-VGwyfsam9QVlDDNN_tg8vi8jsrbPnRuBdVIueAC8.cache b/tmp/cache/assets/sprockets/v3.0/lw/lw-VGwyfsam9QVlDDNN_tg8vi8jsrbPnRuBdVIueAC8.cache new file mode 100644 index 0000000..430f2ec --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/lw/lw-VGwyfsam9QVlDDNN_tg8vi8jsrbPnRuBdVIueAC8.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=2a210f03cb384cfe9c8178caafe25737a8f3d27efdd1727476445b244bce8708:ET \ 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 0000000..fed56ae --- /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/o9/o9MpMQ-t1STnohACi-Eukbzsr7GFaZvAVWTcKRLIJKM.cache b/tmp/cache/assets/sprockets/v3.0/o9/o9MpMQ-t1STnohACi-Eukbzsr7GFaZvAVWTcKRLIJKM.cache new file mode 100644 index 0000000..4fd429c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/o9/o9MpMQ-t1STnohACi-Eukbzsr7GFaZvAVWTcKRLIJKM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/pA/pAynl50Lbqi0rqTcrA80EiZ3aWVuWtvzbEosI98gmXk.cache b/tmp/cache/assets/sprockets/v3.0/pA/pAynl50Lbqi0rqTcrA80EiZ3aWVuWtvzbEosI98gmXk.cache new file mode 100644 index 0000000..c295916 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/pA/pAynl50Lbqi0rqTcrA80EiZ3aWVuWtvzbEosI98gmXk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qk/qk2OIT58AXaqWk27kNmzzzQKw8sRrEK5Jn6_Tl-bQPM.cache b/tmp/cache/assets/sprockets/v3.0/qk/qk2OIT58AXaqWk27kNmzzzQKw8sRrEK5Jn6_Tl-bQPM.cache new file mode 100644 index 0000000..c7e7f14 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/qk/qk2OIT58AXaqWk27kNmzzzQKw8sRrEK5Jn6_Tl-bQPM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/r3/r34Fzp-DnGWk9KPlc0ppW2a5EnTi-i-SOHMuGvD30Tw.cache b/tmp/cache/assets/sprockets/v3.0/r3/r34Fzp-DnGWk9KPlc0ppW2a5EnTi-i-SOHMuGvD30Tw.cache new file mode 100644 index 0000000..49bab35 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/r3/r34Fzp-DnGWk9KPlc0ppW2a5EnTi-i-SOHMuGvD30Tw.cache @@ -0,0 +1 @@ +"%?ҭ�����F��$Ip�ܱ F��t��82��u}� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sY/sYTSiD1dFW6gw23-7xFzlVhyuPOmzCXwEv7mSB4i5Fk.cache b/tmp/cache/assets/sprockets/v3.0/sY/sYTSiD1dFW6gw23-7xFzlVhyuPOmzCXwEv7mSB4i5Fk.cache new file mode 100644 index 0000000..7466bbe Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sY/sYTSiD1dFW6gw23-7xFzlVhyuPOmzCXwEv7mSB4i5Fk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/tn/tnZKTjGoXuHF8wdKJjUsXnm1M69PcVs69atlPZLtK-0.cache b/tmp/cache/assets/sprockets/v3.0/tn/tnZKTjGoXuHF8wdKJjUsXnm1M69PcVs69atlPZLtK-0.cache new file mode 100644 index 0000000..6bc3ba9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tn/tnZKTjGoXuHF8wdKJjUsXnm1M69PcVs69atlPZLtK-0.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=e4735398de8b1ed46cd365cc7be8b1c72a6584811e7fff199c8f9d02e46423e2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/v8/v85rljg_zFZx4REB0QvOcc6PdU2uUHQSUzqlVo654Oo.cache b/tmp/cache/assets/sprockets/v3.0/v8/v85rljg_zFZx4REB0QvOcc6PdU2uUHQSUzqlVo654Oo.cache new file mode 100644 index 0000000..f25341c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/v8/v85rljg_zFZx4REB0QvOcc6PdU2uUHQSUzqlVo654Oo.cache @@ -0,0 +1 @@ +I"�app/assets/stylesheets/users.scss?type=text/css&pipeline=self&id=9ddf24d1f3f53cf72bfd17d2b1d19fd38ee0ffd17e30acec3f28867d1440191e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/vB/vBykCiCaW5ZwpV1NYpKbJfR-CsUZYg-yFBEs0rkLCPs.cache b/tmp/cache/assets/sprockets/v3.0/vB/vBykCiCaW5ZwpV1NYpKbJfR-CsUZYg-yFBEs0rkLCPs.cache new file mode 100644 index 0000000..a42355f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/vB/vBykCiCaW5ZwpV1NYpKbJfR-CsUZYg-yFBEs0rkLCPs.cache @@ -0,0 +1 @@ +"%cr����b� �d�YCO�*�lj�/�1b���18� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/vS/vSikIxUnFBUO7S1uiATGrcZGYLTHJ0fbSPpMVic5gPI.cache b/tmp/cache/assets/sprockets/v3.0/vS/vSikIxUnFBUO7S1uiATGrcZGYLTHJ0fbSPpMVic5gPI.cache new file mode 100644 index 0000000..976b84c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/vS/vSikIxUnFBUO7S1uiATGrcZGYLTHJ0fbSPpMVic5gPI.cache @@ -0,0 +1 @@ +"%���z����y�����ÆO]u�"M�ێ��� \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/w-/w-AkL2K13HbHF-5DLB8UUYIfeuYEHen_vechO9SdYSM.cache b/tmp/cache/assets/sprockets/v3.0/w-/w-AkL2K13HbHF-5DLB8UUYIfeuYEHen_vechO9SdYSM.cache new file mode 100644 index 0000000..b142b73 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/w-/w-AkL2K13HbHF-5DLB8UUYIfeuYEHen_vechO9SdYSM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/we/we0tUM0BVIVeV4KoDD5Wy_OVVqm60-DHs5f_fIQDRVQ.cache b/tmp/cache/assets/sprockets/v3.0/we/we0tUM0BVIVeV4KoDD5Wy_OVVqm60-DHs5f_fIQDRVQ.cache new file mode 100644 index 0000000..18e518e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/we/we0tUM0BVIVeV4KoDD5Wy_OVVqm60-DHs5f_fIQDRVQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/yC/yCezHr7hgyYGsg-Zn3kinFntXzM8dTMwBMbGl7yoxqU.cache b/tmp/cache/assets/sprockets/v3.0/yC/yCezHr7hgyYGsg-Zn3kinFntXzM8dTMwBMbGl7yoxqU.cache new file mode 100644 index 0000000..ff9124f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/yC/yCezHr7hgyYGsg-Zn3kinFntXzM8dTMwBMbGl7yoxqU.cache @@ -0,0 +1 @@ +"%�D�����#+��R=��������@7����|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/y_/y_glLMKXOGfNFdrOOyM-dQCBZWIrn2vZ-ASyAE4QlEM.cache b/tmp/cache/assets/sprockets/v3.0/y_/y_glLMKXOGfNFdrOOyM-dQCBZWIrn2vZ-ASyAE4QlEM.cache new file mode 100644 index 0000000..e6a91e0 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/y_/y_glLMKXOGfNFdrOOyM-dQCBZWIrn2vZ-ASyAE4QlEM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/yn/ynon2D0Jgs7aZln4YabY7uepzPzDeLwtnZk5BIyHvSg.cache b/tmp/cache/assets/sprockets/v3.0/yn/ynon2D0Jgs7aZln4YabY7uepzPzDeLwtnZk5BIyHvSg.cache new file mode 100644 index 0000000..c3f43a3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/yn/ynon2D0Jgs7aZln4YabY7uepzPzDeLwtnZk5BIyHvSg.cache @@ -0,0 +1 @@ +I"�app/assets/javascripts/application.js?type=application/javascript&id=29e02e8dc0ee0f1ceddb2b3364707908020c630583dfbb19b738cc5efd320621:ET \ No newline at end of file diff --git a/tmp/restart.txt b/tmp/restart.txt new file mode 100644 index 0000000..e69de29