Skip to content

Commit

Permalink
TECH-4739: Move dummy Rails app into spec/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaddell committed Sep 15, 2020
1 parent 9960faa commit cd53933
Show file tree
Hide file tree
Showing 49 changed files with 33,644 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require File.expand_path('../spec/dummy/config/application', __FILE__)
Rails.application.config.root = "spec/dummy"

Bundler::GemHelper.install_tasks
Rails.application.load_tasks
Expand Down
1 change: 1 addition & 0 deletions app/assets/config/manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added spec/dummy/db/development.sqlite3
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file added spec/dummy/db/test.sqlite3
Binary file not shown.
File renamed without changes.
47 changes: 47 additions & 0 deletions spec/dummy/log/development.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
 (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 

This comment has been minimized.

Copy link
@ColinDKelley

ColinDKelley Sep 15, 2020

This log/ folder should be in the .gitignore file, right?

 (0.1ms) select sqlite_version(*)
 (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
 (0.1ms) SELECT version FROM "schema_migrations"
 (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
 (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
 (0.0ms) select sqlite_version(*)
 (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
 (0.1ms) SELECT version FROM "schema_migrations"
 (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
 (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
 (0.1ms) select sqlite_version(*)
 (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
 (0.1ms) SELECT version FROM "schema_migrations"
 (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
 (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
 (0.0ms) select sqlite_version(*)
 (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
 (0.1ms) SELECT version FROM "schema_migrations"
 (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
 (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
 (0.0ms) select sqlite_version(*)
 (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
 (0.1ms) SELECT version FROM "schema_migrations"
 (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
 (27.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
 (19.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
 (0.2ms) SELECT version FROM `schema_migrations`
 (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
 (16.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
 (20.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
 (0.2ms) SELECT version FROM `schema_migrations`
 (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
ActiveRecord::SchemaMigration Load (8.5ms) SELECT `schema_migrations`.* FROM `schema_migrations`
 (8.8ms) DROP DATABASE IF EXISTS `activerecord_mysql_enum_test`
 (0.4ms) CREATE DATABASE `activerecord_mysql_enum_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
 (15.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
 (17.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
 (0.1ms) SELECT version FROM `schema_migrations`
 (1.2ms) INSERT INTO `schema_migrations` (version) VALUES ('0')

0 comments on commit cd53933

Please sign in to comment.