pattern_generator 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +34 -0
- data/lib/generators/service/service_generator.rb +19 -0
- data/lib/generators/service/templates/service.rb +10 -0
- data/lib/generators/service/templates/service_spec.rb +9 -0
- data/lib/pattern_generator/version.rb +3 -0
- data/lib/pattern_generator.rb +2 -0
- data/lib/tasks/pattern_generator_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +586 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/generators/service/service_generator_test.rb +31 -0
- data/test/test_helper.rb +20 -0
- metadata +174 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 11d132c442c624850a339dca72ead7f5d3352cfa2401e6d25c1fd8d6b431c9eb14923579c948a38bb028e4a7fb9da64728a3a080c8dcb571697be74da7997e21
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: e45f1a2e24cc8a3c6228f1ba2bf645bedd1915464237320564159b8f007476500102e7ac7f8867e74267243fcc2f8a2d61cf5ef9621e01fe6bb3dd43918627af
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,586 @@
|
|
1
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
5
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
6
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8
|
+
----------------------------------------------------
|
9
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
10
|
+
----------------------------------------------------
|
11
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13
|
+
---------------------------------------------------------
|
14
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
15
|
+
---------------------------------------------------------
|
16
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
17
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
19
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
20
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
21
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
22
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
23
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
24
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25
|
+
---------------------------------------------------------
|
26
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
27
|
+
---------------------------------------------------------
|
28
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30
|
+
----------------------------------------------------
|
31
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
32
|
+
----------------------------------------------------
|
33
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
34
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
35
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
36
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
37
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
38
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
39
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
40
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
41
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
42
|
+
----------------------------------------------------
|
43
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
44
|
+
----------------------------------------------------
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
47
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
48
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
49
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
50
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
51
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
52
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
53
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54
|
+
----------------------------------------------------
|
55
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
56
|
+
----------------------------------------------------
|
57
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
58
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
59
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
60
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
61
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
62
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
63
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
64
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
65
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
66
|
+
----------------------------------------------------
|
67
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
68
|
+
----------------------------------------------------
|
69
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
70
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
71
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
72
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
73
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
74
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
75
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
76
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
77
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
78
|
+
----------------------------------------------------
|
79
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
80
|
+
----------------------------------------------------
|
81
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
82
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
83
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
84
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
85
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
86
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
87
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
88
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
89
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
90
|
+
----------------------------------------------------
|
91
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
92
|
+
----------------------------------------------------
|
93
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
95
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
96
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
97
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
98
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
99
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
100
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
102
|
+
----------------------------------------------------
|
103
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
104
|
+
----------------------------------------------------
|
105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
107
|
+
---------------------------------------------------------
|
108
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
109
|
+
---------------------------------------------------------
|
110
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
111
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
112
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
113
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
114
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
115
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
116
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
117
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
119
|
+
----------------------------------------------------
|
120
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
121
|
+
----------------------------------------------------
|
122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
+
---------------------------------------------------------
|
125
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
126
|
+
---------------------------------------------------------
|
127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
128
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
129
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
130
|
+
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
131
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
132
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
133
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
134
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
136
|
+
----------------------------------------------------
|
137
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
138
|
+
----------------------------------------------------
|
139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
141
|
+
---------------------------------------------------------
|
142
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
143
|
+
---------------------------------------------------------
|
144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
145
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
146
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
147
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
148
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
149
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
150
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
151
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
153
|
+
----------------------------------------------------
|
154
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
155
|
+
----------------------------------------------------
|
156
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
157
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
158
|
+
---------------------------------------------------------
|
159
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
160
|
+
---------------------------------------------------------
|
161
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
162
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
163
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
164
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
165
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
166
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
167
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
168
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
170
|
+
---------------------------------------------------------
|
171
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
172
|
+
---------------------------------------------------------
|
173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
175
|
+
----------------------------------------------------
|
176
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
177
|
+
----------------------------------------------------
|
178
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
179
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
180
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
181
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
182
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
183
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
184
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
185
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
187
|
+
---------------------------------------------------------
|
188
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
189
|
+
---------------------------------------------------------
|
190
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
192
|
+
----------------------------------------------------
|
193
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
194
|
+
----------------------------------------------------
|
195
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
196
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
197
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
198
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
199
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
200
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
201
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
202
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
203
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
204
|
+
----------------------------------------------------
|
205
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
206
|
+
----------------------------------------------------
|
207
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
209
|
+
---------------------------------------------------------
|
210
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
211
|
+
---------------------------------------------------------
|
212
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
213
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
214
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
215
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
216
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
217
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
218
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
219
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
221
|
+
----------------------------------------------------
|
222
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
223
|
+
----------------------------------------------------
|
224
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
226
|
+
---------------------------------------------------------
|
227
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
228
|
+
---------------------------------------------------------
|
229
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
230
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
231
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
232
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
233
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
234
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
235
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
236
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
237
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
238
|
+
---------------------------------------------------------
|
239
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
240
|
+
---------------------------------------------------------
|
241
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
243
|
+
----------------------------------------------------
|
244
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
245
|
+
----------------------------------------------------
|
246
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
247
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
248
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
249
|
+
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
250
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
251
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
252
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
253
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
254
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
255
|
+
---------------------------------------------------------
|
256
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
257
|
+
---------------------------------------------------------
|
258
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
259
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
260
|
+
----------------------------------------------------
|
261
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
262
|
+
----------------------------------------------------
|
263
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
264
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
265
|
+
[1m[36m (3.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
266
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
267
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
268
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
269
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
270
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
271
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
272
|
+
---------------------------------------------------------
|
273
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
274
|
+
---------------------------------------------------------
|
275
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
276
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
277
|
+
----------------------------------------------------
|
278
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
279
|
+
----------------------------------------------------
|
280
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
282
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
283
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
284
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
285
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
286
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
287
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
289
|
+
----------------------------------------------------
|
290
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
291
|
+
----------------------------------------------------
|
292
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
293
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
294
|
+
---------------------------------------------------------
|
295
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
296
|
+
---------------------------------------------------------
|
297
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
298
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
299
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
300
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
301
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
302
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
303
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
304
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
305
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
306
|
+
---------------------------------------------------------
|
307
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
308
|
+
---------------------------------------------------------
|
309
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
310
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
311
|
+
----------------------------------------------------
|
312
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
313
|
+
----------------------------------------------------
|
314
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
315
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
316
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
317
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
318
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
319
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
320
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
321
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
+
----------------------------------------------------
|
324
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
325
|
+
----------------------------------------------------
|
326
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
327
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
328
|
+
---------------------------------------------------------
|
329
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
330
|
+
---------------------------------------------------------
|
331
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
332
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
333
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
334
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
335
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
336
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
337
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
338
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
340
|
+
----------------------------------------------------
|
341
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
342
|
+
----------------------------------------------------
|
343
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
344
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
345
|
+
---------------------------------------------------------
|
346
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
347
|
+
---------------------------------------------------------
|
348
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
349
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
350
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
351
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
352
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
353
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
354
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
355
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
356
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
357
|
+
----------------------------------------------------
|
358
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
359
|
+
----------------------------------------------------
|
360
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
362
|
+
---------------------------------------------------------
|
363
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
364
|
+
---------------------------------------------------------
|
365
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
366
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
367
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
368
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
369
|
+
[1m[36m (3.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
370
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
371
|
+
[1m[36m (3.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
372
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
373
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
374
|
+
---------------------------------------------------------
|
375
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
376
|
+
---------------------------------------------------------
|
377
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
378
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
379
|
+
----------------------------------------------------
|
380
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
381
|
+
----------------------------------------------------
|
382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
383
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
384
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
385
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
386
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
387
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
388
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
389
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
391
|
+
----------------------------------------------------
|
392
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
393
|
+
----------------------------------------------------
|
394
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
395
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
396
|
+
---------------------------------------------------------
|
397
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
398
|
+
---------------------------------------------------------
|
399
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
400
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
401
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
402
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
403
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
404
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
405
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
406
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
407
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
408
|
+
----------------------------------------------------
|
409
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
410
|
+
----------------------------------------------------
|
411
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
412
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
413
|
+
---------------------------------------------------------
|
414
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
415
|
+
---------------------------------------------------------
|
416
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
417
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
418
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
419
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
420
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
421
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
422
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
423
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
424
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
425
|
+
----------------------------------------------------
|
426
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
427
|
+
----------------------------------------------------
|
428
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
429
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
430
|
+
---------------------------------------------------------
|
431
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
432
|
+
---------------------------------------------------------
|
433
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
434
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
435
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
436
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
437
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
438
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
439
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
440
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
442
|
+
---------------------------------------------------------
|
443
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
444
|
+
---------------------------------------------------------
|
445
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
446
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
447
|
+
----------------------------------------------------
|
448
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
449
|
+
----------------------------------------------------
|
450
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
451
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
452
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
453
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
454
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
455
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
456
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
457
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
458
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
459
|
+
----------------------------------------------------
|
460
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
461
|
+
----------------------------------------------------
|
462
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
463
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
464
|
+
---------------------------------------------------------
|
465
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
466
|
+
---------------------------------------------------------
|
467
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
468
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
469
|
+
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
470
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
471
|
+
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
472
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
473
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
474
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
476
|
+
---------------------------------------------------------
|
477
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
478
|
+
---------------------------------------------------------
|
479
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
481
|
+
----------------------------------------------------
|
482
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
483
|
+
----------------------------------------------------
|
484
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
485
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
486
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
487
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
488
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
489
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
490
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
491
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
492
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
493
|
+
----------------------------------------------------
|
494
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
495
|
+
----------------------------------------------------
|
496
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
497
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
498
|
+
---------------------------------------------------------
|
499
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
500
|
+
---------------------------------------------------------
|
501
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
502
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
503
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
504
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
505
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
506
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
507
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
508
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
510
|
+
----------------------------------------------------
|
511
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
512
|
+
----------------------------------------------------
|
513
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
515
|
+
---------------------------------------------------------
|
516
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
517
|
+
---------------------------------------------------------
|
518
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
519
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
520
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
521
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
522
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
523
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
524
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
525
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
527
|
+
----------------------------------------------------
|
528
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
529
|
+
----------------------------------------------------
|
530
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
531
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
532
|
+
---------------------------------------------------------
|
533
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
534
|
+
---------------------------------------------------------
|
535
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
536
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
537
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
538
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
539
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
540
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
541
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
542
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
543
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
544
|
+
---------------------------------------------------------
|
545
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
546
|
+
---------------------------------------------------------
|
547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
549
|
+
----------------------------------------------------
|
550
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
551
|
+
----------------------------------------------------
|
552
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
554
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
555
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
556
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
557
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
558
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
559
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
561
|
+
----------------------------------------------------
|
562
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
563
|
+
----------------------------------------------------
|
564
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
566
|
+
---------------------------------------------------------
|
567
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
568
|
+
---------------------------------------------------------
|
569
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
570
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
571
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
572
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
573
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
574
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
575
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
576
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
577
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
578
|
+
----------------------------------------------------
|
579
|
+
ServiceGeneratorTest: test_correct_file_is_generated
|
580
|
+
----------------------------------------------------
|
581
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
583
|
+
---------------------------------------------------------
|
584
|
+
ServiceGeneratorTest: test_correct_spec_file_is_generated
|
585
|
+
---------------------------------------------------------
|
586
|
+
[1m[35m (0.2ms)[0m rollback transaction
|