annotator 0.0.8.1 → 0.0.9
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/README.rdoc +2 -0
- data/lib/annotator/attributes.rb +10 -1
- data/lib/annotator/version.rb +1 -1
- data/test/annotator_test.rb +1 -0
- data/test/assets/user_annotated.rb +3 -4
- data/test/dummy/app/models/user.rb +0 -2
- data/test/dummy/config/environments/development.rb +0 -6
- data/test/dummy/config/environments/test.rb +0 -6
- data/test/dummy/db/migrate/20120219112425_create_foos.rb +1 -1
- data/test/dummy/db/migrate/20120527020350_devise_create_users.rb +3 -1
- data/test/dummy/db/migrate/20120527023350_create_papers.rb +1 -1
- data/test/dummy/db/migrate/20120527025142_create_boos.rb +1 -1
- data/test/dummy/db/migrate/20120708043543_create_roos.rb +1 -1
- metadata +105 -119
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -170
- data/test/dummy/log/test.log +0 -2
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e281a273299bac0706dd5c95fae62865b18690bd
|
4
|
+
data.tar.gz: ee3b54dea76bd7cda81563f1686fdd5e80eb4397
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1db22454981d881233579c0f3f0a49a21de06f5e0fd0a23017b846722fc309349a8593ff7649edf86f2f7b37d3d6b9c55a4c41b723001f9d602c72a471a456ed
|
7
|
+
data.tar.gz: 049863c3d57c5b11d90eca21cb0c26449b88d71e63dec0af4a6def6dbcd4970d4cf626dddbe6101ebecb369a5b7f082f64c858ef1a8ab4a63e4323a9496dce60
|
data/README.rdoc
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
= Annotator
|
2
|
+
{<img src="https://gemnasium.com/tech-angels/annotator.png" alt="Dependency Status" />}[https://gemnasium.com/tech-angels/annotator]
|
3
|
+
{<img src="https://travis-ci.org/tech-angels/annotator.png?branch=master" alt="Build Status" />}[https://travis-ci.org/tech-angels/annotator]
|
2
4
|
|
3
5
|
If you just want to have column descriptions in your model file, {annotate_models}[https://github.com/ctran/annotate_models] should suite you well. Annotator will help you if you want to also keep your own comments about these columns.
|
4
6
|
|
data/lib/annotator/attributes.rb
CHANGED
@@ -79,11 +79,20 @@ module Annotator
|
|
79
79
|
end
|
80
80
|
end
|
81
81
|
|
82
|
+
# default value could be a multiple lines string, which would ruin annotations,
|
83
|
+
# so we truncate it and display inspect of that string
|
84
|
+
def truncate_default(str)
|
85
|
+
return str unless str.kind_of? String
|
86
|
+
str.sub!(/^'(.*)'$/m,'\1')
|
87
|
+
str = "#{str[0..10]}..." if str.size > 10
|
88
|
+
str.inspect
|
89
|
+
end
|
90
|
+
|
82
91
|
# Human readable description of given column type
|
83
92
|
def type_str(c)
|
84
93
|
ret = c.type.to_s
|
85
94
|
ret << ", primary" if c.primary
|
86
|
-
ret << ", default=#{c.default}" if c.default
|
95
|
+
ret << ", default=#{truncate_default(c.default)}" if c.default
|
87
96
|
ret << ", not null" unless c.null
|
88
97
|
ret << ", limit=#{c.limit}" if c.limit && (c.limit != 255 && c.type != :string)
|
89
98
|
ret
|
data/lib/annotator/version.rb
CHANGED
data/test/annotator_test.rb
CHANGED
@@ -30,6 +30,7 @@ class AnnotatorTest < ActiveSupport::TestCase
|
|
30
30
|
assert_equal File.read(asset_file 'foo_annotated_bad_column_nodoc.rb' ), File.read(app_file 'foo.rb' )
|
31
31
|
end
|
32
32
|
|
33
|
+
# also tests multiline default values
|
33
34
|
test "annotating devise columns" do
|
34
35
|
assert_equal File.read(asset_file 'user_annotated.rb' ), File.read(app_file 'user.rb' )
|
35
36
|
end
|
@@ -7,8 +7,9 @@
|
|
7
7
|
# * created_at [datetime, not null] - creation time
|
8
8
|
# * current_sign_in_at [datetime] - Devise Trackable module
|
9
9
|
# * current_sign_in_ip [string] - Devise Trackable module
|
10
|
-
# *
|
11
|
-
# *
|
10
|
+
# * description [string, default="Long\nmultil..."] - TODO: document me
|
11
|
+
# * email [string, default="", not null]
|
12
|
+
# * encrypted_password [string, default="", not null] - Devise encrypted password
|
12
13
|
# * failed_attempts [integer, default=0] - Devise Lockable module
|
13
14
|
# * last_sign_in_at [datetime] - Devise Trackable module
|
14
15
|
# * last_sign_in_ip [string] - Devise Trackable module
|
@@ -29,6 +30,4 @@ class User < ActiveRecord::Base
|
|
29
30
|
:recoverable, :rememberable, :trackable, :validatable]
|
30
31
|
end
|
31
32
|
|
32
|
-
# Setup accessible (or protected) attributes for your model
|
33
|
-
attr_accessible :email, :password, :password_confirmation, :remember_me
|
34
33
|
end
|
@@ -6,9 +6,6 @@ Dummy::Application.configure do
|
|
6
6
|
# since you don't have to restart the web server when you make code changes.
|
7
7
|
config.cache_classes = false
|
8
8
|
|
9
|
-
# Log error messages when you accidentally call methods on nil.
|
10
|
-
config.whiny_nils = true
|
11
|
-
|
12
9
|
# Show full error reports and disable caching
|
13
10
|
config.consider_all_requests_local = true
|
14
11
|
config.action_controller.perform_caching = false
|
@@ -22,9 +19,6 @@ Dummy::Application.configure do
|
|
22
19
|
# Only use best-standards-support built into browsers
|
23
20
|
config.action_dispatch.best_standards_support = :builtin
|
24
21
|
|
25
|
-
# Raise exception on mass assignment protection for Active Record models
|
26
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
27
|
-
|
28
22
|
# Log the query plan for queries taking more than this (works
|
29
23
|
# with SQLite, MySQL, and PostgreSQL)
|
30
24
|
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
@@ -11,9 +11,6 @@ Dummy::Application.configure do
|
|
11
11
|
config.serve_static_assets = true
|
12
12
|
config.static_cache_control = "public, max-age=3600"
|
13
13
|
|
14
|
-
# Log error messages when you accidentally call methods on nil
|
15
|
-
config.whiny_nils = true
|
16
|
-
|
17
14
|
# Show full error reports and disable caching
|
18
15
|
config.consider_all_requests_local = true
|
19
16
|
config.action_controller.perform_caching = false
|
@@ -29,9 +26,6 @@ Dummy::Application.configure do
|
|
29
26
|
# ActionMailer::Base.deliveries array.
|
30
27
|
config.action_mailer.delivery_method = :test
|
31
28
|
|
32
|
-
# Raise exception on mass assignment protection for Active Record models
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
-
|
35
29
|
# Print deprecation notices to the stderr
|
36
30
|
config.active_support.deprecation = :stderr
|
37
31
|
end
|
@@ -36,8 +36,10 @@ class DeviseCreateUsers < ActiveRecord::Migration
|
|
36
36
|
## Token authenticatable
|
37
37
|
t.string :authentication_token
|
38
38
|
|
39
|
+
# Something exctra to test default values annotations
|
40
|
+
t.string :description, :default => "Long\nmultiline\nstring"
|
39
41
|
|
40
|
-
t.timestamps
|
42
|
+
t.timestamps :null => false
|
41
43
|
end
|
42
44
|
|
43
45
|
add_index :users, :email, :unique => true
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: annotator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.9
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Tech-Angels
|
@@ -10,54 +9,48 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 2013-06-10 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: activerecord
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - '>='
|
21
19
|
- !ruby/object:Gem::Version
|
22
20
|
version: '3.0'
|
23
21
|
type: :runtime
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - '>='
|
29
26
|
- !ruby/object:Gem::Version
|
30
27
|
version: '3.0'
|
31
28
|
- !ruby/object:Gem::Dependency
|
32
29
|
name: sqlite3
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
31
|
requirements:
|
36
|
-
- -
|
32
|
+
- - '>='
|
37
33
|
- !ruby/object:Gem::Version
|
38
34
|
version: '0'
|
39
35
|
type: :development
|
40
36
|
prerelease: false
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
38
|
requirements:
|
44
|
-
- -
|
39
|
+
- - '>='
|
45
40
|
- !ruby/object:Gem::Version
|
46
41
|
version: '0'
|
47
42
|
- !ruby/object:Gem::Dependency
|
48
43
|
name: rails
|
49
44
|
requirement: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
45
|
requirements:
|
52
|
-
- -
|
46
|
+
- - '>='
|
53
47
|
- !ruby/object:Gem::Version
|
54
48
|
version: '3.0'
|
55
49
|
type: :development
|
56
50
|
prerelease: false
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
52
|
requirements:
|
60
|
-
- -
|
53
|
+
- - '>='
|
61
54
|
- !ruby/object:Gem::Version
|
62
55
|
version: '3.0'
|
63
56
|
description: ''
|
@@ -67,187 +60,180 @@ executables: []
|
|
67
60
|
extensions: []
|
68
61
|
extra_rdoc_files: []
|
69
62
|
files:
|
70
|
-
- lib/
|
71
|
-
- lib/annotator.rb
|
72
|
-
- lib/annotator/railtie.rb
|
73
|
-
- lib/annotator/initial_description/devise.rb
|
74
|
-
- lib/annotator/initial_description/rails.rb
|
63
|
+
- lib/annotator/attributes.rb
|
75
64
|
- lib/annotator/initial_description/base.rb
|
76
|
-
- lib/annotator/initial_description/paperclip.rb
|
77
65
|
- lib/annotator/initial_description/belongs_to.rb
|
66
|
+
- lib/annotator/initial_description/devise.rb
|
67
|
+
- lib/annotator/initial_description/paperclip.rb
|
68
|
+
- lib/annotator/initial_description/rails.rb
|
78
69
|
- lib/annotator/initial_description.rb
|
79
|
-
- lib/annotator/version.rb
|
80
|
-
- lib/annotator/attributes.rb
|
81
70
|
- lib/annotator/model.rb
|
71
|
+
- lib/annotator/railtie.rb
|
72
|
+
- lib/annotator/version.rb
|
73
|
+
- lib/annotator.rb
|
74
|
+
- lib/tasks/annotator_tasks.rake
|
82
75
|
- MIT-LICENSE
|
83
76
|
- Rakefile
|
84
77
|
- README.rdoc
|
85
|
-
- test/
|
86
|
-
- test/assets/
|
87
|
-
- test/assets/moo_hoo_annotated.rb
|
88
|
-
- test/assets/boo_encoding_annotated.rb
|
78
|
+
- test/annotator_test.rb
|
79
|
+
- test/assets/boo_annotated.rb
|
89
80
|
- test/assets/boo_encoding.rb
|
90
|
-
- test/assets/
|
81
|
+
- test/assets/boo_encoding_annotated.rb
|
91
82
|
- test/assets/foo_annotated.rb
|
92
|
-
- test/assets/foo_annotated_with_comments.rb
|
93
|
-
- test/assets/boo_annotated.rb
|
94
|
-
- test/assets/foo_annotated_bad_column_nodoc.rb
|
95
|
-
- test/assets/paper_annotated.rb
|
96
83
|
- test/assets/foo_annotated_bad_column.rb
|
84
|
+
- test/assets/foo_annotated_bad_column_nodoc.rb
|
97
85
|
- test/assets/foo_annotated_column_fixed.rb
|
86
|
+
- test/assets/foo_annotated_with_comments.rb
|
87
|
+
- test/assets/foo_require_first.rb
|
88
|
+
- test/assets/moo_hoo_annotated.rb
|
89
|
+
- test/assets/paper_annotated.rb
|
90
|
+
- test/assets/roo_initially_annotated.rb
|
98
91
|
- test/assets/roo_reannotated.rb
|
99
|
-
- test/
|
100
|
-
- test/test_helper.rb
|
101
|
-
- test/dummy/app/helpers/application_helper.rb
|
102
|
-
- test/dummy/app/assets/stylesheets/application.css
|
92
|
+
- test/assets/user_annotated.rb
|
103
93
|
- test/dummy/app/assets/javascripts/application.js
|
94
|
+
- test/dummy/app/assets/stylesheets/application.css
|
104
95
|
- test/dummy/app/controllers/application_controller.rb
|
105
|
-
- test/dummy/app/
|
106
|
-
- test/dummy/app/models/
|
96
|
+
- test/dummy/app/helpers/application_helper.rb
|
97
|
+
- test/dummy/app/models/boo.rb
|
107
98
|
- test/dummy/app/models/foo.rb
|
108
|
-
- test/dummy/app/models/paper.rb
|
109
99
|
- test/dummy/app/models/moo/hoo.rb
|
100
|
+
- test/dummy/app/models/nomodel.rb
|
101
|
+
- test/dummy/app/models/paper.rb
|
110
102
|
- test/dummy/app/models/roo.rb
|
111
|
-
- test/dummy/app/models/
|
103
|
+
- test/dummy/app/models/user.rb
|
112
104
|
- test/dummy/app/views/layouts/application.html.erb
|
113
|
-
- test/dummy/config/
|
105
|
+
- test/dummy/config/application.rb
|
106
|
+
- test/dummy/config/boot.rb
|
107
|
+
- test/dummy/config/database.yml
|
114
108
|
- test/dummy/config/environment.rb
|
115
|
-
- test/dummy/config/environments/production.rb
|
116
109
|
- test/dummy/config/environments/development.rb
|
110
|
+
- test/dummy/config/environments/production.rb
|
117
111
|
- test/dummy/config/environments/test.rb
|
118
|
-
- test/dummy/config/application.rb
|
119
|
-
- test/dummy/config/locales/en.yml
|
120
|
-
- test/dummy/config/database.yml
|
121
|
-
- test/dummy/config/boot.rb
|
122
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
123
|
-
- test/dummy/config/initializers/mime_types.rb
|
124
|
-
- test/dummy/config/initializers/session_store.rb
|
125
112
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
126
|
-
- test/dummy/config/initializers/secret_token.rb
|
127
113
|
- test/dummy/config/initializers/inflections.rb
|
128
|
-
- test/dummy/
|
129
|
-
- test/dummy/
|
130
|
-
- test/dummy/
|
114
|
+
- test/dummy/config/initializers/mime_types.rb
|
115
|
+
- test/dummy/config/initializers/secret_token.rb
|
116
|
+
- test/dummy/config/initializers/session_store.rb
|
117
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
118
|
+
- test/dummy/config/locales/en.yml
|
119
|
+
- test/dummy/config/routes.rb
|
131
120
|
- test/dummy/config.ru
|
132
|
-
- test/dummy/
|
133
|
-
- test/dummy/db/development.sqlite3
|
134
|
-
- test/dummy/db/migrate/20120527023350_create_papers.rb
|
121
|
+
- test/dummy/db/migrate/20120219112425_create_foos.rb
|
135
122
|
- test/dummy/db/migrate/20120527020350_devise_create_users.rb
|
123
|
+
- test/dummy/db/migrate/20120527023350_create_papers.rb
|
136
124
|
- test/dummy/db/migrate/20120527023417_add_attachment_avatar_to_papers.rb
|
137
|
-
- test/dummy/db/migrate/20120708043543_create_roos.rb
|
138
|
-
- test/dummy/db/migrate/20120219112425_create_foos.rb
|
139
125
|
- test/dummy/db/migrate/20120527025142_create_boos.rb
|
126
|
+
- test/dummy/db/migrate/20120708043543_create_roos.rb
|
140
127
|
- test/dummy/db/schema.rb
|
128
|
+
- test/dummy/public/404.html
|
129
|
+
- test/dummy/public/422.html
|
130
|
+
- test/dummy/public/500.html
|
131
|
+
- test/dummy/public/favicon.ico
|
132
|
+
- test/dummy/Rakefile
|
133
|
+
- test/dummy/README.rdoc
|
134
|
+
- test/dummy/script/rails
|
141
135
|
- test/dummy/test/fixtures/boos.yml
|
142
|
-
- test/dummy/test/fixtures/papers.yml
|
143
|
-
- test/dummy/test/fixtures/users.yml
|
144
136
|
- test/dummy/test/fixtures/foos.yml
|
137
|
+
- test/dummy/test/fixtures/papers.yml
|
145
138
|
- test/dummy/test/fixtures/roos.yml
|
146
|
-
- test/dummy/test/
|
139
|
+
- test/dummy/test/fixtures/users.yml
|
147
140
|
- test/dummy/test/unit/boo_test.rb
|
148
|
-
- test/dummy/test/unit/user_test.rb
|
149
|
-
- test/dummy/test/unit/roo_test.rb
|
150
141
|
- test/dummy/test/unit/foo_test.rb
|
151
|
-
- test/dummy/
|
152
|
-
- test/dummy/
|
153
|
-
- test/dummy/
|
154
|
-
- test/dummy/public/500.html
|
155
|
-
- test/dummy/public/422.html
|
142
|
+
- test/dummy/test/unit/paper_test.rb
|
143
|
+
- test/dummy/test/unit/roo_test.rb
|
144
|
+
- test/dummy/test/unit/user_test.rb
|
156
145
|
- test/support/test_app.rb
|
146
|
+
- test/test_helper.rb
|
157
147
|
homepage: https://github.com/tech-angels/annotator
|
158
148
|
licenses: []
|
149
|
+
metadata: {}
|
159
150
|
post_install_message:
|
160
151
|
rdoc_options: []
|
161
152
|
require_paths:
|
162
153
|
- lib
|
163
154
|
required_ruby_version: !ruby/object:Gem::Requirement
|
164
|
-
none: false
|
165
155
|
requirements:
|
166
|
-
- -
|
156
|
+
- - '>='
|
167
157
|
- !ruby/object:Gem::Version
|
168
158
|
version: '0'
|
169
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
|
-
none: false
|
171
160
|
requirements:
|
172
|
-
- -
|
161
|
+
- - '>='
|
173
162
|
- !ruby/object:Gem::Version
|
174
163
|
version: '0'
|
175
164
|
requirements: []
|
176
165
|
rubyforge_project:
|
177
|
-
rubygems_version:
|
166
|
+
rubygems_version: 2.0.3
|
178
167
|
signing_key:
|
179
|
-
specification_version:
|
168
|
+
specification_version: 4
|
180
169
|
summary: Annotate your models and keep your comments about fields.
|
181
170
|
test_files:
|
182
|
-
- test/
|
183
|
-
- test/assets/
|
184
|
-
- test/assets/moo_hoo_annotated.rb
|
185
|
-
- test/assets/boo_encoding_annotated.rb
|
171
|
+
- test/annotator_test.rb
|
172
|
+
- test/assets/boo_annotated.rb
|
186
173
|
- test/assets/boo_encoding.rb
|
187
|
-
- test/assets/
|
174
|
+
- test/assets/boo_encoding_annotated.rb
|
188
175
|
- test/assets/foo_annotated.rb
|
189
|
-
- test/assets/foo_annotated_with_comments.rb
|
190
|
-
- test/assets/boo_annotated.rb
|
191
|
-
- test/assets/foo_annotated_bad_column_nodoc.rb
|
192
|
-
- test/assets/paper_annotated.rb
|
193
176
|
- test/assets/foo_annotated_bad_column.rb
|
177
|
+
- test/assets/foo_annotated_bad_column_nodoc.rb
|
194
178
|
- test/assets/foo_annotated_column_fixed.rb
|
179
|
+
- test/assets/foo_annotated_with_comments.rb
|
180
|
+
- test/assets/foo_require_first.rb
|
181
|
+
- test/assets/moo_hoo_annotated.rb
|
182
|
+
- test/assets/paper_annotated.rb
|
183
|
+
- test/assets/roo_initially_annotated.rb
|
195
184
|
- test/assets/roo_reannotated.rb
|
196
|
-
- test/
|
197
|
-
- test/test_helper.rb
|
198
|
-
- test/dummy/app/helpers/application_helper.rb
|
199
|
-
- test/dummy/app/assets/stylesheets/application.css
|
185
|
+
- test/assets/user_annotated.rb
|
200
186
|
- test/dummy/app/assets/javascripts/application.js
|
187
|
+
- test/dummy/app/assets/stylesheets/application.css
|
201
188
|
- test/dummy/app/controllers/application_controller.rb
|
202
|
-
- test/dummy/app/
|
203
|
-
- test/dummy/app/models/
|
189
|
+
- test/dummy/app/helpers/application_helper.rb
|
190
|
+
- test/dummy/app/models/boo.rb
|
204
191
|
- test/dummy/app/models/foo.rb
|
205
|
-
- test/dummy/app/models/paper.rb
|
206
192
|
- test/dummy/app/models/moo/hoo.rb
|
193
|
+
- test/dummy/app/models/nomodel.rb
|
194
|
+
- test/dummy/app/models/paper.rb
|
207
195
|
- test/dummy/app/models/roo.rb
|
208
|
-
- test/dummy/app/models/
|
196
|
+
- test/dummy/app/models/user.rb
|
209
197
|
- test/dummy/app/views/layouts/application.html.erb
|
210
|
-
- test/dummy/config/
|
198
|
+
- test/dummy/config/application.rb
|
199
|
+
- test/dummy/config/boot.rb
|
200
|
+
- test/dummy/config/database.yml
|
211
201
|
- test/dummy/config/environment.rb
|
212
|
-
- test/dummy/config/environments/production.rb
|
213
202
|
- test/dummy/config/environments/development.rb
|
203
|
+
- test/dummy/config/environments/production.rb
|
214
204
|
- test/dummy/config/environments/test.rb
|
215
|
-
- test/dummy/config/application.rb
|
216
|
-
- test/dummy/config/locales/en.yml
|
217
|
-
- test/dummy/config/database.yml
|
218
|
-
- test/dummy/config/boot.rb
|
219
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
220
|
-
- test/dummy/config/initializers/mime_types.rb
|
221
|
-
- test/dummy/config/initializers/session_store.rb
|
222
205
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
223
|
-
- test/dummy/config/initializers/secret_token.rb
|
224
206
|
- test/dummy/config/initializers/inflections.rb
|
225
|
-
- test/dummy/
|
226
|
-
- test/dummy/
|
227
|
-
- test/dummy/
|
207
|
+
- test/dummy/config/initializers/mime_types.rb
|
208
|
+
- test/dummy/config/initializers/secret_token.rb
|
209
|
+
- test/dummy/config/initializers/session_store.rb
|
210
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
211
|
+
- test/dummy/config/locales/en.yml
|
212
|
+
- test/dummy/config/routes.rb
|
228
213
|
- test/dummy/config.ru
|
229
|
-
- test/dummy/
|
230
|
-
- test/dummy/db/development.sqlite3
|
231
|
-
- test/dummy/db/migrate/20120527023350_create_papers.rb
|
214
|
+
- test/dummy/db/migrate/20120219112425_create_foos.rb
|
232
215
|
- test/dummy/db/migrate/20120527020350_devise_create_users.rb
|
216
|
+
- test/dummy/db/migrate/20120527023350_create_papers.rb
|
233
217
|
- test/dummy/db/migrate/20120527023417_add_attachment_avatar_to_papers.rb
|
234
|
-
- test/dummy/db/migrate/20120708043543_create_roos.rb
|
235
|
-
- test/dummy/db/migrate/20120219112425_create_foos.rb
|
236
218
|
- test/dummy/db/migrate/20120527025142_create_boos.rb
|
219
|
+
- test/dummy/db/migrate/20120708043543_create_roos.rb
|
237
220
|
- test/dummy/db/schema.rb
|
221
|
+
- test/dummy/public/404.html
|
222
|
+
- test/dummy/public/422.html
|
223
|
+
- test/dummy/public/500.html
|
224
|
+
- test/dummy/public/favicon.ico
|
225
|
+
- test/dummy/Rakefile
|
226
|
+
- test/dummy/README.rdoc
|
227
|
+
- test/dummy/script/rails
|
238
228
|
- test/dummy/test/fixtures/boos.yml
|
239
|
-
- test/dummy/test/fixtures/papers.yml
|
240
|
-
- test/dummy/test/fixtures/users.yml
|
241
229
|
- test/dummy/test/fixtures/foos.yml
|
230
|
+
- test/dummy/test/fixtures/papers.yml
|
242
231
|
- test/dummy/test/fixtures/roos.yml
|
243
|
-
- test/dummy/test/
|
232
|
+
- test/dummy/test/fixtures/users.yml
|
244
233
|
- test/dummy/test/unit/boo_test.rb
|
245
|
-
- test/dummy/test/unit/user_test.rb
|
246
|
-
- test/dummy/test/unit/roo_test.rb
|
247
234
|
- test/dummy/test/unit/foo_test.rb
|
248
|
-
- test/dummy/
|
249
|
-
- test/dummy/
|
250
|
-
- test/dummy/
|
251
|
-
- test/dummy/public/500.html
|
252
|
-
- test/dummy/public/422.html
|
235
|
+
- test/dummy/test/unit/paper_test.rb
|
236
|
+
- test/dummy/test/unit/roo_test.rb
|
237
|
+
- test/dummy/test/unit/user_test.rb
|
253
238
|
- test/support/test_app.rb
|
239
|
+
- test/test_helper.rb
|
Binary file
|
@@ -1,170 +0,0 @@
|
|
1
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
-
[1m[35m (14.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
-
[1m[35m (3.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
-
Migrating to CreateFoos (20120219112425)
|
7
|
-
[1m[35m (0.1ms)[0m begin transaction
|
8
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "title" varchar(255), "random_number" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
9
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120219112425')
|
10
|
-
[1m[36m (2.8ms)[0m [1mcommit transaction[0m
|
11
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
12
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("foos")
|
14
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
15
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
16
|
-
[1m[36m (15.7ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "title" varchar(255), "random_number" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
17
|
-
[1m[35m (3.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
18
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
19
|
-
[1m[35m (3.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
20
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
21
|
-
[1m[35m (4.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120219112425')
|
22
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
23
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
24
|
-
[1m[36m (5.8ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "title" varchar(255), "random_number" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
25
|
-
[1m[35m (3.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
26
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
27
|
-
[1m[35m (3.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
28
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
29
|
-
[1m[35m (3.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120219112425')
|
30
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
31
|
-
[1m[35m (5.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
32
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
33
|
-
[1m[35m (4.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
34
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
35
|
-
Migrating to CreateFoos (20120219112425)
|
36
|
-
[1m[35m (0.0ms)[0m begin transaction
|
37
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "title" varchar(255), "random_number" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
38
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120219112425')
|
39
|
-
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
40
|
-
Migrating to DeviseCreateUsers (20120527020350)
|
41
|
-
[1m[35m (0.0ms)[0m begin transaction
|
42
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "password_salt" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar(255), "failed_attempts" integer DEFAULT 0, "unlock_token" varchar(255), "locked_at" datetime, "authentication_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
43
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
44
|
-
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
45
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
46
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m
|
47
|
-
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
48
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
49
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_reset_password_token')
|
50
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m
|
51
|
-
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")
|
52
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
53
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
54
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
55
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
56
|
-
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")[0m
|
57
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
58
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_unlock_token')[0m
|
59
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
60
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
61
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
62
|
-
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_authentication_token" ON "users" ("authentication_token")[0m
|
63
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120527020350')
|
64
|
-
[1m[36m (3.6ms)[0m [1mcommit transaction[0m
|
65
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
66
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
67
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("foos")
|
68
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
69
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_authentication_token')
|
70
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_unlock_token')[0m
|
71
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
72
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
73
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
74
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
75
|
-
Migrating to CreateFoos (20120219112425)
|
76
|
-
Migrating to DeviseCreateUsers (20120527020350)
|
77
|
-
Migrating to CreatePapers (20120527023350)
|
78
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
79
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
80
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "papers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
81
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120527023350')[0m
|
82
|
-
[1m[35m (5.4ms)[0m commit transaction
|
83
|
-
Migrating to AddAttachmentAvatarToPapers (20120527023417)
|
84
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
85
|
-
[1m[35m (0.3ms)[0m ALTER TABLE "papers" ADD "avatar_file_name" varchar(255)
|
86
|
-
[1m[36m (0.2ms)[0m [1mALTER TABLE "papers" ADD "avatar_content_type" varchar(255)[0m
|
87
|
-
[1m[35m (0.2ms)[0m ALTER TABLE "papers" ADD "avatar_file_size" integer
|
88
|
-
[1m[36m (0.2ms)[0m [1mALTER TABLE "papers" ADD "avatar_updated_at" datetime[0m
|
89
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120527023417')
|
90
|
-
[1m[36m (3.8ms)[0m [1mcommit transaction[0m
|
91
|
-
Migrating to CreateBoos (20120527025142)
|
92
|
-
[1m[35m (0.0ms)[0m begin transaction
|
93
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "boos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "foo_id" integer, "poly_id" integer, "poly_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
94
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120527025142')
|
95
|
-
[1m[36m (4.0ms)[0m [1mcommit transaction[0m
|
96
|
-
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
97
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
98
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("boos")
|
99
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("foos")[0m
|
100
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("papers")
|
101
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("users")[0m
|
102
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_users_on_authentication_token')
|
103
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_users_on_unlock_token')[0m
|
104
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
105
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
106
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
107
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
108
|
-
[1m[35m (14.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
109
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
110
|
-
[1m[35m (4.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
111
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
112
|
-
Migrating to CreateFoos (20120219112425)
|
113
|
-
[1m[35m (0.0ms)[0m begin transaction
|
114
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "title" varchar(255), "random_number" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
115
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120219112425')
|
116
|
-
[1m[36m (7.1ms)[0m [1mcommit transaction[0m
|
117
|
-
Migrating to DeviseCreateUsers (20120527020350)
|
118
|
-
[1m[35m (0.0ms)[0m begin transaction
|
119
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "password_salt" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar(255), "failed_attempts" integer DEFAULT 0, "unlock_token" varchar(255), "locked_at" datetime, "authentication_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
120
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
121
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
122
|
-
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
123
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m
|
124
|
-
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
125
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("users")[0m
|
126
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_users_on_reset_password_token')
|
127
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m
|
128
|
-
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")
|
129
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("users")[0m
|
130
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
131
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
132
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
133
|
-
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")[0m
|
134
|
-
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
135
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_users_on_unlock_token')[0m
|
136
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_confirmation_token')
|
137
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m
|
138
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_email')
|
139
|
-
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_authentication_token" ON "users" ("authentication_token")[0m
|
140
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120527020350')
|
141
|
-
[1m[36m (3.8ms)[0m [1mcommit transaction[0m
|
142
|
-
Migrating to CreatePapers (20120527023350)
|
143
|
-
[1m[35m (0.0ms)[0m begin transaction
|
144
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "papers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
145
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120527023350')
|
146
|
-
[1m[36m (3.8ms)[0m [1mcommit transaction[0m
|
147
|
-
Migrating to AddAttachmentAvatarToPapers (20120527023417)
|
148
|
-
[1m[35m (0.0ms)[0m begin transaction
|
149
|
-
[1m[36m (0.3ms)[0m [1mALTER TABLE "papers" ADD "avatar_file_name" varchar(255)[0m
|
150
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "papers" ADD "avatar_content_type" varchar(255)
|
151
|
-
[1m[36m (0.2ms)[0m [1mALTER TABLE "papers" ADD "avatar_file_size" integer[0m
|
152
|
-
[1m[35m (0.2ms)[0m ALTER TABLE "papers" ADD "avatar_updated_at" datetime
|
153
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120527023417')[0m
|
154
|
-
[1m[35m (3.2ms)[0m commit transaction
|
155
|
-
Migrating to CreateBoos (20120527025142)
|
156
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
157
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "boos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "foo_id" integer, "poly_id" integer, "poly_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
158
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120527025142')[0m
|
159
|
-
[1m[35m (3.7ms)[0m commit transaction
|
160
|
-
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
161
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
162
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("boos")[0m
|
163
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("foos")
|
164
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("papers")[0m
|
165
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
166
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_authentication_token')[0m
|
167
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_unlock_token')
|
168
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_confirmation_token')[0m
|
169
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_reset_password_token')
|
170
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m
|
data/test/dummy/log/test.log
DELETED