axlsx_styler 1.0.0 → 1.1.0
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/CHANGELOG.md +3 -0
- data/README.md +13 -1
- data/lib/axlsx_styler/axlsx_styles.rb +21 -21
- data/lib/axlsx_styler/axlsx_workbook.rb +4 -2
- data/lib/axlsx_styler/axlsx_worksheet.rb +27 -10
- data/lib/axlsx_styler/version.rb +1 -1
- data/test/dummy_app/app/assets/config/manifest.js +3 -0
- data/test/dummy_app/config/application.rb +0 -7
- data/test/dummy_app/db/test.sqlite3 +0 -0
- data/test/dummy_app/log/test.log +768 -494
- data/test/test_helper.rb +3 -2
- data/test/unit/regresssions_test.rb +44 -0
- metadata +30 -30
- data/test/custom_assertions.rb +0 -21
- data/test/unit/general_test.rb +0 -84
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6da36a303dacdfc72388437e8e993607859fa1fc35bcf7c7937e73c0f85d71ba
|
4
|
+
data.tar.gz: a234265db298461f325be13515e56eeab110c08671ee976c30c59f57ed8b470e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab70334fc493760f7b4f561067d0d3a447bae22b236cbe78926a6ba87aa4fe4e88ae5b0532582eddc14b2d570100cfa04b0b7e3412ca2626badedb659214063
|
7
|
+
data.tar.gz: d5ea3bf3bdb7c611b1ab988963f8916f575d14309443bf9fedb85872e347fc594cf64adebbea615acf4ffdbf4fac1bfabcc615570cc6ef35713029cb235e1f76
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
- **1.1.0 - August 26, 2020**
|
4
|
+
- [Issue #29](https://github.com/axlsx-styler-gem/axlsx_styler/issues/29) - Fix error `Invalid cellXfs id` when applying `dxf` styles
|
5
|
+
- [PR #28](https://github.com/axlsx-styler-gem/axlsx_styler/pull/28) - Allow passing arrays of cell ranges to the `add_style` and `add_border` methods
|
3
6
|
- **1.0.0 - January 5, 2020**
|
4
7
|
- Switch to the `caxlsx` gem (Community Axlsx) from the legacy unmaintained `axlsx` gem. Axlsx has had a long history of being poorly maintained so this community gem improves the situation.
|
5
8
|
- Require Ruby 2.3+
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
While [`axlsx`](https://github.com/randym/axlsx) is an excellent tool to build Excel spreadsheets in Ruby, the sheets styles are only applied immediately as the row is created. This makes it very difficult to style easily and effectively.
|
10
10
|
|
11
|
-
To solve this issue, `axlsx_styler` was born to allow the
|
11
|
+
To solve this issue, `axlsx_styler` was born to allow the separation of styles from content within your `axlsx` code. It gives you the ability to fill out a spreadsheet with data and apply styles later.
|
12
12
|
|
13
13
|
Works well in any Rails app or outside of any specific Ruby framework.
|
14
14
|
|
@@ -36,6 +36,12 @@ centered = { alignment: { horizontal: :center } }
|
|
36
36
|
sheet.add_style 'A2:D2', bold, centered
|
37
37
|
```
|
38
38
|
|
39
|
+
Applying a style to multiple ranges at once.
|
40
|
+
|
41
|
+
```ruby
|
42
|
+
sheet.add_style ['A2:G2', "A8:G8", "A12:G12"], b: true, sz: 14
|
43
|
+
```
|
44
|
+
|
39
45
|
## Borders
|
40
46
|
|
41
47
|
The border style is to draw a thin black border on all four edges of the selected cell range.
|
@@ -51,6 +57,12 @@ sheet.add_border 'B2:D5', [:bottom, :right]
|
|
51
57
|
sheet.add_border 'B2:D5', { edges: [:bottom, :right], style: :thick, color: 'FF0000' }
|
52
58
|
```
|
53
59
|
|
60
|
+
Applying border to multiple ranges at once.
|
61
|
+
|
62
|
+
```ruby
|
63
|
+
sheet.add_border ['A2:G2', "A8:G8", "A12:G12"]
|
64
|
+
```
|
65
|
+
|
54
66
|
|
55
67
|
## Example
|
56
68
|
|
@@ -1,33 +1,33 @@
|
|
1
1
|
module AxlsxStyler
|
2
2
|
module Styles
|
3
3
|
|
4
|
-
# An index for cell styles
|
5
|
-
#
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
# K => < style_hash >
|
10
|
-
# }
|
11
|
-
# where keys are Cell#raw_style and values are styles codes as per Axlsx::Style
|
12
|
-
attr_accessor :style_index
|
4
|
+
# An index for cell styles where keys are styles codes as per Axlsx::Style and values are Cell#raw_style
|
5
|
+
# The reason for the backward key/value ordering is that style lookup must be most efficient, while `add_style` can be less efficient
|
6
|
+
def style_index
|
7
|
+
@style_index ||= {}
|
8
|
+
end
|
13
9
|
|
14
10
|
# Ensure plain axlsx styles are added to the axlsx_styler style_index cache
|
15
|
-
def add_style(
|
16
|
-
|
11
|
+
def add_style(options={})
|
12
|
+
if options[:type] == :dxf
|
13
|
+
style_id = super
|
14
|
+
else
|
15
|
+
raw_style = {type: :xf, name: 'Arial', sz: 11, family: 1}.merge(options)
|
17
16
|
|
18
|
-
|
17
|
+
if raw_style[:format_code]
|
18
|
+
raw_style.delete(:num_fmt)
|
19
|
+
end
|
19
20
|
|
20
|
-
|
21
|
-
if raw_style[:format_code]
|
22
|
-
raw_style.delete(:num_fmt)
|
23
|
-
end
|
21
|
+
style_id = style_index.key(raw_style)
|
24
22
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
23
|
+
if !style_id
|
24
|
+
style_id = super
|
25
|
+
|
26
|
+
style_index[style_id] = raw_style
|
27
|
+
end
|
29
28
|
end
|
30
|
-
|
29
|
+
|
30
|
+
return style_id
|
31
31
|
end
|
32
32
|
|
33
33
|
end
|
@@ -19,8 +19,9 @@ module AxlsxStyler
|
|
19
19
|
return unless styled_cells
|
20
20
|
|
21
21
|
styled_cells.each do |cell|
|
22
|
-
|
23
|
-
|
22
|
+
current_style = styles.style_index[cell.style]
|
23
|
+
|
24
|
+
if current_style
|
24
25
|
new_style = current_style.deep_merge(cell.raw_style)
|
25
26
|
else
|
26
27
|
new_style = cell.raw_style
|
@@ -28,6 +29,7 @@ module AxlsxStyler
|
|
28
29
|
|
29
30
|
cell.style = styles.add_style(new_style)
|
30
31
|
end
|
32
|
+
|
31
33
|
self.styles_applied = true
|
32
34
|
end
|
33
35
|
|
@@ -3,18 +3,28 @@ require_relative './border_creator'
|
|
3
3
|
module AxlsxStyler
|
4
4
|
module Worksheet
|
5
5
|
# Example to add a single style:
|
6
|
-
# add_style 'A1:B5', b:
|
6
|
+
# add_style 'A1:B5', b: false
|
7
|
+
# add_style ['B1', 'B3'], b: false
|
8
|
+
# add_style ['D3:D4', 'F2:F6'], b: false
|
7
9
|
#
|
8
10
|
# Example to add multiple styles:
|
9
11
|
# bold = { b: true }
|
10
12
|
# large_text = { sz: 30 }
|
11
13
|
# add_style 'B2:F8', bold, large_text
|
12
|
-
def add_style(
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
def add_style(cell_refs, *styles)
|
15
|
+
if !cell_refs.is_a?(Array)
|
16
|
+
cell_refs = [cell_refs]
|
17
|
+
end
|
18
|
+
|
19
|
+
cell_refs.each do |cell_ref|
|
20
|
+
item = self[cell_ref]
|
21
|
+
|
22
|
+
cells = item.is_a?(Array) ? item : [item]
|
23
|
+
|
24
|
+
cells.each do |cell|
|
25
|
+
styles.each do |style|
|
26
|
+
cell.add_style(style)
|
27
|
+
end
|
18
28
|
end
|
19
29
|
end
|
20
30
|
end
|
@@ -25,9 +35,16 @@ module AxlsxStyler
|
|
25
35
|
# add_border 'C2:G10', [:top]
|
26
36
|
# add_border 'C2:G10'
|
27
37
|
# add_border 'B2:D5', { style: :thick, color: '00330f', edges: [:left, :right] }
|
28
|
-
|
29
|
-
|
30
|
-
|
38
|
+
# add_border ['D3:D4', 'F2:F6'], [:left]
|
39
|
+
def add_border(cell_refs, args = :all)
|
40
|
+
if !cell_refs.is_a?(Array)
|
41
|
+
cell_refs = [cell_refs]
|
42
|
+
end
|
43
|
+
|
44
|
+
cell_refs.each do |cell_ref|
|
45
|
+
cells = self[cell_ref]
|
46
|
+
BorderCreator.new(self, cells, args).draw
|
47
|
+
end
|
31
48
|
end
|
32
49
|
end
|
33
50
|
end
|
data/lib/axlsx_styler/version.rb
CHANGED
@@ -52,12 +52,5 @@ module Dummy
|
|
52
52
|
config.after_initialize do
|
53
53
|
ActiveRecord::Migration.migrate(Rails.root.join("db/migrate/*").to_s)
|
54
54
|
end
|
55
|
-
|
56
|
-
if ActiveRecord.respond_to?(:gem_version)
|
57
|
-
gem_version = ActiveRecord.gem_version
|
58
|
-
if gem_version >= Gem::Version.new("5.2")
|
59
|
-
config.active_record.sqlite3.represent_boolean_as_integer = true
|
60
|
-
end
|
61
|
-
end
|
62
55
|
end
|
63
56
|
end
|
Binary file
|
data/test/dummy_app/log/test.log
CHANGED
@@ -1,730 +1,1004 @@
|
|
1
|
-
[1m[
|
2
|
-
[1m[35m (
|
3
|
-
[1m[35m (
|
4
|
-
[1m[
|
5
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
6
|
-
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
1
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (7.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
3
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
4
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
7
5
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
8
|
-
[1m[
|
9
|
-
[1m[35m (
|
6
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-08-25 17:22:12.061266"], ["updated_at", "2020-08-25 17:22:12.061266"]]
|
7
|
+
[1m[35m (1.9ms)[0m [1m[36mcommit transaction[0m
|
8
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
9
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
10
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
10
11
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
11
12
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
12
|
-
|
13
|
-
ApplicationTest:
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
21
|
-
[1m[35m (
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
[1m[35m (0.1ms)[0m [1m[
|
26
|
-
[1m[
|
27
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28
|
-
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
29
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
30
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
31
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
32
|
-
-------------------------
|
33
|
-
SampleModelTest: test_foo
|
34
|
-
-------------------------
|
35
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
36
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
37
|
-
-----------------------------------------
|
38
|
-
ApplicationTest: test_adding_styled_cells
|
39
|
-
-----------------------------------------
|
40
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
13
|
+
--------------------------
|
14
|
+
ApplicationTest: test_xlsx
|
15
|
+
--------------------------
|
16
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:22:12 -0700
|
17
|
+
Processing by SpreadsheetsController#test as XLSX
|
18
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
19
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 8.5ms | Allocations: 3447)
|
20
|
+
Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms | Allocations: 4811)
|
21
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
22
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
23
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
24
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
25
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
26
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
41
28
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
42
|
-
|
43
|
-
ApplicationTest:
|
44
|
-
|
45
|
-
|
46
|
-
|
29
|
+
--------------------------
|
30
|
+
ApplicationTest: test_xlsx
|
31
|
+
--------------------------
|
32
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:41:05 -0700
|
33
|
+
Processing by SpreadsheetsController#test as XLSX
|
34
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
35
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 25.9ms | Allocations: 17009)
|
36
|
+
Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms | Allocations: 18373)
|
37
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
38
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
39
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
40
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
41
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
42
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
43
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
47
44
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
48
|
-
|
49
|
-
|
45
|
+
--------------------------
|
46
|
+
ApplicationTest: test_xlsx
|
47
|
+
--------------------------
|
48
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:43:12 -0700
|
49
|
+
Processing by SpreadsheetsController#test as XLSX
|
50
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
51
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 26.3ms | Allocations: 17008)
|
52
|
+
Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms | Allocations: 18372)
|
53
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
55
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
56
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
57
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
58
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
50
59
|
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
51
60
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52
61
|
--------------------------
|
53
62
|
ApplicationTest: test_xlsx
|
54
63
|
--------------------------
|
55
|
-
Started GET "/
|
56
|
-
Processing by SpreadsheetsController#
|
57
|
-
|
64
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:44:39 -0700
|
65
|
+
Processing by SpreadsheetsController#test as XLSX
|
66
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
67
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 37.7ms | Allocations: 17012)
|
68
|
+
Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.0ms | Allocations: 18376)
|
58
69
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
59
|
-
[1m[35m (
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
[1m[35m (0.
|
64
|
-
[1m[
|
65
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
66
|
-
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
67
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
68
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
70
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
71
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
72
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
73
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
74
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
75
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
69
76
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70
77
|
--------------------------
|
71
78
|
ApplicationTest: test_xlsx
|
72
79
|
--------------------------
|
73
|
-
Started GET "/
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
-------------------------
|
80
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:46:03 -0700
|
81
|
+
Processing by SpreadsheetsController#test as XLSX
|
82
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
83
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 8.5ms | Allocations: 4162)
|
84
|
+
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms | Allocations: 5526)
|
79
85
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
80
|
-
[1m[
|
81
|
-
[1m[
|
82
|
-
[1m[35m (0.1ms)[0m [1m[
|
83
|
-
[1m[35m (0.
|
86
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
87
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
88
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
89
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
90
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
84
91
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
85
92
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
86
|
-
-------------------------
|
87
|
-
SampleModelTest: test_foo
|
88
|
-
-------------------------
|
89
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
90
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
91
93
|
--------------------------
|
92
94
|
ApplicationTest: test_xlsx
|
93
95
|
--------------------------
|
94
|
-
Started GET "/
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
96
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:47:42 -0700
|
97
|
+
Processing by SpreadsheetsController#test as XLSX
|
98
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
99
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.5ms | Allocations: 13763)
|
100
|
+
Rendering text template
|
101
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
102
|
+
Sent data test.xlsx (8.1ms)
|
103
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms | Allocations: 17214)
|
104
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
105
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
106
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
107
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
108
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
109
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
100
110
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
101
111
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
102
112
|
--------------------------
|
103
113
|
ApplicationTest: test_xlsx
|
104
114
|
--------------------------
|
105
|
-
Started GET "/
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
115
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:49:30 -0700
|
116
|
+
Processing by SpreadsheetsController#test as XLSX
|
117
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
118
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 18.9ms | Allocations: 13393)
|
119
|
+
Rendering text template
|
120
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
121
|
+
Sent data test.xlsx (6.6ms)
|
122
|
+
Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.0ms | Allocations: 16844)
|
123
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
124
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
125
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
126
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
127
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
128
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
129
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
113
130
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
114
|
-
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
115
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
116
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
117
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
118
131
|
--------------------------
|
119
132
|
ApplicationTest: test_xlsx
|
120
133
|
--------------------------
|
121
|
-
Started GET "/
|
122
|
-
Processing by SpreadsheetsController#
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
130
|
-
[1m[
|
131
|
-
[1m[
|
132
|
-
[1m[35m (0.1ms)[0m [1m[
|
134
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:50:30 -0700
|
135
|
+
Processing by SpreadsheetsController#test as XLSX
|
136
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
137
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 17.4ms | Allocations: 13769)
|
138
|
+
Rendering text template
|
139
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
140
|
+
Sent data test.xlsx (6.3ms)
|
141
|
+
Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms | Allocations: 17220)
|
142
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
143
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
144
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
145
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
146
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
147
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
133
148
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
134
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
135
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
136
|
-
-------------------------
|
137
|
-
SampleModelTest: test_foo
|
138
|
-
-------------------------
|
139
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
140
149
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
141
150
|
--------------------------
|
142
151
|
ApplicationTest: test_xlsx
|
143
152
|
--------------------------
|
144
|
-
Started GET "/
|
145
|
-
Processing by SpreadsheetsController#
|
146
|
-
|
147
|
-
|
148
|
-
|
153
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:51:01 -0700
|
154
|
+
Processing by SpreadsheetsController#test as XLSX
|
155
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
156
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 20.0ms | Allocations: 13768)
|
157
|
+
Rendering text template
|
158
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
159
|
+
Sent data test.xlsx (6.4ms)
|
160
|
+
Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.0ms | Allocations: 17219)
|
161
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
162
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
163
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
164
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
165
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
166
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
167
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
149
168
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
150
|
-
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
151
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
152
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
153
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
154
169
|
--------------------------
|
155
170
|
ApplicationTest: test_xlsx
|
156
171
|
--------------------------
|
157
|
-
Started GET "/
|
158
|
-
Processing by SpreadsheetsController#
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
[1m[35m (
|
167
|
-
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT
|
168
|
-
[1m[35m (0.1ms)[0m [1m[
|
169
|
-
[1m[35m (0.
|
170
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT
|
171
|
-
[1m[35m (0.
|
172
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:54:44 -0700
|
173
|
+
Processing by SpreadsheetsController#test as XLSX
|
174
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
175
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 41.9ms | Allocations: 13399)
|
176
|
+
Rendering text template
|
177
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
178
|
+
Sent data test.xlsx (5.8ms)
|
179
|
+
Completed 200 OK in 54ms (Views: 53.8ms | ActiveRecord: 0.0ms | Allocations: 16851)
|
180
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
181
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
182
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
183
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
184
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
185
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
186
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
172
187
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
188
|
+
--------------------------
|
189
|
+
ApplicationTest: test_xlsx
|
190
|
+
--------------------------
|
191
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:56:58 -0700
|
192
|
+
Processing by SpreadsheetsController#test as XLSX
|
193
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
194
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.0ms | Allocations: 13416)
|
195
|
+
Rendering text template
|
196
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
197
|
+
Sent data test.xlsx (5.9ms)
|
198
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms | Allocations: 16867)
|
199
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
200
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
201
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
202
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
203
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
204
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
205
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
177
206
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
178
207
|
--------------------------
|
179
208
|
ApplicationTest: test_xlsx
|
180
209
|
--------------------------
|
181
|
-
Started GET "/
|
182
|
-
Processing by SpreadsheetsController#
|
183
|
-
|
184
|
-
|
210
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:01:33 -0700
|
211
|
+
Processing by SpreadsheetsController#test as XLSX
|
212
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
213
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 38.4ms | Allocations: 13399)
|
214
|
+
Rendering text template
|
215
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
216
|
+
Sent data test.xlsx (5.7ms)
|
217
|
+
Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.0ms | Allocations: 16851)
|
185
218
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
186
|
-
[1m[
|
187
|
-
[1m[
|
188
|
-
[1m[35m (0.1ms)[0m [1m[
|
189
|
-
[1m[35m (0.
|
219
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
220
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
221
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
222
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
223
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
190
224
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
191
225
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
192
226
|
--------------------------
|
193
227
|
ApplicationTest: test_xlsx
|
194
228
|
--------------------------
|
195
|
-
Started GET "/
|
196
|
-
Processing by SpreadsheetsController#
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
[1m[35m (
|
205
|
-
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT
|
229
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:05:00 -0700
|
230
|
+
Processing by SpreadsheetsController#test as XLSX
|
231
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
232
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.3ms | Allocations: 13426)
|
233
|
+
Rendering text template
|
234
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
235
|
+
Sent data test.xlsx (6.0ms)
|
236
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms | Allocations: 16877)
|
237
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
238
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
239
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
240
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
241
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
242
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
243
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
206
244
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
207
|
-
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
208
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
209
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
210
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
211
245
|
--------------------------
|
212
246
|
ApplicationTest: test_xlsx
|
213
247
|
--------------------------
|
214
|
-
Started GET "/
|
215
|
-
Processing by SpreadsheetsController#
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
[1m[35m (
|
224
|
-
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT
|
225
|
-
[1m[35m (0.1ms)[0m [1m[
|
226
|
-
[1m[35m (0.
|
227
|
-
[1m[35m (0.
|
248
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:05:28 -0700
|
249
|
+
Processing by SpreadsheetsController#test as XLSX
|
250
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
251
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 29.9ms | Allocations: 13416)
|
252
|
+
Rendering text template
|
253
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
254
|
+
Sent data test.xlsx (8.5ms)
|
255
|
+
Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms | Allocations: 16867)
|
256
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
257
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
258
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
259
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
260
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
261
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
228
262
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
229
263
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
230
|
-
-------------------------
|
231
|
-
SampleModelTest: test_foo
|
232
|
-
-------------------------
|
233
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
234
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
235
264
|
--------------------------
|
236
265
|
ApplicationTest: test_xlsx
|
237
266
|
--------------------------
|
238
|
-
Started GET "/
|
239
|
-
Processing by SpreadsheetsController#
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
267
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:08:02 -0700
|
268
|
+
Processing by SpreadsheetsController#test as XLSX
|
269
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
270
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.7ms | Allocations: 13425)
|
271
|
+
Rendering text template
|
272
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
273
|
+
Sent data test.xlsx (5.7ms)
|
274
|
+
Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms | Allocations: 16876)
|
275
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
276
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
277
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
278
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
279
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
280
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
281
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
244
282
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
245
|
-
|
283
|
+
--------------------------
|
284
|
+
ApplicationTest: test_xlsx
|
285
|
+
--------------------------
|
286
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:09:32 -0700
|
287
|
+
Processing by SpreadsheetsController#test as XLSX
|
288
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
289
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.7ms | Allocations: 13426)
|
290
|
+
Rendering text template
|
291
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
292
|
+
Sent data test.xlsx (5.5ms)
|
293
|
+
Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms | Allocations: 16877)
|
294
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
295
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
296
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
297
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
298
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
299
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
246
300
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
247
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
248
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
249
|
-
-------------------------
|
250
|
-
SampleModelTest: test_foo
|
251
|
-
-------------------------
|
252
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
253
301
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
254
302
|
--------------------------
|
255
303
|
ApplicationTest: test_xlsx
|
256
304
|
--------------------------
|
257
|
-
Started GET "/
|
258
|
-
Processing by SpreadsheetsController#
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
305
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:10:44 -0700
|
306
|
+
Processing by SpreadsheetsController#test as XLSX
|
307
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
308
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.4ms | Allocations: 13775)
|
309
|
+
Rendering text template
|
310
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
311
|
+
Sent data test.xlsx (6.0ms)
|
312
|
+
Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms | Allocations: 17226)
|
313
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
314
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
315
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
316
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
317
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
318
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
319
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
263
320
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
264
|
-
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
265
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
266
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
267
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
268
|
-
-------------------------
|
269
|
-
SampleModelTest: test_foo
|
270
|
-
-------------------------
|
271
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
272
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
273
321
|
--------------------------
|
274
322
|
ApplicationTest: test_xlsx
|
275
323
|
--------------------------
|
276
|
-
Started GET "/
|
277
|
-
Processing by SpreadsheetsController#
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
[1m[
|
282
|
-
[1m[35m (
|
283
|
-
[1m[
|
284
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT
|
285
|
-
[1m[35m (0.
|
286
|
-
[1m[35m (0.1ms)[0m [1m[
|
287
|
-
|
288
|
-
SampleModelTest: test_foo
|
289
|
-
-------------------------
|
290
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
324
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:11:35 -0700
|
325
|
+
Processing by SpreadsheetsController#test as XLSX
|
326
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
327
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 5.3ms | Allocations: 3803)
|
328
|
+
Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms | Allocations: 5167)
|
329
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
330
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
331
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
332
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
333
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
334
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
335
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
291
336
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
292
337
|
--------------------------
|
293
338
|
ApplicationTest: test_xlsx
|
294
339
|
--------------------------
|
295
|
-
Started GET "/
|
296
|
-
Processing by SpreadsheetsController#
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
[1m[35m (0.1ms)[0m [1m[
|
340
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:14:10 -0700
|
341
|
+
Processing by SpreadsheetsController#test as XLSX
|
342
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
343
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 28.2ms | Allocations: 13409)
|
344
|
+
Rendering text template
|
345
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
346
|
+
Sent data test.xlsx (7.9ms)
|
347
|
+
Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms | Allocations: 16860)
|
348
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
349
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
350
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
351
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
352
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
353
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
304
354
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
305
355
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
306
356
|
--------------------------
|
307
357
|
ApplicationTest: test_xlsx
|
308
358
|
--------------------------
|
309
|
-
Started GET "/
|
310
|
-
Processing by SpreadsheetsController#
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
[1m[35m (0.1ms)[0m [1m[
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
[1m[35m (0.
|
319
|
-
[1m[
|
320
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
321
|
-
[1m[35m (0.2ms)[0m [1m[36mcommit transaction[0m
|
359
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:14:38 -0700
|
360
|
+
Processing by SpreadsheetsController#test as XLSX
|
361
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
362
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 3.9ms | Allocations: 3064)
|
363
|
+
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms | Allocations: 4428)
|
364
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
365
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
366
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
367
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
368
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
369
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
322
370
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
323
|
-
[1m[35m (0.1ms)[0m [1m[
|
324
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
371
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
325
372
|
--------------------------
|
326
373
|
ApplicationTest: test_xlsx
|
327
374
|
--------------------------
|
328
|
-
Started GET "/
|
329
|
-
Processing by SpreadsheetsController#
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
[1m[
|
334
|
-
[1m[35m (
|
335
|
-
[1m[
|
336
|
-
[1m[35m (0.
|
337
|
-
[1m[35m (0.
|
375
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:14:53 -0700
|
376
|
+
Processing by SpreadsheetsController#test as XLSX
|
377
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
378
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 5.2ms | Allocations: 3287)
|
379
|
+
Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4652)
|
380
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
381
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
382
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
383
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
384
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
385
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
386
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
338
387
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
339
388
|
--------------------------
|
340
389
|
ApplicationTest: test_xlsx
|
341
390
|
--------------------------
|
342
|
-
Started GET "/
|
343
|
-
Processing by SpreadsheetsController#
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
391
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:15:10 -0700
|
392
|
+
Processing by SpreadsheetsController#test as XLSX
|
393
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
394
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 42.4ms | Allocations: 13403)
|
395
|
+
Rendering text template
|
396
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
397
|
+
Sent data test.xlsx (5.8ms)
|
398
|
+
Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.0ms | Allocations: 16855)
|
399
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
400
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
401
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
402
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
403
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
404
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
349
405
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
350
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
351
406
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
352
407
|
--------------------------
|
353
408
|
ApplicationTest: test_xlsx
|
354
409
|
--------------------------
|
355
|
-
Started GET "/
|
356
|
-
Processing by SpreadsheetsController#
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
[1m[35m (0.1ms)[0m [1m[
|
410
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:16:21 -0700
|
411
|
+
Processing by SpreadsheetsController#test as XLSX
|
412
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
413
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 12.5ms | Allocations: 13415)
|
414
|
+
Rendering text template
|
415
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
416
|
+
Sent data test.xlsx (5.1ms)
|
417
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms | Allocations: 16866)
|
418
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
419
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
420
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
421
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
422
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
423
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
424
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
364
425
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
365
426
|
--------------------------
|
366
427
|
ApplicationTest: test_xlsx
|
367
428
|
--------------------------
|
368
|
-
Started GET "/
|
369
|
-
Processing by SpreadsheetsController#
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
429
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:16:55 -0700
|
430
|
+
Processing by SpreadsheetsController#test as XLSX
|
431
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
432
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 23.9ms | Allocations: 13414)
|
433
|
+
Rendering text template
|
434
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
435
|
+
Sent data test.xlsx (8.4ms)
|
436
|
+
Completed 200 OK in 38ms (Views: 37.4ms | ActiveRecord: 0.0ms | Allocations: 16865)
|
437
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
438
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
439
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
440
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
441
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
442
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
443
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
374
444
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
375
|
-
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
376
|
-
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
377
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
378
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
379
445
|
--------------------------
|
380
446
|
ApplicationTest: test_xlsx
|
381
447
|
--------------------------
|
382
|
-
Started GET "/
|
383
|
-
Processing by SpreadsheetsController#
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
448
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:17:29 -0700
|
449
|
+
Processing by SpreadsheetsController#test as XLSX
|
450
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
451
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 15.7ms | Allocations: 13416)
|
452
|
+
Rendering text template
|
453
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
454
|
+
Sent data test.xlsx (6.9ms)
|
455
|
+
Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms | Allocations: 16867)
|
456
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
457
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
458
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
459
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
460
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
461
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
390
462
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
391
|
-
[1m[35m (0.1ms)[0m [1m[
|
392
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
463
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
393
464
|
--------------------------
|
394
465
|
ApplicationTest: test_xlsx
|
395
466
|
--------------------------
|
396
|
-
Started GET "/
|
397
|
-
Processing by SpreadsheetsController#
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
[1m[35m (0.
|
467
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:21:51 -0700
|
468
|
+
Processing by SpreadsheetsController#test as XLSX
|
469
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
470
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 13.6ms | Allocations: 13416)
|
471
|
+
Rendering text template
|
472
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
473
|
+
Sent data test.xlsx (5.8ms)
|
474
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms | Allocations: 16867)
|
475
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
476
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
477
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
478
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
479
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
480
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
405
481
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
406
482
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
407
483
|
--------------------------
|
408
484
|
ApplicationTest: test_xlsx
|
409
485
|
--------------------------
|
410
|
-
Started GET "/
|
411
|
-
Processing by SpreadsheetsController#
|
412
|
-
|
413
|
-
|
486
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:22:13 -0700
|
487
|
+
Processing by SpreadsheetsController#test as XLSX
|
488
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
489
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 23.5ms | Allocations: 13417)
|
490
|
+
Rendering text template
|
491
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
492
|
+
Sent data test.xlsx (5.9ms)
|
493
|
+
Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.0ms | Allocations: 16869)
|
414
494
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
415
|
-
[1m[
|
416
|
-
[1m[
|
417
|
-
[1m[35m (0.1ms)[0m [1m[
|
418
|
-
[1m[35m (0.
|
495
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
496
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
497
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
498
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
499
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
419
500
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
420
501
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
421
502
|
--------------------------
|
422
503
|
ApplicationTest: test_xlsx
|
423
504
|
--------------------------
|
424
|
-
Started GET "/
|
425
|
-
Processing by SpreadsheetsController#
|
426
|
-
|
427
|
-
|
505
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:23:18 -0700
|
506
|
+
Processing by SpreadsheetsController#test as XLSX
|
507
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
508
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 36.7ms | Allocations: 13403)
|
509
|
+
Rendering text template
|
510
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
511
|
+
Sent data test.xlsx (5.0ms)
|
512
|
+
Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 0.0ms | Allocations: 16855)
|
428
513
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
429
|
-
[1m[
|
430
|
-
[1m[
|
431
|
-
[1m[35m (0.
|
432
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "
|
514
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
515
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
516
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
517
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
518
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
433
519
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
434
|
-
[1m[35m (0.
|
520
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
435
521
|
--------------------------
|
436
522
|
ApplicationTest: test_xlsx
|
437
523
|
--------------------------
|
438
|
-
Started GET "/
|
439
|
-
Processing by SpreadsheetsController#
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
[1m[35m (0.
|
524
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:23:52 -0700
|
525
|
+
Processing by SpreadsheetsController#test as XLSX
|
526
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
527
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 15.3ms | Allocations: 13412)
|
528
|
+
Rendering text template
|
529
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
530
|
+
Sent data test.xlsx (5.6ms)
|
531
|
+
Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms | Allocations: 16863)
|
532
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
533
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
534
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
535
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
536
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
537
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
447
538
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
448
|
-
[1m[35m (0.
|
539
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
449
540
|
--------------------------
|
450
541
|
ApplicationTest: test_xlsx
|
451
542
|
--------------------------
|
452
|
-
Started GET "/
|
453
|
-
Processing by SpreadsheetsController#
|
454
|
-
|
543
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:24:16 -0700
|
544
|
+
Processing by SpreadsheetsController#test as XLSX
|
545
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
546
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.1ms | Allocations: 13557)
|
547
|
+
Rendering text template
|
548
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
549
|
+
Sent data test.xlsx (5.2ms)
|
550
|
+
Completed 200 OK in 23ms (Views: 23.1ms | ActiveRecord: 0.0ms | Allocations: 17009)
|
455
551
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
456
|
-
[1m[
|
457
|
-
[1m[
|
458
|
-
[1m[35m (0.1ms)[0m [1m[
|
459
|
-
[1m[35m (0.
|
460
|
-
[1m[35m (0.
|
552
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
553
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
554
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
555
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
556
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
557
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
461
558
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
462
559
|
--------------------------
|
463
560
|
ApplicationTest: test_xlsx
|
464
561
|
--------------------------
|
465
|
-
Started GET "/
|
466
|
-
Processing by SpreadsheetsController#
|
467
|
-
|
468
|
-
|
469
|
-
|
562
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:25:26 -0700
|
563
|
+
Processing by SpreadsheetsController#test as XLSX
|
564
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
565
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.2ms | Allocations: 13557)
|
566
|
+
Rendering text template
|
567
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
568
|
+
Sent data test.xlsx (5.8ms)
|
569
|
+
Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms | Allocations: 17009)
|
570
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
571
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
572
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
573
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
574
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
575
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
576
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
470
577
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
471
|
-
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
472
|
-
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
473
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
474
|
-
[1m[35m (1.2ms)[0m [1m[36mbegin transaction[0m
|
475
578
|
--------------------------
|
476
579
|
ApplicationTest: test_xlsx
|
477
580
|
--------------------------
|
478
|
-
Started GET "/
|
479
|
-
Processing by SpreadsheetsController#
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
[1m[35m (0.1ms)[0m [1m[
|
581
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:25:46 -0700
|
582
|
+
Processing by SpreadsheetsController#test as XLSX
|
583
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
584
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 17.1ms | Allocations: 13412)
|
585
|
+
Rendering text template
|
586
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
587
|
+
Sent data test.xlsx (6.2ms)
|
588
|
+
Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms | Allocations: 16863)
|
589
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
590
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
591
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
592
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
593
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
594
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
595
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
487
596
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
488
597
|
--------------------------
|
489
598
|
ApplicationTest: test_xlsx
|
490
599
|
--------------------------
|
491
|
-
Started GET "/
|
492
|
-
Processing by SpreadsheetsController#
|
493
|
-
|
494
|
-
|
495
|
-
|
600
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:27:03 -0700
|
601
|
+
Processing by SpreadsheetsController#test as XLSX
|
602
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
603
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 38.7ms | Allocations: 13403)
|
604
|
+
Rendering text template
|
605
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
606
|
+
Sent data test.xlsx (5.8ms)
|
607
|
+
Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms | Allocations: 16855)
|
608
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
609
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
610
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
611
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
612
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
613
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
614
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
496
615
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
497
|
-
|
498
|
-
|
616
|
+
--------------------------
|
617
|
+
ApplicationTest: test_xlsx
|
618
|
+
--------------------------
|
619
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:28:10 -0700
|
620
|
+
Processing by SpreadsheetsController#test as XLSX
|
621
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
622
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 15.5ms | Allocations: 13557)
|
623
|
+
Rendering text template
|
624
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
625
|
+
Sent data test.xlsx (5.8ms)
|
626
|
+
Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms | Allocations: 17009)
|
627
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
628
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
629
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
630
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
631
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
632
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
499
633
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
500
634
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
501
635
|
--------------------------
|
502
636
|
ApplicationTest: test_xlsx
|
503
637
|
--------------------------
|
638
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:28:31 -0700
|
639
|
+
Processing by SpreadsheetsController#test as XLSX
|
640
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
641
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 29.0ms | Allocations: 13403)
|
642
|
+
Rendering text template
|
643
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
644
|
+
Sent data test.xlsx (7.7ms)
|
645
|
+
Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms | Allocations: 16854)
|
504
646
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
505
|
-
[1m[35m (
|
506
|
-
[1m[
|
507
|
-
[1m[35m (
|
508
|
-
[1m[
|
509
|
-
[1m[35m (0.1ms)[0m [1m[
|
510
|
-
[1m[36mActiveRecord::InternalMetadata Create (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-01-25 16:55:20.010401"], ["updated_at", "2020-01-25 16:55:20.010401"]]
|
511
|
-
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
512
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
647
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
648
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
649
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
650
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
651
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
513
652
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
514
653
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
515
654
|
--------------------------
|
516
655
|
ApplicationTest: test_xlsx
|
517
656
|
--------------------------
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
657
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:29:47 -0700
|
658
|
+
Processing by SpreadsheetsController#test as XLSX
|
659
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
660
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.2ms | Allocations: 13429)
|
661
|
+
Rendering text template
|
662
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
663
|
+
Sent data test.xlsx (5.1ms)
|
664
|
+
Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms | Allocations: 16880)
|
665
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
666
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
667
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
668
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
669
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
670
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
522
671
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
672
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
673
|
+
--------------------------
|
674
|
+
ApplicationTest: test_xlsx
|
675
|
+
--------------------------
|
676
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:30:51 -0700
|
677
|
+
Processing by SpreadsheetsController#test as XLSX
|
678
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
679
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 28.0ms | Allocations: 13403)
|
680
|
+
Rendering text template
|
681
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
682
|
+
Sent data test.xlsx (7.8ms)
|
683
|
+
Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms | Allocations: 16854)
|
684
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
685
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
686
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
687
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
688
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
689
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
523
690
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
524
691
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
525
692
|
--------------------------
|
526
693
|
ApplicationTest: test_xlsx
|
527
694
|
--------------------------
|
528
|
-
Started GET "/
|
529
|
-
Processing by SpreadsheetsController#
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
[1m[35m (0.1ms)[0m [1m[
|
695
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:31:03 -0700
|
696
|
+
Processing by SpreadsheetsController#test as XLSX
|
697
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
698
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.8ms | Allocations: 13424)
|
699
|
+
Rendering text template
|
700
|
+
Rendered text template (Duration: 0.1ms | Allocations: 1)
|
701
|
+
Sent data test.xlsx (6.0ms)
|
702
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms | Allocations: 16875)
|
703
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
704
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
705
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
706
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
707
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
708
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
709
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
537
710
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
538
711
|
--------------------------
|
539
712
|
ApplicationTest: test_xlsx
|
540
713
|
--------------------------
|
541
|
-
Started GET "/
|
542
|
-
Processing by SpreadsheetsController#
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
[1m[35m (0.1ms)[0m [1m[
|
714
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:40:20 -0700
|
715
|
+
Processing by SpreadsheetsController#test as XLSX
|
716
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
717
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 39.8ms | Allocations: 13399)
|
718
|
+
Rendering text template
|
719
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
720
|
+
Sent data test.xlsx (5.7ms)
|
721
|
+
Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.0ms | Allocations: 16851)
|
722
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
723
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
724
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
725
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
726
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
727
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
728
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
550
729
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
551
730
|
--------------------------
|
552
731
|
ApplicationTest: test_xlsx
|
553
732
|
--------------------------
|
554
|
-
Started GET "/
|
555
|
-
Processing by SpreadsheetsController#
|
556
|
-
|
733
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:41:30 -0700
|
734
|
+
Processing by SpreadsheetsController#test as XLSX
|
735
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
736
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.7ms | Allocations: 13414)
|
737
|
+
Rendering text template
|
738
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
739
|
+
Sent data test.xlsx (5.9ms)
|
740
|
+
Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms | Allocations: 16865)
|
557
741
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
558
|
-
[1m[
|
559
|
-
[1m[
|
560
|
-
[1m[35m (0.
|
742
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
743
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
744
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
745
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
746
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
561
747
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
748
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
749
|
+
--------------------------
|
750
|
+
ApplicationTest: test_xlsx
|
751
|
+
--------------------------
|
752
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:42:42 -0700
|
753
|
+
Processing by SpreadsheetsController#test as XLSX
|
754
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
755
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.0ms | Allocations: 13417)
|
756
|
+
Rendering text template
|
757
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
758
|
+
Sent data test.xlsx (6.2ms)
|
759
|
+
Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms | Allocations: 16868)
|
760
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
761
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
762
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
763
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
764
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
765
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
562
766
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
563
767
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
564
768
|
--------------------------
|
565
769
|
ApplicationTest: test_xlsx
|
566
770
|
--------------------------
|
567
|
-
Started GET "/
|
568
|
-
Processing by SpreadsheetsController#
|
569
|
-
|
570
|
-
|
571
|
-
|
771
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:47:33 -0700
|
772
|
+
Processing by SpreadsheetsController#test as XLSX
|
773
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
774
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 8.1ms | Allocations: 3823)
|
775
|
+
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms | Allocations: 5188)
|
776
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
777
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
778
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
779
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
780
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
781
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
782
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
572
783
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
573
|
-
|
574
|
-
|
784
|
+
--------------------------
|
785
|
+
ApplicationTest: test_xlsx
|
786
|
+
--------------------------
|
787
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:47:54 -0700
|
788
|
+
Processing by SpreadsheetsController#test as XLSX
|
789
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
790
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 35.1ms | Allocations: 13393)
|
791
|
+
Rendering text template
|
792
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
793
|
+
Sent data test.xlsx (5.7ms)
|
794
|
+
Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.0ms | Allocations: 16845)
|
795
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
796
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
797
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
798
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
799
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
800
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
575
801
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
576
802
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
577
803
|
--------------------------
|
578
804
|
ApplicationTest: test_xlsx
|
579
805
|
--------------------------
|
580
|
-
Started GET "/
|
581
|
-
Processing by SpreadsheetsController#
|
582
|
-
|
806
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:48:03 -0700
|
807
|
+
Processing by SpreadsheetsController#test as XLSX
|
808
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
809
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 26.0ms | Allocations: 13400)
|
810
|
+
Rendering text template
|
811
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
812
|
+
Sent data test.xlsx (5.9ms)
|
813
|
+
Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.0ms | Allocations: 16852)
|
583
814
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
584
|
-
[1m[
|
585
|
-
[1m[
|
586
|
-
[1m[35m (0.1ms)[0m [1m[
|
587
|
-
[1m[35m (0.
|
815
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
816
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
817
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
818
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
819
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
588
820
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
589
821
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
590
822
|
--------------------------
|
591
823
|
ApplicationTest: test_xlsx
|
592
824
|
--------------------------
|
593
|
-
Started GET "/
|
594
|
-
Processing by SpreadsheetsController#
|
825
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 06:51:31 -0700
|
826
|
+
Processing by SpreadsheetsController#test as XLSX
|
595
827
|
Rendering spreadsheets/test.xlsx.axlsx
|
596
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
828
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.6ms | Allocations: 13545)
|
597
829
|
Rendering text template
|
598
|
-
Rendered text template (0.0ms)
|
599
|
-
Sent data test.xlsx (
|
600
|
-
Completed 200 OK in
|
601
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
602
|
-
[1m[
|
603
|
-
[1m[
|
604
|
-
[1m[35m (0.1ms)[0m [1m[
|
830
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
831
|
+
Sent data test.xlsx (5.2ms)
|
832
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms | Allocations: 16997)
|
833
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
834
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
835
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
836
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
837
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
838
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
605
839
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
606
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
607
840
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
608
841
|
--------------------------
|
609
842
|
ApplicationTest: test_xlsx
|
610
843
|
--------------------------
|
611
|
-
Started GET "/
|
612
|
-
Processing by SpreadsheetsController#
|
844
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:04:01 -0700
|
845
|
+
Processing by SpreadsheetsController#test as XLSX
|
613
846
|
Rendering spreadsheets/test.xlsx.axlsx
|
614
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
847
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 36.2ms | Allocations: 13397)
|
615
848
|
Rendering text template
|
616
|
-
Rendered text template (0.0ms)
|
617
|
-
Sent data test.xlsx (
|
618
|
-
Completed 200 OK in
|
849
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
850
|
+
Sent data test.xlsx (5.7ms)
|
851
|
+
Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.0ms | Allocations: 16849)
|
619
852
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
620
|
-
[1m[
|
621
|
-
[1m[
|
622
|
-
[1m[35m (0.1ms)[0m [1m[
|
623
|
-
[1m[35m (0.
|
853
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
854
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
855
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
856
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
857
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
624
858
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
625
|
-
[1m[35m (0.
|
859
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
626
860
|
--------------------------
|
627
861
|
ApplicationTest: test_xlsx
|
628
862
|
--------------------------
|
629
|
-
Started GET "/
|
630
|
-
Processing by SpreadsheetsController#
|
863
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:04:20 -0700
|
864
|
+
Processing by SpreadsheetsController#test as XLSX
|
631
865
|
Rendering spreadsheets/test.xlsx.axlsx
|
632
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
866
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.4ms | Allocations: 13400)
|
633
867
|
Rendering text template
|
634
|
-
Rendered text template (0.0ms)
|
635
|
-
Sent data test.xlsx (
|
636
|
-
Completed 200 OK in
|
637
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
638
|
-
[1m[
|
639
|
-
[1m[
|
640
|
-
[1m[35m (0.1ms)[0m [1m[
|
868
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
869
|
+
Sent data test.xlsx (6.0ms)
|
870
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms | Allocations: 16851)
|
871
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
872
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
873
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
874
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
875
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
876
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
641
877
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
642
|
-
[1m[35m (0.1ms)[0m [1m[
|
643
|
-
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
878
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
644
879
|
--------------------------
|
645
880
|
ApplicationTest: test_xlsx
|
646
881
|
--------------------------
|
647
|
-
Started GET "/
|
648
|
-
Processing by SpreadsheetsController#
|
882
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:04:31 -0700
|
883
|
+
Processing by SpreadsheetsController#test as XLSX
|
649
884
|
Rendering spreadsheets/test.xlsx.axlsx
|
650
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
885
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 13.7ms | Allocations: 13417)
|
651
886
|
Rendering text template
|
652
|
-
Rendered text template (0.0ms)
|
653
|
-
Sent data test.xlsx (
|
654
|
-
Completed 200 OK in
|
655
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
656
|
-
[1m[
|
657
|
-
[1m[
|
658
|
-
[1m[35m (0.1ms)[0m [1m[
|
887
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
888
|
+
Sent data test.xlsx (5.4ms)
|
889
|
+
Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms | Allocations: 16868)
|
890
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
891
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
892
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
893
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
894
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
895
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
659
896
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
660
|
-
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
661
897
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
662
898
|
--------------------------
|
663
899
|
ApplicationTest: test_xlsx
|
664
900
|
--------------------------
|
665
|
-
Started GET "/
|
666
|
-
Processing by SpreadsheetsController#
|
901
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:05:55 -0700
|
902
|
+
Processing by SpreadsheetsController#test as XLSX
|
667
903
|
Rendering spreadsheets/test.xlsx.axlsx
|
668
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
904
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 22.5ms | Allocations: 13396)
|
669
905
|
Rendering text template
|
670
|
-
Rendered text template (0.0ms)
|
671
|
-
Sent data test.xlsx (
|
672
|
-
Completed 200 OK in
|
673
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
674
|
-
[1m[
|
675
|
-
[1m[
|
676
|
-
[1m[35m (0.1ms)[0m [1m[
|
677
|
-
[1m[35m (0.
|
906
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
907
|
+
Sent data test.xlsx (6.0ms)
|
908
|
+
Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.0ms | Allocations: 16848)
|
909
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
910
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
911
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
912
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
913
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
914
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
678
915
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
679
916
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
680
917
|
--------------------------
|
681
918
|
ApplicationTest: test_xlsx
|
682
919
|
--------------------------
|
683
|
-
Started GET "/
|
684
|
-
Processing by SpreadsheetsController#
|
920
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:06:21 -0700
|
921
|
+
Processing by SpreadsheetsController#test as XLSX
|
685
922
|
Rendering spreadsheets/test.xlsx.axlsx
|
686
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
923
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.2ms | Allocations: 13545)
|
687
924
|
Rendering text template
|
688
|
-
Rendered text template (0.0ms)
|
689
|
-
Sent data test.xlsx (
|
690
|
-
Completed 200 OK in
|
691
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
692
|
-
[1m[
|
925
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
926
|
+
Sent data test.xlsx (6.0ms)
|
927
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms | Allocations: 16997)
|
928
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
929
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
930
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
931
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
932
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
933
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
934
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
693
935
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
694
|
-
|
695
|
-
|
936
|
+
--------------------------
|
937
|
+
ApplicationTest: test_xlsx
|
938
|
+
--------------------------
|
939
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:06:37 -0700
|
940
|
+
Processing by SpreadsheetsController#test as XLSX
|
941
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
942
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 34.5ms | Allocations: 13397)
|
943
|
+
Rendering text template
|
944
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
945
|
+
Sent data test.xlsx (5.8ms)
|
946
|
+
Completed 200 OK in 46ms (Views: 45.7ms | ActiveRecord: 0.0ms | Allocations: 16849)
|
947
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
948
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
949
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
950
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
951
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
952
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
696
953
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
697
954
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
698
955
|
--------------------------
|
699
956
|
ApplicationTest: test_xlsx
|
700
957
|
--------------------------
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
958
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:07:43 -0700
|
959
|
+
Processing by SpreadsheetsController#test as XLSX
|
960
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
961
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 34.3ms | Allocations: 13399)
|
962
|
+
Rendering text template
|
963
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
964
|
+
Sent data test.xlsx (5.7ms)
|
965
|
+
Completed 200 OK in 46ms (Views: 45.2ms | ActiveRecord: 0.0ms | Allocations: 16851)
|
966
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
967
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
968
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
969
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
970
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
971
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
972
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
707
973
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
708
974
|
--------------------------
|
709
975
|
ApplicationTest: test_xlsx
|
710
976
|
--------------------------
|
711
|
-
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-
|
977
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:08:31 -0700
|
978
|
+
Processing by SpreadsheetsController#test as XLSX
|
979
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
980
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 33.5ms | Allocations: 13396)
|
981
|
+
Rendering text template
|
982
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
983
|
+
Sent data test.xlsx (5.9ms)
|
984
|
+
Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms | Allocations: 16848)
|
712
985
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
713
|
-
[1m[
|
714
|
-
[1m[
|
715
|
-
[1m[35m (0.1ms)[0m [1m[
|
716
|
-
[1m[35m (0.
|
986
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
987
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
988
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
989
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
990
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
717
991
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
718
|
-
[1m[35m (0.
|
992
|
+
[1m[35m (0.9ms)[0m [1m[36mbegin transaction[0m
|
719
993
|
--------------------------
|
720
994
|
ApplicationTest: test_xlsx
|
721
995
|
--------------------------
|
722
|
-
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-
|
996
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:09:20 -0700
|
723
997
|
Processing by SpreadsheetsController#test as XLSX
|
724
998
|
Rendering spreadsheets/test.xlsx.axlsx
|
725
|
-
Rendered spreadsheets/test.xlsx.axlsx (
|
999
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 34.7ms | Allocations: 13402)
|
726
1000
|
Rendering text template
|
727
|
-
Rendered text template (0.0ms)
|
728
|
-
Sent data test.xlsx (
|
729
|
-
Completed 200 OK in
|
1001
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
1002
|
+
Sent data test.xlsx (5.6ms)
|
1003
|
+
Completed 200 OK in 46ms (Views: 45.8ms | ActiveRecord: 0.0ms | Allocations: 16854)
|
730
1004
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|