dossier 2.9.0 → 2.9.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 +4 -4
- data/lib/dossier/result.rb +14 -6
- data/lib/dossier/version.rb +1 -1
- data/spec/dossier/result_spec.rb +18 -2
- data/spec/dummy/config/database.yml +2 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +820 -266
- data/spec/fixtures/db/mysql2.yml +2 -1
- data/spec/fixtures/db/sqlite3.yml +1 -0
- metadata +3 -3
data/spec/dummy/log/test.log
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
1
2
|
Connecting to database specified by database.yml
|
2
3
|
[1m[36mFACTORY (0.2ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
3
|
-
[1m[35mFACTORY (0.
|
4
|
-
[1m[36mFACTORY (
|
4
|
+
[1m[35mFACTORY (0.3ms)[0m DROP TABLE IF EXISTS `employees`
|
5
|
+
[1m[36mFACTORY (42.8ms)[0m [1m CREATE TABLE `employees` (
|
5
6
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
6
7
|
`name` varchar(255) NOT NULL,
|
7
8
|
`division` varchar(255) NOT NULL,
|
@@ -11,8 +12,8 @@ Connecting to database specified by database.yml
|
|
11
12
|
PRIMARY KEY (`id`)
|
12
13
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
13
14
|
[0m
|
14
|
-
[1m[35mFACTORY (
|
15
|
-
[1m[36mFACTORY (0.
|
15
|
+
[1m[35mFACTORY (5.9ms)[0m TRUNCATE `employees`
|
16
|
+
[1m[36mFACTORY (0.5ms)[0m [1m INSERT INTO
|
16
17
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
17
18
|
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
18
19
|
[0m
|
@@ -20,12 +21,12 @@ Connecting to database specified by database.yml
|
|
20
21
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
21
22
|
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
22
23
|
|
23
|
-
[1m[36mFACTORY (0.
|
24
|
+
[1m[36mFACTORY (0.4ms)[0m [1m INSERT INTO
|
24
25
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
25
26
|
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
26
27
|
[0m
|
27
|
-
[1m[35mFACTORY (
|
28
|
-
[1m[36mFACTORY (1.
|
28
|
+
[1m[35mFACTORY (6.9ms)[0m DROP TABLE IF EXISTS `employees`
|
29
|
+
[1m[36mFACTORY (1.4ms)[0m [1m CREATE TABLE `employees` (
|
29
30
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
30
31
|
`name` TEXT NOT NULL,
|
31
32
|
`division` TEXT NOT NULL,
|
@@ -34,62 +35,42 @@ Connecting to database specified by database.yml
|
|
34
35
|
`hired_on` DATE NOT NULL
|
35
36
|
);
|
36
37
|
[0m
|
37
|
-
[1m[35mFACTORY (
|
38
|
-
[1m[36mFACTORY (
|
38
|
+
[1m[35mFACTORY (1.0ms)[0m DELETE FROM `employees`
|
39
|
+
[1m[36mFACTORY (0.9ms)[0m [1m INSERT INTO
|
39
40
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
40
41
|
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
41
42
|
[0m
|
42
|
-
[1m[35mFACTORY (1.
|
43
|
+
[1m[35mFACTORY (1.0ms)[0m INSERT INTO
|
43
44
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
44
45
|
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
45
46
|
|
46
|
-
[1m[36mFACTORY (0.
|
47
|
+
[1m[36mFACTORY (0.8ms)[0m [1m INSERT INTO
|
47
48
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
48
49
|
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
49
50
|
[0m
|
50
|
-
|
51
|
-
SELECT * FROM employees WHERE 1=1
|
52
|
-
ORDER BY name ASC
|
53
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (28.2ms)
|
54
|
-
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
55
|
-
SELECT * FROM employees WHERE 1=1
|
56
|
-
ORDER BY name ASC[0m
|
57
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (5.7ms)
|
58
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (5.0ms)
|
59
|
-
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-07-31 11:46:45 -0400
|
60
|
-
Processing by Dossier::ReportsController#show as HTML
|
61
|
-
Parameters: {"report"=>"employee_with_custom_client"}
|
62
|
-
[1m[35mEmployeeWithCustomClientReport (0.3ms)[0m
|
63
|
-
SELECT * FROM `employees`
|
64
|
-
Completed 200 OK in 14ms (Views: 10.8ms | ActiveRecord: 0.3ms)
|
65
|
-
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-07-31 11:46:45 -0400
|
66
|
-
Processing by Dossier::ReportsController#show as HTML
|
67
|
-
Parameters: {"report"=>"cats/are/super_fun"}
|
68
|
-
[1m[36mCats::Are::SuperFunReport (0.1ms)[0m [1m
|
69
|
-
select 'cats', 'are', 'super', 'fun'[0m
|
70
|
-
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
71
|
-
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-07-31 11:46:45 -0400
|
51
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
72
52
|
Processing by Dossier::ReportsController#show as XLS
|
73
53
|
Parameters: {"report"=>"employee"}
|
74
54
|
[1m[35mEmployeeReport (0.3ms)[0m
|
75
55
|
SELECT * FROM employees WHERE 1=1
|
76
56
|
ORDER BY name ASC
|
77
|
-
Completed 200 OK in
|
78
|
-
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-
|
57
|
+
Completed 200 OK in 6ms (ActiveRecord: 0.3ms)
|
58
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
79
59
|
Processing by Dossier::ReportsController#show as CSV
|
80
60
|
Parameters: {"report"=>"employee"}
|
81
61
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
82
62
|
SELECT * FROM employees WHERE 1=1
|
83
63
|
ORDER BY name ASC[0m
|
84
64
|
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
85
|
-
Started GET "/reports/employee" for 127.0.0.1 at 2013-
|
65
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
86
66
|
Processing by Dossier::ReportsController#show as HTML
|
87
67
|
Parameters: {"report"=>"employee"}
|
88
68
|
[1m[35mEmployeeReport (0.3ms)[0m
|
89
69
|
SELECT * FROM employees WHERE 1=1
|
90
70
|
ORDER BY name ASC
|
91
|
-
|
92
|
-
|
71
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (64.4ms)
|
72
|
+
Completed 200 OK in 76ms (Views: 68.3ms | ActiveRecord: 0.3ms)
|
73
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
93
74
|
Processing by Dossier::ReportsController#show as HTML
|
94
75
|
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
95
76
|
[1m[36mEmployeeReport (0.6ms)[0m [1m
|
@@ -98,78 +79,119 @@ SELECT * FROM employees WHERE 1=1
|
|
98
79
|
AND salary > 10000
|
99
80
|
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
100
81
|
ORDER BY name DESC[0m
|
101
|
-
|
102
|
-
|
82
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (8.1ms)
|
83
|
+
Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.6ms)
|
84
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
103
85
|
Processing by Dossier::ReportsController#show as HTML
|
104
86
|
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
105
87
|
[1m[35mEmployeeReport (0.3ms)[0m
|
106
88
|
SELECT * FROM employees WHERE 1=1
|
107
89
|
ORDER BY name ASC
|
108
|
-
|
109
|
-
|
90
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.8ms)
|
91
|
+
Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.3ms)
|
92
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
110
93
|
Processing by Dossier::ReportsController#show as HTML
|
111
94
|
Parameters: {"report"=>"employee_with_custom_view"}
|
112
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (
|
113
|
-
[1m[36mEmployeeWithCustomViewReport (0.
|
95
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.5ms)
|
96
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
114
97
|
SELECT * FROM employees WHERE suspended = true[0m
|
115
|
-
|
116
|
-
|
98
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (23.0ms)
|
99
|
+
Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.3ms)
|
100
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
117
101
|
Processing by Dossier::ReportsController#show as HTML
|
118
102
|
Parameters: {"report"=>"employee_with_custom_view"}
|
119
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.
|
120
|
-
[1m[35mEmployeeWithCustomViewReport (0.
|
103
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.3ms)
|
104
|
+
[1m[35mEmployeeWithCustomViewReport (0.3ms)[0m
|
121
105
|
SELECT * FROM employees WHERE suspended = true
|
122
|
-
|
123
|
-
|
106
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (7.1ms)
|
107
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.3ms)
|
108
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
124
109
|
Processing by Dossier::ReportsController#show as HTML
|
125
110
|
Parameters: {"report"=>"employee"}
|
126
111
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
127
112
|
SELECT * FROM employees WHERE 1=1
|
128
113
|
ORDER BY name ASC[0m
|
129
|
-
|
114
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (6.1ms)
|
115
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.3ms)
|
116
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
117
|
+
Processing by Dossier::ReportsController#show as HTML
|
118
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
119
|
+
[1m[35mEmployeeWithCustomClientReport (0.2ms)[0m
|
120
|
+
SELECT * FROM `employees`
|
121
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (2.7ms)
|
122
|
+
Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
123
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 11:51:58 -0400
|
124
|
+
Processing by SiteController#report as HTML
|
125
|
+
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
126
|
+
SELECT * FROM employees WHERE 1=1
|
127
|
+
ORDER BY name ASC[0m
|
128
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (2.5ms)
|
129
|
+
Completed 200 OK in 8ms (Views: 4.5ms | ActiveRecord: 0.4ms)
|
130
130
|
[1m[35mEmployeeReport (0.3ms)[0m
|
131
131
|
SELECT * FROM employees WHERE 1=1
|
132
132
|
ORDER BY name ASC
|
133
|
-
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-07-31 11:46:45 -0400
|
134
|
-
Processing by SiteController#report as HTML
|
135
133
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
136
134
|
SELECT * FROM employees WHERE 1=1
|
137
135
|
ORDER BY name ASC[0m
|
138
|
-
|
139
|
-
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-07-31 11:46:45 -0400
|
140
|
-
Processing by Dossier::ReportsController#multi as HTML
|
141
|
-
Parameters: {"report"=>"combination"}
|
142
|
-
Rendered dossier/reports/combination/_options.html.haml (3.7ms)
|
136
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (11.3ms)
|
143
137
|
[1m[35mEmployeeReport (0.3ms)[0m
|
144
138
|
SELECT * FROM employees WHERE 1=1
|
145
139
|
ORDER BY name ASC
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
140
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (5.5ms)
|
141
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 11:51:59 -0400
|
142
|
+
Processing by Dossier::ReportsController#multi as CSV
|
143
|
+
Parameters: {"report"=>"combination"}
|
144
|
+
Completed 500 Internal Server Error in 1ms
|
145
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:51:59 -0400
|
150
146
|
Processing by Dossier::ReportsController#multi as HTML
|
151
147
|
Parameters: {"report"=>"combination"}
|
152
|
-
Rendered dossier/reports/combination/_options.html.haml (
|
153
|
-
[1m[
|
148
|
+
Rendered dossier/reports/combination/_options.html.haml (3.4ms)
|
149
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
154
150
|
SELECT * FROM employees WHERE 1=1
|
155
|
-
ORDER BY name ASC
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
151
|
+
ORDER BY name ASC[0m
|
152
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.4ms)
|
153
|
+
[1m[35mEmployeeWithCustomViewReport (0.6ms)[0m
|
154
|
+
SELECT * FROM employees WHERE suspended = true
|
155
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (3.4ms)
|
156
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (19.6ms)
|
157
|
+
Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.9ms)
|
158
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:51:59 -0400
|
160
159
|
Processing by Dossier::ReportsController#multi as HTML
|
161
160
|
Parameters: {"report"=>"combination"}
|
162
|
-
Rendered dossier/reports/combination/_options.html.haml (1.
|
163
|
-
[1m[
|
161
|
+
Rendered dossier/reports/combination/_options.html.haml (1.4ms)
|
162
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
164
163
|
SELECT * FROM employees WHERE 1=1
|
165
|
-
ORDER BY name ASC
|
166
|
-
|
167
|
-
|
168
|
-
|
164
|
+
ORDER BY name ASC[0m
|
165
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.4ms)
|
166
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
167
|
+
SELECT * FROM employees WHERE suspended = true
|
168
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.6ms)
|
169
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.1ms)
|
170
|
+
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.7ms)
|
171
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:51:59 -0400
|
172
|
+
Processing by Dossier::ReportsController#multi as HTML
|
173
|
+
Parameters: {"report"=>"combination"}
|
174
|
+
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
175
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
176
|
+
SELECT * FROM employees WHERE 1=1
|
177
|
+
ORDER BY name ASC[0m
|
178
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.3ms)
|
179
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
180
|
+
SELECT * FROM employees WHERE suspended = true
|
181
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.6ms)
|
182
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.2ms)
|
183
|
+
Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.7ms)
|
184
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.9ms)
|
185
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 11:51:59 -0400
|
186
|
+
Processing by Dossier::ReportsController#show as HTML
|
187
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
188
|
+
[1m[36mCats::Are::SuperFunReport (0.1ms)[0m [1m
|
189
|
+
select 'cats', 'are', 'super', 'fun'[0m
|
190
|
+
Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.1ms)
|
169
191
|
Connecting to database specified by database.yml
|
170
|
-
[1m[36mFACTORY (0.
|
171
|
-
[1m[35mFACTORY (
|
172
|
-
[1m[36mFACTORY (
|
192
|
+
[1m[36mFACTORY (0.2ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
193
|
+
[1m[35mFACTORY (2.9ms)[0m DROP TABLE IF EXISTS `employees`
|
194
|
+
[1m[36mFACTORY (65.1ms)[0m [1m CREATE TABLE `employees` (
|
173
195
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
174
196
|
`name` varchar(255) NOT NULL,
|
175
197
|
`division` varchar(255) NOT NULL,
|
@@ -179,21 +201,21 @@ Connecting to database specified by database.yml
|
|
179
201
|
PRIMARY KEY (`id`)
|
180
202
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
181
203
|
[0m
|
182
|
-
[1m[35mFACTORY (
|
183
|
-
[1m[36mFACTORY (0.
|
204
|
+
[1m[35mFACTORY (5.3ms)[0m TRUNCATE `employees`
|
205
|
+
[1m[36mFACTORY (0.6ms)[0m [1m INSERT INTO
|
184
206
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
185
207
|
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
186
208
|
[0m
|
187
|
-
[1m[35mFACTORY (0.
|
209
|
+
[1m[35mFACTORY (0.3ms)[0m INSERT INTO
|
188
210
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
189
211
|
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
190
212
|
|
191
|
-
[1m[36mFACTORY (0.
|
213
|
+
[1m[36mFACTORY (0.3ms)[0m [1m INSERT INTO
|
192
214
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
193
215
|
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
194
216
|
[0m
|
195
|
-
[1m[35mFACTORY (
|
196
|
-
[1m[36mFACTORY (1.
|
217
|
+
[1m[35mFACTORY (3.8ms)[0m DROP TABLE IF EXISTS `employees`
|
218
|
+
[1m[36mFACTORY (1.4ms)[0m [1m CREATE TABLE `employees` (
|
197
219
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
198
220
|
`name` TEXT NOT NULL,
|
199
221
|
`division` TEXT NOT NULL,
|
@@ -202,89 +224,77 @@ Connecting to database specified by database.yml
|
|
202
224
|
`hired_on` DATE NOT NULL
|
203
225
|
);
|
204
226
|
[0m
|
205
|
-
[1m[35mFACTORY (
|
206
|
-
[1m[36mFACTORY (1.
|
227
|
+
[1m[35mFACTORY (1.1ms)[0m DELETE FROM `employees`
|
228
|
+
[1m[36mFACTORY (1.1ms)[0m [1m INSERT INTO
|
207
229
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
208
230
|
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
209
231
|
[0m
|
210
|
-
[1m[35mFACTORY (
|
232
|
+
[1m[35mFACTORY (1.0ms)[0m INSERT INTO
|
211
233
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
212
234
|
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
213
235
|
|
214
|
-
[1m[36mFACTORY (0.
|
236
|
+
[1m[36mFACTORY (0.8ms)[0m [1m INSERT INTO
|
215
237
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
216
238
|
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
217
239
|
[0m
|
218
|
-
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-07-31 11:52:22 -0400
|
219
|
-
Processing by Dossier::ReportsController#show as HTML
|
220
|
-
Parameters: {"report"=>"cats/are/super_fun"}
|
221
|
-
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
222
|
-
select 'cats', 'are', 'super', 'fun'
|
223
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml within layouts/application (62.9ms)
|
224
|
-
Completed 200 OK in 75ms (Views: 67.5ms | ActiveRecord: 0.1ms)
|
225
|
-
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
226
|
-
SELECT * FROM employees WHERE 1=1
|
227
|
-
ORDER BY name ASC[0m
|
228
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (16.7ms)
|
229
240
|
[1m[35mEmployeeReport (0.3ms)[0m
|
230
241
|
SELECT * FROM employees WHERE 1=1
|
231
242
|
ORDER BY name ASC
|
232
|
-
|
233
|
-
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-07-31 11:52:22 -0400
|
243
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
234
244
|
Processing by SiteController#report as HTML
|
235
245
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
236
246
|
SELECT * FROM employees WHERE 1=1
|
237
247
|
ORDER BY name ASC[0m
|
238
|
-
Rendered /Users/
|
239
|
-
Completed 200 OK in
|
240
|
-
Started GET "/reports/
|
241
|
-
Processing by Dossier::ReportsController#show as
|
248
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (12.2ms)
|
249
|
+
Completed 200 OK in 24ms (Views: 19.9ms | ActiveRecord: 0.3ms)
|
250
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
251
|
+
Processing by Dossier::ReportsController#show as HTML
|
252
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
253
|
+
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
254
|
+
select 'cats', 'are', 'super', 'fun'
|
255
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (4.8ms)
|
256
|
+
Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
257
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
258
|
+
Processing by Dossier::ReportsController#show as HTML
|
242
259
|
Parameters: {"report"=>"employee"}
|
243
|
-
[1m[
|
260
|
+
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
244
261
|
SELECT * FROM employees WHERE 1=1
|
245
|
-
ORDER BY name ASC
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
Parameters: {"report"=>"employee_with_custom_view"}
|
250
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.9ms)
|
251
|
-
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
252
|
-
SELECT * FROM employees WHERE suspended = true[0m
|
253
|
-
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (11.7ms)
|
254
|
-
Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.3ms)
|
255
|
-
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-07-31 11:52:22 -0400
|
262
|
+
ORDER BY name ASC[0m
|
263
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (6.3ms)
|
264
|
+
Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.4ms)
|
265
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
256
266
|
Processing by Dossier::ReportsController#show as HTML
|
257
267
|
Parameters: {"report"=>"employee_with_custom_view"}
|
258
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (
|
268
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.4ms)
|
259
269
|
[1m[35mEmployeeWithCustomViewReport (0.3ms)[0m
|
260
270
|
SELECT * FROM employees WHERE suspended = true
|
271
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (10.8ms)
|
272
|
+
Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.3ms)
|
273
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
274
|
+
Processing by Dossier::ReportsController#show as HTML
|
275
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
276
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.3ms)
|
277
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
278
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
261
279
|
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (7.2ms)
|
262
280
|
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.3ms)
|
263
|
-
Started GET "/reports/employee" for 127.0.0.1 at 2013-
|
264
|
-
Processing by Dossier::ReportsController#show as HTML
|
265
|
-
Parameters: {"report"=>"employee"}
|
266
|
-
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
267
|
-
SELECT * FROM employees WHERE 1=1
|
268
|
-
ORDER BY name ASC[0m
|
269
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.5ms)
|
270
|
-
Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.3ms)
|
271
|
-
Started GET "/reports/employee" for 127.0.0.1 at 2013-07-31 11:52:23 -0400
|
281
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
272
282
|
Processing by Dossier::ReportsController#show as HTML
|
273
283
|
Parameters: {"report"=>"employee"}
|
274
284
|
[1m[35mEmployeeReport (0.3ms)[0m
|
275
285
|
SELECT * FROM employees WHERE 1=1
|
276
286
|
ORDER BY name ASC
|
277
|
-
Rendered /Users/
|
278
|
-
Completed 200 OK in 9ms (Views:
|
279
|
-
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-
|
287
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.9ms)
|
288
|
+
Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.3ms)
|
289
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
280
290
|
Processing by Dossier::ReportsController#show as HTML
|
281
291
|
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
282
292
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
283
293
|
SELECT * FROM employees WHERE 1=1
|
284
294
|
ORDER BY name ASC[0m
|
285
|
-
Rendered /Users/
|
286
|
-
Completed 200 OK in
|
287
|
-
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-
|
295
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.5ms)
|
296
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms)
|
297
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
288
298
|
Processing by Dossier::ReportsController#show as HTML
|
289
299
|
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
290
300
|
[1m[35mEmployeeReport (0.4ms)[0m
|
@@ -293,63 +303,75 @@ SELECT * FROM employees WHERE 1=1
|
|
293
303
|
AND salary > 10000
|
294
304
|
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
295
305
|
ORDER BY name DESC
|
296
|
-
Rendered /Users/
|
297
|
-
Completed 200 OK in
|
298
|
-
Started GET "/reports/employee.
|
299
|
-
Processing by Dossier::ReportsController#show as
|
306
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (8.5ms)
|
307
|
+
Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.4ms)
|
308
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
309
|
+
Processing by Dossier::ReportsController#show as CSV
|
300
310
|
Parameters: {"report"=>"employee"}
|
301
311
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
302
312
|
SELECT * FROM employees WHERE 1=1
|
303
313
|
ORDER BY name ASC[0m
|
304
314
|
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
Parameters: {"report"=>"combination"}
|
309
|
-
Rendered dossier/reports/combination/_options.html.haml (3.4ms)
|
315
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 11:52:50 -0400
|
316
|
+
Processing by Dossier::ReportsController#show as XLS
|
317
|
+
Parameters: {"report"=>"employee"}
|
310
318
|
[1m[35mEmployeeReport (0.3ms)[0m
|
311
319
|
SELECT * FROM employees WHERE 1=1
|
312
320
|
ORDER BY name ASC
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
Parameters: {"report"=>"combination"}
|
319
|
-
Rendered dossier/reports/combination/_options.html.haml (1.7ms)
|
321
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
322
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
323
|
+
SELECT * FROM employees WHERE 1=1
|
324
|
+
ORDER BY name ASC[0m
|
325
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (18.9ms)
|
320
326
|
[1m[35mEmployeeReport (0.3ms)[0m
|
321
327
|
SELECT * FROM employees WHERE 1=1
|
322
328
|
ORDER BY name ASC
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
329
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (5.2ms)
|
330
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.8ms)
|
331
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:52:51 -0400
|
332
|
+
Processing by Dossier::ReportsController#multi as HTML
|
333
|
+
Parameters: {"report"=>"combination"}
|
334
|
+
Rendered dossier/reports/combination/_options.html.haml (3.3ms)
|
335
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
336
|
+
SELECT * FROM employees WHERE 1=1
|
337
|
+
ORDER BY name ASC[0m
|
338
|
+
[1m[35mEmployeeWithCustomViewReport (0.5ms)[0m
|
339
|
+
SELECT * FROM employees WHERE suspended = true
|
340
|
+
Completed 200 OK in 78ms (Views: 76.0ms | ActiveRecord: 0.8ms)
|
341
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:52:51 -0400
|
342
|
+
Processing by Dossier::ReportsController#multi as HTML
|
343
|
+
Parameters: {"report"=>"combination"}
|
344
|
+
Rendered dossier/reports/combination/_options.html.haml (1.4ms)
|
345
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
346
|
+
SELECT * FROM employees WHERE 1=1
|
347
|
+
ORDER BY name ASC[0m
|
348
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
349
|
+
SELECT * FROM employees WHERE suspended = true
|
350
|
+
Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.7ms)
|
351
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 11:52:51 -0400
|
327
352
|
Processing by Dossier::ReportsController#multi as CSV
|
328
353
|
Parameters: {"report"=>"combination"}
|
329
354
|
Completed 500 Internal Server Error in 1ms
|
330
|
-
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-
|
355
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:52:51 -0400
|
331
356
|
Processing by Dossier::ReportsController#multi as HTML
|
332
357
|
Parameters: {"report"=>"combination"}
|
333
|
-
Rendered dossier/reports/combination/_options.html.haml (1.
|
334
|
-
[1m[35mEmployeeReport (0.4ms)[0m
|
335
|
-
SELECT * FROM employees WHERE 1=1
|
336
|
-
ORDER BY name ASC
|
337
|
-
[1m[36mEmployeeWithCustomViewReport (0.4ms)[0m [1m
|
338
|
-
SELECT * FROM employees WHERE suspended = true[0m
|
339
|
-
Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.8ms)
|
340
|
-
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-07-31 11:52:23 -0400
|
341
|
-
Processing by Dossier::ReportsController#show as HTML
|
342
|
-
Parameters: {"report"=>"employee_with_custom_client"}
|
343
|
-
[1m[35mEmployeeWithCustomClientReport (0.2ms)[0m
|
344
|
-
SELECT * FROM `employees`
|
345
|
-
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
358
|
+
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
346
359
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
347
360
|
SELECT * FROM employees WHERE 1=1
|
348
361
|
ORDER BY name ASC[0m
|
362
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
363
|
+
SELECT * FROM employees WHERE suspended = true
|
364
|
+
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.7ms)
|
365
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 11:52:51 -0400
|
366
|
+
Processing by Dossier::ReportsController#show as HTML
|
367
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
368
|
+
[1m[36mEmployeeWithCustomClientReport (0.2ms)[0m [1m
|
369
|
+
SELECT * FROM `employees`[0m
|
370
|
+
Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
349
371
|
Connecting to database specified by database.yml
|
350
372
|
[1m[36mFACTORY (0.2ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
351
|
-
[1m[35mFACTORY (
|
352
|
-
[1m[36mFACTORY (
|
373
|
+
[1m[35mFACTORY (2.9ms)[0m DROP TABLE IF EXISTS `employees`
|
374
|
+
[1m[36mFACTORY (57.2ms)[0m [1m CREATE TABLE `employees` (
|
353
375
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
354
376
|
`name` varchar(255) NOT NULL,
|
355
377
|
`division` varchar(255) NOT NULL,
|
@@ -359,12 +381,12 @@ Connecting to database specified by database.yml
|
|
359
381
|
PRIMARY KEY (`id`)
|
360
382
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
361
383
|
[0m
|
362
|
-
[1m[35mFACTORY (
|
363
|
-
[1m[36mFACTORY (0.
|
384
|
+
[1m[35mFACTORY (5.4ms)[0m TRUNCATE `employees`
|
385
|
+
[1m[36mFACTORY (0.5ms)[0m [1m INSERT INTO
|
364
386
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
365
387
|
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
366
388
|
[0m
|
367
|
-
[1m[35mFACTORY (0.
|
389
|
+
[1m[35mFACTORY (0.4ms)[0m INSERT INTO
|
368
390
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
369
391
|
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
370
392
|
|
@@ -372,8 +394,8 @@ Connecting to database specified by database.yml
|
|
372
394
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
373
395
|
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
374
396
|
[0m
|
375
|
-
[1m[35mFACTORY (
|
376
|
-
[1m[36mFACTORY (1.
|
397
|
+
[1m[35mFACTORY (3.5ms)[0m DROP TABLE IF EXISTS `employees`
|
398
|
+
[1m[36mFACTORY (1.4ms)[0m [1m CREATE TABLE `employees` (
|
377
399
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
378
400
|
`name` TEXT NOT NULL,
|
379
401
|
`division` TEXT NOT NULL,
|
@@ -382,8 +404,8 @@ Connecting to database specified by database.yml
|
|
382
404
|
`hired_on` DATE NOT NULL
|
383
405
|
);
|
384
406
|
[0m
|
385
|
-
[1m[35mFACTORY (
|
386
|
-
[1m[36mFACTORY (
|
407
|
+
[1m[35mFACTORY (1.1ms)[0m DELETE FROM `employees`
|
408
|
+
[1m[36mFACTORY (0.9ms)[0m [1m INSERT INTO
|
387
409
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
388
410
|
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
389
411
|
[0m
|
@@ -391,137 +413,669 @@ Connecting to database specified by database.yml
|
|
391
413
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
392
414
|
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
393
415
|
|
394
|
-
[1m[36mFACTORY (
|
416
|
+
[1m[36mFACTORY (0.8ms)[0m [1m INSERT INTO
|
395
417
|
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
396
418
|
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
397
419
|
[0m
|
398
|
-
Started GET "/
|
399
|
-
Processing by Dossier::ReportsController#multi as CSV
|
400
|
-
Parameters: {"report"=>"combination"}
|
401
|
-
Completed 500 Internal Server Error in 1ms
|
402
|
-
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-07-31 11:52:40 -0400
|
403
|
-
Processing by Dossier::ReportsController#multi as HTML
|
404
|
-
Parameters: {"report"=>"combination"}
|
405
|
-
Rendered dossier/reports/combination/_options.html.haml (7.6ms)
|
406
|
-
[1m[35mEmployeeReport (0.4ms)[0m
|
407
|
-
SELECT * FROM employees WHERE 1=1
|
408
|
-
ORDER BY name ASC
|
409
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml (8.9ms)
|
410
|
-
[1m[36mEmployeeWithCustomViewReport (0.5ms)[0m [1m
|
411
|
-
SELECT * FROM employees WHERE suspended = true[0m
|
412
|
-
Rendered dossier/reports/employee_with_custom_view.html.haml (3.5ms)
|
413
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (39.9ms)
|
414
|
-
Completed 200 OK in 101ms (Views: 99.7ms | ActiveRecord: 0.8ms)
|
415
|
-
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-07-31 11:52:40 -0400
|
416
|
-
Processing by Dossier::ReportsController#multi as HTML
|
417
|
-
Parameters: {"report"=>"combination"}
|
418
|
-
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
419
|
-
[1m[35mEmployeeReport (0.3ms)[0m
|
420
|
-
SELECT * FROM employees WHERE 1=1
|
421
|
-
ORDER BY name ASC
|
422
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml (5.3ms)
|
423
|
-
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
424
|
-
SELECT * FROM employees WHERE suspended = true[0m
|
425
|
-
Rendered dossier/reports/employee_with_custom_view.html.haml (1.6ms)
|
426
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.3ms)
|
427
|
-
Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.7ms)
|
428
|
-
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-07-31 11:52:40 -0400
|
429
|
-
Processing by Dossier::ReportsController#multi as HTML
|
430
|
-
Parameters: {"report"=>"combination"}
|
431
|
-
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
432
|
-
[1m[35mEmployeeReport (0.3ms)[0m
|
433
|
-
SELECT * FROM employees WHERE 1=1
|
434
|
-
ORDER BY name ASC
|
435
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/show.html.haml (5.0ms)
|
436
|
-
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
437
|
-
SELECT * FROM employees WHERE suspended = true[0m
|
438
|
-
Rendered dossier/reports/employee_with_custom_view.html.haml (1.9ms)
|
439
|
-
Rendered /Users/adamhunter/Studio/github/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.3ms)
|
440
|
-
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.6ms)
|
441
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (5.3ms)
|
442
|
-
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-07-31 11:52:40 -0400
|
420
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
443
421
|
Processing by Dossier::ReportsController#show as HTML
|
444
|
-
Parameters: {"report"=>"
|
445
|
-
[1m[
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
422
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
423
|
+
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
424
|
+
select 'cats', 'are', 'super', 'fun'
|
425
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (11.3ms)
|
426
|
+
Completed 500 Internal Server Error in 20ms
|
427
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
428
|
+
Processing by SiteController#report as HTML
|
451
429
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
452
430
|
SELECT * FROM employees WHERE 1=1
|
453
431
|
ORDER BY name ASC[0m
|
454
|
-
|
455
|
-
|
456
|
-
|
432
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (2.3ms)
|
433
|
+
Completed 500 Internal Server Error in 7ms
|
434
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
435
|
+
Processing by Dossier::ReportsController#show as HTML
|
457
436
|
Parameters: {"report"=>"employee"}
|
458
437
|
[1m[35mEmployeeReport (0.3ms)[0m
|
459
438
|
SELECT * FROM employees WHERE 1=1
|
460
439
|
ORDER BY name ASC
|
461
|
-
|
462
|
-
|
440
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.0ms)
|
441
|
+
Completed 500 Internal Server Error in 7ms
|
442
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
463
443
|
Processing by Dossier::ReportsController#show as HTML
|
464
444
|
Parameters: {"report"=>"employee"}
|
465
445
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
466
446
|
SELECT * FROM employees WHERE 1=1
|
467
447
|
ORDER BY name ASC[0m
|
468
|
-
|
469
|
-
|
448
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (4.6ms)
|
449
|
+
Completed 500 Internal Server Error in 6ms
|
450
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
451
|
+
Processing by Dossier::ReportsController#show as HTML
|
452
|
+
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
453
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
454
|
+
SELECT * FROM employees WHERE 1=1
|
455
|
+
ORDER BY name ASC
|
456
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.3ms)
|
457
|
+
Completed 500 Internal Server Error in 7ms
|
458
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
470
459
|
Processing by Dossier::ReportsController#show as HTML
|
471
460
|
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
472
|
-
[1m[
|
461
|
+
[1m[36mEmployeeReport (0.6ms)[0m [1m
|
473
462
|
SELECT * FROM employees WHERE 1=1
|
474
463
|
AND division in (('Tedious Toiling'))
|
475
464
|
AND salary > 10000
|
476
465
|
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
477
|
-
ORDER BY name DESC
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
482
|
-
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
483
|
-
SELECT * FROM employees WHERE 1=1
|
484
|
-
ORDER BY name ASC[0m
|
485
|
-
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.3ms)
|
486
|
-
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-07-31 11:52:40 -0400
|
466
|
+
ORDER BY name DESC[0m
|
467
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (7.7ms)
|
468
|
+
Completed 500 Internal Server Error in 10ms
|
469
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
487
470
|
Processing by Dossier::ReportsController#show as HTML
|
488
471
|
Parameters: {"report"=>"employee_with_custom_view"}
|
489
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.
|
472
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.9ms)
|
490
473
|
[1m[35mEmployeeWithCustomViewReport (0.2ms)[0m
|
491
474
|
SELECT * FROM employees WHERE suspended = true
|
492
|
-
|
493
|
-
|
475
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (9.6ms)
|
476
|
+
Completed 500 Internal Server Error in 12ms
|
477
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
494
478
|
Processing by Dossier::ReportsController#show as HTML
|
495
479
|
Parameters: {"report"=>"employee_with_custom_view"}
|
496
|
-
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.
|
497
|
-
[1m[36mEmployeeWithCustomViewReport (0.
|
480
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.3ms)
|
481
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
498
482
|
SELECT * FROM employees WHERE suspended = true[0m
|
499
|
-
|
500
|
-
|
501
|
-
|
483
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (6.4ms)
|
484
|
+
Completed 500 Internal Server Error in 8ms
|
485
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
486
|
+
Processing by Dossier::ReportsController#show as XLS
|
502
487
|
Parameters: {"report"=>"employee"}
|
503
488
|
[1m[35mEmployeeReport (0.3ms)[0m
|
504
489
|
SELECT * FROM employees WHERE 1=1
|
505
490
|
ORDER BY name ASC
|
506
|
-
Completed 200 OK in
|
491
|
+
Completed 200 OK in 122ms (ActiveRecord: 0.3ms)
|
492
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 11:54:33 -0400
|
493
|
+
Processing by Dossier::ReportsController#show as CSV
|
494
|
+
Parameters: {"report"=>"employee"}
|
507
495
|
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
508
496
|
SELECT * FROM employees WHERE 1=1
|
509
497
|
ORDER BY name ASC[0m
|
510
|
-
|
498
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
499
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.8ms)
|
500
|
+
[1m[35mEmployeeReport (0.4ms)[0m
|
511
501
|
SELECT * FROM employees WHERE 1=1
|
512
502
|
ORDER BY name ASC
|
513
|
-
|
503
|
+
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
504
|
+
SELECT * FROM employees WHERE 1=1
|
505
|
+
ORDER BY name ASC[0m
|
506
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 11:54:34 -0400
|
514
507
|
Processing by Dossier::ReportsController#show as HTML
|
515
|
-
Parameters: {"report"=>"
|
516
|
-
[1m[
|
517
|
-
|
518
|
-
Completed
|
508
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
509
|
+
[1m[35mEmployeeWithCustomClientReport (0.3ms)[0m
|
510
|
+
SELECT * FROM `employees`
|
511
|
+
Completed 500 Internal Server Error in 5ms
|
512
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:54:34 -0400
|
513
|
+
Processing by Dossier::ReportsController#multi as HTML
|
514
|
+
Parameters: {"report"=>"combination"}
|
515
|
+
Rendered dossier/reports/combination/_options.html.haml (4.2ms)
|
516
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
517
|
+
SELECT * FROM employees WHERE 1=1
|
518
|
+
ORDER BY name ASC[0m
|
519
|
+
Completed 500 Internal Server Error in 19ms
|
520
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:54:34 -0400
|
521
|
+
Processing by Dossier::ReportsController#multi as HTML
|
522
|
+
Parameters: {"report"=>"combination"}
|
523
|
+
Rendered dossier/reports/combination/_options.html.haml (1.7ms)
|
519
524
|
[1m[35mEmployeeReport (0.3ms)[0m
|
520
525
|
SELECT * FROM employees WHERE 1=1
|
521
526
|
ORDER BY name ASC
|
522
|
-
|
523
|
-
|
524
|
-
|
527
|
+
Completed 500 Internal Server Error in 12ms
|
528
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:54:34 -0400
|
529
|
+
Processing by Dossier::ReportsController#multi as HTML
|
530
|
+
Parameters: {"report"=>"combination"}
|
531
|
+
Rendered dossier/reports/combination/_options.html.haml (1.6ms)
|
532
|
+
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
525
533
|
SELECT * FROM employees WHERE 1=1
|
526
534
|
ORDER BY name ASC[0m
|
527
|
-
Completed
|
535
|
+
Completed 500 Internal Server Error in 12ms
|
536
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 11:54:34 -0400
|
537
|
+
Processing by Dossier::ReportsController#multi as CSV
|
538
|
+
Parameters: {"report"=>"combination"}
|
539
|
+
Completed 500 Internal Server Error in 2ms
|
540
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
541
|
+
SELECT * FROM employees WHERE 1=1
|
542
|
+
ORDER BY name ASC
|
543
|
+
Connecting to database specified by database.yml
|
544
|
+
[1m[36mFACTORY (0.2ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
545
|
+
[1m[35mFACTORY (2.9ms)[0m DROP TABLE IF EXISTS `employees`
|
546
|
+
[1m[36mFACTORY (77.2ms)[0m [1m CREATE TABLE `employees` (
|
547
|
+
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
548
|
+
`name` varchar(255) NOT NULL,
|
549
|
+
`division` varchar(255) NOT NULL,
|
550
|
+
`salary` int(11) NOT NULL,
|
551
|
+
`suspended` tinyint(1) NOT NULL DEFAULT 0,
|
552
|
+
`hired_on` date NOT NULL,
|
553
|
+
PRIMARY KEY (`id`)
|
554
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
555
|
+
[0m
|
556
|
+
[1m[35mFACTORY (6.2ms)[0m TRUNCATE `employees`
|
557
|
+
[1m[36mFACTORY (0.5ms)[0m [1m INSERT INTO
|
558
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
559
|
+
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
560
|
+
[0m
|
561
|
+
[1m[35mFACTORY (0.3ms)[0m INSERT INTO
|
562
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
563
|
+
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
564
|
+
|
565
|
+
[1m[36mFACTORY (0.3ms)[0m [1m INSERT INTO
|
566
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
567
|
+
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
568
|
+
[0m
|
569
|
+
[1m[35mFACTORY (226.2ms)[0m DROP TABLE IF EXISTS `employees`
|
570
|
+
[1m[36mFACTORY (1.5ms)[0m [1m CREATE TABLE `employees` (
|
571
|
+
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
572
|
+
`name` TEXT NOT NULL,
|
573
|
+
`division` TEXT NOT NULL,
|
574
|
+
`salary` INTEGER NOT NULL,
|
575
|
+
`suspended` TINYINT NOT NULL DEFAULT 0,
|
576
|
+
`hired_on` DATE NOT NULL
|
577
|
+
);
|
578
|
+
[0m
|
579
|
+
[1m[35mFACTORY (1.2ms)[0m DELETE FROM `employees`
|
580
|
+
[1m[36mFACTORY (1.4ms)[0m [1m INSERT INTO
|
581
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
582
|
+
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
583
|
+
[0m
|
584
|
+
[1m[35mFACTORY (1.5ms)[0m INSERT INTO
|
585
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
586
|
+
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
587
|
+
|
588
|
+
[1m[36mFACTORY (1.7ms)[0m [1m INSERT INTO
|
589
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
590
|
+
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
591
|
+
[0m
|
592
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
593
|
+
SELECT * FROM employees WHERE 1=1
|
594
|
+
ORDER BY name ASC
|
595
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
596
|
+
Processing by Dossier::ReportsController#multi as HTML
|
597
|
+
Parameters: {"report"=>"combination"}
|
598
|
+
Rendered dossier/reports/combination/_options.html.haml (64.8ms)
|
599
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
600
|
+
SELECT * FROM employees WHERE 1=1
|
601
|
+
ORDER BY name ASC[0m
|
602
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (8.4ms)
|
603
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
604
|
+
SELECT * FROM employees WHERE suspended = true
|
605
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (3.8ms)
|
606
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (94.6ms)
|
607
|
+
Completed 200 OK in 104ms (Views: 101.7ms | ActiveRecord: 0.7ms)
|
608
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
609
|
+
Processing by Dossier::ReportsController#multi as HTML
|
610
|
+
Parameters: {"report"=>"combination"}
|
611
|
+
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
612
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
613
|
+
SELECT * FROM employees WHERE 1=1
|
614
|
+
ORDER BY name ASC[0m
|
615
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (4.9ms)
|
616
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
617
|
+
SELECT * FROM employees WHERE suspended = true
|
618
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.6ms)
|
619
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (9.8ms)
|
620
|
+
Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.7ms)
|
621
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
622
|
+
Processing by Dossier::ReportsController#multi as HTML
|
623
|
+
Parameters: {"report"=>"combination"}
|
624
|
+
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
625
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
626
|
+
SELECT * FROM employees WHERE 1=1
|
627
|
+
ORDER BY name ASC[0m
|
628
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.1ms)
|
629
|
+
[1m[35mEmployeeWithCustomViewReport (0.4ms)[0m
|
630
|
+
SELECT * FROM employees WHERE suspended = true
|
631
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.7ms)
|
632
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.0ms)
|
633
|
+
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.7ms)
|
634
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
635
|
+
Processing by Dossier::ReportsController#multi as CSV
|
636
|
+
Parameters: {"report"=>"combination"}
|
637
|
+
Completed 500 Internal Server Error in 1ms
|
638
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.6ms)
|
639
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
640
|
+
Processing by Dossier::ReportsController#show as HTML
|
641
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
642
|
+
[1m[36mEmployeeWithCustomClientReport (0.2ms)[0m [1m
|
643
|
+
SELECT * FROM `employees`[0m
|
644
|
+
Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.2ms)
|
645
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
646
|
+
Processing by Dossier::ReportsController#show as HTML
|
647
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
648
|
+
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
649
|
+
select 'cats', 'are', 'super', 'fun'
|
650
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
651
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
652
|
+
SELECT * FROM employees WHERE 1=1
|
653
|
+
ORDER BY name ASC[0m
|
654
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
655
|
+
SELECT * FROM employees WHERE 1=1
|
656
|
+
ORDER BY name ASC
|
657
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
658
|
+
Processing by Dossier::ReportsController#show as XLS
|
659
|
+
Parameters: {"report"=>"employee"}
|
660
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
661
|
+
SELECT * FROM employees WHERE 1=1
|
662
|
+
ORDER BY name ASC[0m
|
663
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
664
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
665
|
+
Processing by Dossier::ReportsController#show as HTML
|
666
|
+
Parameters: {"report"=>"employee"}
|
667
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
668
|
+
SELECT * FROM employees WHERE 1=1
|
669
|
+
ORDER BY name ASC
|
670
|
+
Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.3ms)
|
671
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
672
|
+
Processing by Dossier::ReportsController#show as HTML
|
673
|
+
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
674
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
675
|
+
SELECT * FROM employees WHERE 1=1
|
676
|
+
ORDER BY name ASC[0m
|
677
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms)
|
678
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 11:55:09 -0400
|
679
|
+
Processing by Dossier::ReportsController#show as HTML
|
680
|
+
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
681
|
+
[1m[35mEmployeeReport (0.4ms)[0m
|
682
|
+
SELECT * FROM employees WHERE 1=1
|
683
|
+
AND division in (('Tedious Toiling'))
|
684
|
+
AND salary > 10000
|
685
|
+
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
686
|
+
ORDER BY name DESC
|
687
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)
|
688
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 11:55:10 -0400
|
689
|
+
Processing by Dossier::ReportsController#show as HTML
|
690
|
+
Parameters: {"report"=>"employee"}
|
691
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
692
|
+
SELECT * FROM employees WHERE 1=1
|
693
|
+
ORDER BY name ASC[0m
|
694
|
+
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.3ms)
|
695
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:55:10 -0400
|
696
|
+
Processing by Dossier::ReportsController#show as HTML
|
697
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
698
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.4ms)
|
699
|
+
[1m[35mEmployeeWithCustomViewReport (0.3ms)[0m
|
700
|
+
SELECT * FROM employees WHERE suspended = true
|
701
|
+
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.3ms)
|
702
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 11:55:10 -0400
|
703
|
+
Processing by Dossier::ReportsController#show as HTML
|
704
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
705
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (61.0ms)
|
706
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
707
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
708
|
+
Completed 200 OK in 68ms (Views: 66.7ms | ActiveRecord: 0.3ms)
|
709
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 11:55:10 -0400
|
710
|
+
Processing by Dossier::ReportsController#show as CSV
|
711
|
+
Parameters: {"report"=>"employee"}
|
712
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
713
|
+
SELECT * FROM employees WHERE 1=1
|
714
|
+
ORDER BY name ASC
|
715
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
716
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 11:55:10 -0400
|
717
|
+
Processing by SiteController#report as HTML
|
718
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
719
|
+
SELECT * FROM employees WHERE 1=1
|
720
|
+
ORDER BY name ASC[0m
|
721
|
+
Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.3ms)
|
722
|
+
Connecting to database specified by database.yml
|
723
|
+
[1m[36mFACTORY (0.1ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
724
|
+
[1m[35mFACTORY (2.6ms)[0m DROP TABLE IF EXISTS `employees`
|
725
|
+
[1m[36mFACTORY (36.8ms)[0m [1m CREATE TABLE `employees` (
|
726
|
+
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
727
|
+
`name` varchar(255) NOT NULL,
|
728
|
+
`division` varchar(255) NOT NULL,
|
729
|
+
`salary` int(11) NOT NULL,
|
730
|
+
`suspended` tinyint(1) NOT NULL DEFAULT 0,
|
731
|
+
`hired_on` date NOT NULL,
|
732
|
+
PRIMARY KEY (`id`)
|
733
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
734
|
+
[0m
|
735
|
+
[1m[35mFACTORY (5.7ms)[0m TRUNCATE `employees`
|
736
|
+
[1m[36mFACTORY (0.4ms)[0m [1m INSERT INTO
|
737
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
738
|
+
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
739
|
+
[0m
|
740
|
+
[1m[35mFACTORY (0.3ms)[0m INSERT INTO
|
741
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
742
|
+
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
743
|
+
|
744
|
+
[1m[36mFACTORY (0.3ms)[0m [1m INSERT INTO
|
745
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
746
|
+
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
747
|
+
[0m
|
748
|
+
[1m[35mFACTORY (2.1ms)[0m DROP TABLE IF EXISTS `employees`
|
749
|
+
[1m[36mFACTORY (1.4ms)[0m [1m CREATE TABLE `employees` (
|
750
|
+
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
751
|
+
`name` TEXT NOT NULL,
|
752
|
+
`division` TEXT NOT NULL,
|
753
|
+
`salary` INTEGER NOT NULL,
|
754
|
+
`suspended` TINYINT NOT NULL DEFAULT 0,
|
755
|
+
`hired_on` DATE NOT NULL
|
756
|
+
);
|
757
|
+
[0m
|
758
|
+
[1m[35mFACTORY (0.9ms)[0m DELETE FROM `employees`
|
759
|
+
[1m[36mFACTORY (1.0ms)[0m [1m INSERT INTO
|
760
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
761
|
+
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
762
|
+
[0m
|
763
|
+
[1m[35mFACTORY (1.0ms)[0m INSERT INTO
|
764
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
765
|
+
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
766
|
+
|
767
|
+
[1m[36mFACTORY (1.0ms)[0m [1m INSERT INTO
|
768
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
769
|
+
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
770
|
+
[0m
|
771
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
772
|
+
SELECT * FROM employees WHERE 1=1
|
773
|
+
ORDER BY name ASC
|
774
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (18.3ms)
|
775
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
776
|
+
SELECT * FROM employees WHERE 1=1
|
777
|
+
ORDER BY name ASC[0m
|
778
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (5.4ms)
|
779
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
780
|
+
Processing by Dossier::ReportsController#multi as HTML
|
781
|
+
Parameters: {"report"=>"combination"}
|
782
|
+
Rendered dossier/reports/combination/_options.html.haml (3.3ms)
|
783
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
784
|
+
SELECT * FROM employees WHERE 1=1
|
785
|
+
ORDER BY name ASC
|
786
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (4.8ms)
|
787
|
+
[1m[36mEmployeeWithCustomViewReport (0.4ms)[0m [1m
|
788
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
789
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (4.2ms)
|
790
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (18.5ms)
|
791
|
+
Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.7ms)
|
792
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
793
|
+
Processing by Dossier::ReportsController#multi as HTML
|
794
|
+
Parameters: {"report"=>"combination"}
|
795
|
+
Rendered dossier/reports/combination/_options.html.haml (1.5ms)
|
796
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
797
|
+
SELECT * FROM employees WHERE 1=1
|
798
|
+
ORDER BY name ASC
|
799
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.0ms)
|
800
|
+
[1m[36mEmployeeWithCustomViewReport (0.4ms)[0m [1m
|
801
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
802
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.6ms)
|
803
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (10.0ms)
|
804
|
+
Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.7ms)
|
805
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
806
|
+
Processing by Dossier::ReportsController#multi as HTML
|
807
|
+
Parameters: {"report"=>"combination"}
|
808
|
+
Rendered dossier/reports/combination/_options.html.haml (1.8ms)
|
809
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
810
|
+
SELECT * FROM employees WHERE 1=1
|
811
|
+
ORDER BY name ASC
|
812
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml (5.5ms)
|
813
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
814
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
815
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml (1.7ms)
|
816
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (11.0ms)
|
817
|
+
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.7ms)
|
818
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
819
|
+
Processing by Dossier::ReportsController#multi as CSV
|
820
|
+
Parameters: {"report"=>"combination"}
|
821
|
+
Completed 500 Internal Server Error in 1ms
|
822
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (6.2ms)
|
823
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
824
|
+
Processing by Dossier::ReportsController#show as HTML
|
825
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
826
|
+
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
827
|
+
select 'cats', 'are', 'super', 'fun'
|
828
|
+
Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.1ms)
|
829
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
830
|
+
Processing by Dossier::ReportsController#show as HTML
|
831
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
832
|
+
[1m[36mEmployeeWithCustomClientReport (0.2ms)[0m [1m
|
833
|
+
SELECT * FROM `employees`[0m
|
834
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
835
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
836
|
+
Processing by SiteController#report as HTML
|
837
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
838
|
+
SELECT * FROM employees WHERE 1=1
|
839
|
+
ORDER BY name ASC
|
840
|
+
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.3ms)
|
841
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
842
|
+
SELECT * FROM employees WHERE 1=1
|
843
|
+
ORDER BY name ASC[0m
|
844
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
845
|
+
Processing by Dossier::ReportsController#show as CSV
|
846
|
+
Parameters: {"report"=>"employee"}
|
847
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
848
|
+
SELECT * FROM employees WHERE 1=1
|
849
|
+
ORDER BY name ASC
|
850
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
851
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
852
|
+
Processing by Dossier::ReportsController#show as HTML
|
853
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
854
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.0ms)
|
855
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
856
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
857
|
+
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.3ms)
|
858
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
859
|
+
Processing by Dossier::ReportsController#show as HTML
|
860
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
861
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.5ms)
|
862
|
+
[1m[35mEmployeeWithCustomViewReport (0.3ms)[0m
|
863
|
+
SELECT * FROM employees WHERE suspended = true
|
864
|
+
Completed 200 OK in 67ms (Views: 65.6ms | ActiveRecord: 0.3ms)
|
865
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
866
|
+
Processing by Dossier::ReportsController#show as HTML
|
867
|
+
Parameters: {"report"=>"employee"}
|
868
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
869
|
+
SELECT * FROM employees WHERE 1=1
|
870
|
+
ORDER BY name ASC[0m
|
871
|
+
Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.3ms)
|
872
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
873
|
+
Processing by Dossier::ReportsController#show as HTML
|
874
|
+
Parameters: {"report"=>"employee"}
|
875
|
+
[1m[35mEmployeeReport (0.4ms)[0m
|
876
|
+
SELECT * FROM employees WHERE 1=1
|
877
|
+
ORDER BY name ASC
|
878
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.4ms)
|
879
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 12:03:07 -0400
|
880
|
+
Processing by Dossier::ReportsController#show as HTML
|
881
|
+
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
882
|
+
[1m[36mEmployeeReport (0.4ms)[0m [1m
|
883
|
+
SELECT * FROM employees WHERE 1=1
|
884
|
+
AND division in (('Tedious Toiling'))
|
885
|
+
AND salary > 10000
|
886
|
+
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
887
|
+
ORDER BY name DESC[0m
|
888
|
+
Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.4ms)
|
889
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 12:03:08 -0400
|
890
|
+
Processing by Dossier::ReportsController#show as HTML
|
891
|
+
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
892
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
893
|
+
SELECT * FROM employees WHERE 1=1
|
894
|
+
ORDER BY name ASC
|
895
|
+
Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.3ms)
|
896
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 12:03:08 -0400
|
897
|
+
Processing by Dossier::ReportsController#show as XLS
|
898
|
+
Parameters: {"report"=>"employee"}
|
899
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
900
|
+
SELECT * FROM employees WHERE 1=1
|
901
|
+
ORDER BY name ASC[0m
|
902
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
903
|
+
Connecting to database specified by database.yml
|
904
|
+
[1m[36mFACTORY (0.2ms)[0m [1mCREATE DATABASE IF NOT EXISTS `dossier_test`[0m
|
905
|
+
[1m[35mFACTORY (3.0ms)[0m DROP TABLE IF EXISTS `employees`
|
906
|
+
[1m[36mFACTORY (51.4ms)[0m [1m CREATE TABLE `employees` (
|
907
|
+
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
908
|
+
`name` varchar(255) NOT NULL,
|
909
|
+
`division` varchar(255) NOT NULL,
|
910
|
+
`salary` int(11) NOT NULL,
|
911
|
+
`suspended` tinyint(1) NOT NULL DEFAULT 0,
|
912
|
+
`hired_on` date NOT NULL,
|
913
|
+
PRIMARY KEY (`id`)
|
914
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
915
|
+
[0m
|
916
|
+
[1m[35mFACTORY (5.1ms)[0m TRUNCATE `employees`
|
917
|
+
[1m[36mFACTORY (0.8ms)[0m [1m INSERT INTO
|
918
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
919
|
+
VALUES ('Moustafa McMann', '2010-10-02', false, 'Zany Inventions', 30000);
|
920
|
+
[0m
|
921
|
+
[1m[35mFACTORY (0.3ms)[0m INSERT INTO
|
922
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
923
|
+
VALUES ('Jimmy Jackalope, Jr.', '2013-01-11', true, 'Tedious Toiling', 20000);
|
924
|
+
|
925
|
+
[1m[36mFACTORY (0.4ms)[0m [1m INSERT INTO
|
926
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
927
|
+
VALUES ('Elise Elderberry', '2013-01-11', false, 'Corporate Malfeasance', 99000);
|
928
|
+
[0m
|
929
|
+
[1m[35mFACTORY (3.7ms)[0m DROP TABLE IF EXISTS `employees`
|
930
|
+
[1m[36mFACTORY (1.3ms)[0m [1m CREATE TABLE `employees` (
|
931
|
+
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
932
|
+
`name` TEXT NOT NULL,
|
933
|
+
`division` TEXT NOT NULL,
|
934
|
+
`salary` INTEGER NOT NULL,
|
935
|
+
`suspended` TINYINT NOT NULL DEFAULT 0,
|
936
|
+
`hired_on` DATE NOT NULL
|
937
|
+
);
|
938
|
+
[0m
|
939
|
+
[1m[35mFACTORY (0.9ms)[0m DELETE FROM `employees`
|
940
|
+
[1m[36mFACTORY (1.0ms)[0m [1m INSERT INTO
|
941
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
942
|
+
VALUES ('MOUSTAFA MCMANN', '2010-10-02', 0, 'Zany Inventions', 30000);
|
943
|
+
[0m
|
944
|
+
[1m[35mFACTORY (0.8ms)[0m INSERT INTO
|
945
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
946
|
+
VALUES ('JIMMY JACKALOPE, JR.', '2013-01-11', 1, 'Tedious Toiling', 20000);
|
947
|
+
|
948
|
+
[1m[36mFACTORY (2.8ms)[0m [1m INSERT INTO
|
949
|
+
`employees` (`name`, `hired_on`, `suspended`, `division`, `salary`)
|
950
|
+
VALUES ('ELISE ELDERBERRY', '2013-01-11', 0, 'Corporate Malfeasance', 99000);
|
951
|
+
[0m
|
952
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 12:03:56 -0400
|
953
|
+
Processing by Dossier::ReportsController#show as HTML
|
954
|
+
Parameters: {"report"=>"employee"}
|
955
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
956
|
+
SELECT * FROM employees WHERE 1=1
|
957
|
+
ORDER BY name ASC
|
958
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (17.0ms)
|
959
|
+
Completed 200 OK in 28ms (Views: 20.9ms | ActiveRecord: 0.3ms)
|
960
|
+
Started GET "/reports/employee" for 127.0.0.1 at 2013-09-04 12:03:56 -0400
|
961
|
+
Processing by Dossier::ReportsController#show as HTML
|
962
|
+
Parameters: {"report"=>"employee"}
|
963
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
964
|
+
SELECT * FROM employees WHERE 1=1
|
965
|
+
ORDER BY name ASC[0m
|
966
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.5ms)
|
967
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms)
|
968
|
+
Started GET "/reports/employee?options[divisions][]=Tedious+Toiling&options[names][]=Jimmy+Jackalope&options[names][]=Moustafa+McMann&options[order]=desc&options[salary]=true" for 127.0.0.1 at 2013-09-04 12:03:56 -0400
|
969
|
+
Processing by Dossier::ReportsController#show as HTML
|
970
|
+
Parameters: {"options"=>{"divisions"=>["Tedious Toiling"], "names"=>["Jimmy Jackalope", "Moustafa McMann"], "order"=>"desc", "salary"=>"true"}, "report"=>"employee"}
|
971
|
+
[1m[35mEmployeeReport (0.6ms)[0m
|
972
|
+
SELECT * FROM employees WHERE 1=1
|
973
|
+
AND division in (('Tedious Toiling'))
|
974
|
+
AND salary > 10000
|
975
|
+
AND (name like '%Moustafa McMann%' or name like '%Jimmy Jackalope%')
|
976
|
+
ORDER BY name DESC
|
977
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (7.7ms)
|
978
|
+
Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.6ms)
|
979
|
+
Started GET "/reports/employee?options[footer]=1" for 127.0.0.1 at 2013-09-04 12:03:56 -0400
|
980
|
+
Processing by Dossier::ReportsController#show as HTML
|
981
|
+
Parameters: {"options"=>{"footer"=>"1"}, "report"=>"employee"}
|
982
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
983
|
+
SELECT * FROM employees WHERE 1=1
|
984
|
+
ORDER BY name ASC[0m
|
985
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.8ms)
|
986
|
+
Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.3ms)
|
987
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 12:03:56 -0400
|
988
|
+
Processing by Dossier::ReportsController#show as HTML
|
989
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
990
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (4.1ms)
|
991
|
+
[1m[35mEmployeeWithCustomViewReport (0.2ms)[0m
|
992
|
+
SELECT * FROM employees WHERE suspended = true
|
993
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (10.1ms)
|
994
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms)
|
995
|
+
Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
996
|
+
Processing by Dossier::ReportsController#show as HTML
|
997
|
+
Parameters: {"report"=>"employee_with_custom_view"}
|
998
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (2.3ms)
|
999
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
1000
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
1001
|
+
Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (6.7ms)
|
1002
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.3ms)
|
1003
|
+
Started GET "/reports/employee.xls" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1004
|
+
Processing by Dossier::ReportsController#show as XLS
|
1005
|
+
Parameters: {"report"=>"employee"}
|
1006
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
1007
|
+
SELECT * FROM employees WHERE 1=1
|
1008
|
+
ORDER BY name ASC
|
1009
|
+
Completed 200 OK in 122ms (ActiveRecord: 0.3ms)
|
1010
|
+
Started GET "/reports/employee.csv" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1011
|
+
Processing by Dossier::ReportsController#show as CSV
|
1012
|
+
Parameters: {"report"=>"employee"}
|
1013
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
1014
|
+
SELECT * FROM employees WHERE 1=1
|
1015
|
+
ORDER BY name ASC[0m
|
1016
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.3ms)
|
1017
|
+
Started GET "/reports/cats/are/super_fun" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1018
|
+
Processing by Dossier::ReportsController#show as HTML
|
1019
|
+
Parameters: {"report"=>"cats/are/super_fun"}
|
1020
|
+
[1m[35mCats::Are::SuperFunReport (0.1ms)[0m
|
1021
|
+
select 'cats', 'are', 'super', 'fun'
|
1022
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within layouts/application (4.6ms)
|
1023
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
|
1024
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
1025
|
+
SELECT * FROM employees WHERE 1=1
|
1026
|
+
ORDER BY name ASC[0m
|
1027
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (10.9ms)
|
1028
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
1029
|
+
SELECT * FROM employees WHERE 1=1
|
1030
|
+
ORDER BY name ASC
|
1031
|
+
Rendered /Users/hrmrebecca/Projects/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (4.9ms)
|
1032
|
+
Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.8ms)
|
1033
|
+
Started GET "/reports/employee_with_custom_client" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1034
|
+
Processing by Dossier::ReportsController#show as HTML
|
1035
|
+
Parameters: {"report"=>"employee_with_custom_client"}
|
1036
|
+
[1m[36mEmployeeWithCustomClientReport (0.2ms)[0m [1m
|
1037
|
+
SELECT * FROM `employees`[0m
|
1038
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.2ms)
|
1039
|
+
Started GET "/employee_report_custom_controller" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1040
|
+
Processing by SiteController#report as HTML
|
1041
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
1042
|
+
SELECT * FROM employees WHERE 1=1
|
1043
|
+
ORDER BY name ASC
|
1044
|
+
Completed 200 OK in 65ms (Views: 61.3ms | ActiveRecord: 0.3ms)
|
1045
|
+
[1m[36mEmployeeReport (0.3ms)[0m [1m
|
1046
|
+
SELECT * FROM employees WHERE 1=1
|
1047
|
+
ORDER BY name ASC[0m
|
1048
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1049
|
+
Processing by Dossier::ReportsController#multi as HTML
|
1050
|
+
Parameters: {"report"=>"combination"}
|
1051
|
+
Rendered dossier/reports/combination/_options.html.haml (3.3ms)
|
1052
|
+
[1m[35mEmployeeReport (0.4ms)[0m
|
1053
|
+
SELECT * FROM employees WHERE 1=1
|
1054
|
+
ORDER BY name ASC
|
1055
|
+
[1m[36mEmployeeWithCustomViewReport (0.4ms)[0m [1m
|
1056
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
1057
|
+
Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.8ms)
|
1058
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1059
|
+
Processing by Dossier::ReportsController#multi as HTML
|
1060
|
+
Parameters: {"report"=>"combination"}
|
1061
|
+
Rendered dossier/reports/combination/_options.html.haml (1.4ms)
|
1062
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
1063
|
+
SELECT * FROM employees WHERE 1=1
|
1064
|
+
ORDER BY name ASC
|
1065
|
+
[1m[36mEmployeeWithCustomViewReport (0.4ms)[0m [1m
|
1066
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
1067
|
+
Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.7ms)
|
1068
|
+
Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1069
|
+
Processing by Dossier::ReportsController#multi as HTML
|
1070
|
+
Parameters: {"report"=>"combination"}
|
1071
|
+
Rendered dossier/reports/combination/_options.html.haml (1.4ms)
|
1072
|
+
[1m[35mEmployeeReport (0.3ms)[0m
|
1073
|
+
SELECT * FROM employees WHERE 1=1
|
1074
|
+
ORDER BY name ASC
|
1075
|
+
[1m[36mEmployeeWithCustomViewReport (0.3ms)[0m [1m
|
1076
|
+
SELECT * FROM employees WHERE suspended = true[0m
|
1077
|
+
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.6ms)
|
1078
|
+
Started GET "/multi/reports/combination.csv" for 127.0.0.1 at 2013-09-04 12:03:57 -0400
|
1079
|
+
Processing by Dossier::ReportsController#multi as CSV
|
1080
|
+
Parameters: {"report"=>"combination"}
|
1081
|
+
Completed 500 Internal Server Error in 1ms
|