axlsx_styler 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7afaf1eeca35216610277bc48f73ddbff03344a91a3909d80b7ba43b48c7fe5d
4
- data.tar.gz: 5cdb2b7dd5bd2a85929271852cdcdc7af2743a7acb6c26bddc0ac2bccab067f4
3
+ metadata.gz: 6da36a303dacdfc72388437e8e993607859fa1fc35bcf7c7937e73c0f85d71ba
4
+ data.tar.gz: a234265db298461f325be13515e56eeab110c08671ee976c30c59f57ed8b470e
5
5
  SHA512:
6
- metadata.gz: 6a4e8bd27a92224b7fbe74e5f0cafd11756c8b841029b6485837728cdcb79a1f1dd5dc3f55d669e8ae9d4ea55fc82f5cf75a40742f583e7ca76823c10b5abde7
7
- data.tar.gz: 8a9df17a77ae556b9bc799f4c9834d0a436bb54667bece8a799caaf6c13cb66b5c7e69fe0430e3c4a6913ad395e53d2e033f6d4d89ce5c810afe0fbe90220806
6
+ metadata.gz: eab70334fc493760f7b4f561067d0d3a447bae22b236cbe78926a6ba87aa4fe4e88ae5b0532582eddc14b2d570100cfa04b0b7e3412ca2626badedb659214063
7
+ data.tar.gz: d5ea3bf3bdb7c611b1ab988963f8916f575d14309443bf9fedb85872e347fc594cf64adebbea615acf4ffdbf4fac1bfabcc615570cc6ef35713029cb235e1f76
@@ -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 separatation of styles from content within your `axlsx` code. It gives you the ability to fill out a spreadsheet with data and apply styles later.
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
- # 1 => < style_hash >,
7
- # 2 => < style_hash >,
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(*args)
16
- style = args.first
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
- self.style_index ||= {}
17
+ if raw_style[:format_code]
18
+ raw_style.delete(:num_fmt)
19
+ end
19
20
 
20
- raw_style = {type: :xf, name: 'Arial', sz: 11, family: 1}.merge(style)
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
- index = style_index.key(raw_style)
26
- if !index
27
- index = super
28
- self.style_index[index] = raw_style
23
+ if !style_id
24
+ style_id = super
25
+
26
+ style_index[style_id] = raw_style
27
+ end
29
28
  end
30
- return index
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
- if styles.style_index && styles.style_index[cell.style]
23
- current_style = styles.style_index[cell.style]
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: true, sz: 14
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(cell_ref, *styles)
13
- item = self[cell_ref]
14
- cells = item.is_a?(Array) ? item : [item]
15
- cells.each do |cell|
16
- styles.each do |style|
17
- cell.add_style(style)
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
- def add_border(cell_ref, args = :all)
29
- cells = self[cell_ref]
30
- BorderCreator.new(self, cells, args).draw
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
@@ -1,3 +1,3 @@
1
1
  module AxlsxStyler
2
- VERSION = '1.0.0'
2
+ VERSION = '1.1.0'
3
3
  end
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -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
@@ -1,730 +1,1004 @@
1
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
2
-  (0.2ms) begin transaction
3
-  (0.1ms) commit transaction
4
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
1
+  (1.4ms) SELECT sqlite_version(*)
2
+  (7.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (3.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
4
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
7
5
   (0.1ms) begin transaction
8
-  (0.1ms) commit transaction
9
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2020-08-25 17:22:12.061266"], ["updated_at", "2020-08-25 17:22:12.061266"]]
7
+  (1.9ms) commit transaction
8
+  (0.1ms) SELECT sqlite_version(*)
9
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
10
+  (0.1ms) SELECT sqlite_version(*)
10
11
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
11
12
   (0.1ms) begin transaction
12
- -----------------------------------------
13
- ApplicationTest: test_adding_styled_cells
14
- -----------------------------------------
15
-  (0.1ms) rollback transaction
16
-  (0.1ms) begin transaction
17
- -----------------------------------
18
- ApplicationTest: test_can_add_style
19
- -----------------------------------
20
-  (0.1ms) rollback transaction
21
-  (0.2ms) begin transaction
22
- -------------------------
23
- SampleModelTest: test_foo
24
- -------------------------
25
-  (0.1ms) rollback transaction
26
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
27
-  (0.1ms) begin transaction
28
-  (0.0ms) commit transaction
29
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
30
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
31
-  (0.1ms) begin transaction
32
- -------------------------
33
- SampleModelTest: test_foo
34
- -------------------------
35
-  (0.0ms) rollback transaction
36
-  (0.1ms) begin transaction
37
- -----------------------------------------
38
- ApplicationTest: test_adding_styled_cells
39
- -----------------------------------------
40
-  (0.1ms) rollback transaction
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
+  (0.1ms) rollback transaction
22
+  (1.3ms) SELECT sqlite_version(*)
23
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
24
+  (0.1ms) SELECT sqlite_version(*)
25
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
26
+  (0.1ms) SELECT sqlite_version(*)
27
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
41
28
   (0.1ms) begin transaction
42
- -----------------------------------
43
- ApplicationTest: test_can_add_style
44
- -----------------------------------
45
-  (0.2ms) rollback transaction
46
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
38
+  (1.3ms) SELECT sqlite_version(*)
39
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
40
+  (0.1ms) SELECT sqlite_version(*)
41
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
42
+  (0.1ms) SELECT sqlite_version(*)
43
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47
44
   (0.1ms) begin transaction
48
-  (0.1ms) commit transaction
49
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
54
+  (1.3ms) SELECT sqlite_version(*)
55
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
56
+  (0.1ms) SELECT sqlite_version(*)
57
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
58
+  (0.3ms) SELECT sqlite_version(*)
50
59
   (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
51
60
   (0.1ms) begin transaction
52
61
  --------------------------
53
62
  ApplicationTest: test_xlsx
54
63
  --------------------------
55
- Started GET "/spreadsheet/xlsx" for 127.0.0.1 at 2018-07-03 23:18:31 -0700
56
- Processing by SpreadsheetsController#xlsx as HTML
57
- Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
59
-  (0.1ms) begin transaction
60
- -------------------------
61
- SampleModelTest: test_foo
62
- -------------------------
63
-  (0.0ms) rollback transaction
64
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
65
-  (0.2ms) begin transaction
66
-  (0.0ms) commit transaction
67
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
68
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
70
+  (1.1ms) SELECT sqlite_version(*)
71
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
72
+  (0.1ms) SELECT sqlite_version(*)
73
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
74
+  (0.2ms) SELECT sqlite_version(*)
75
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
69
76
   (0.1ms) begin transaction
70
77
  --------------------------
71
78
  ApplicationTest: test_xlsx
72
79
  --------------------------
73
- Started GET "/spreadsheet/xlsx" for 127.0.0.1 at 2018-07-03 23:19:27 -0700
74
-  (0.2ms) rollback transaction
75
-  (0.1ms) begin transaction
76
- -------------------------
77
- SampleModelTest: test_foo
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
   (0.1ms) rollback transaction
80
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
81
-  (0.1ms) begin transaction
82
-  (0.1ms) commit transaction
83
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
86
+  (1.2ms) SELECT sqlite_version(*)
87
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
88
+  (0.1ms) SELECT sqlite_version(*)
89
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
90
+  (0.1ms) SELECT sqlite_version(*)
84
91
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
85
92
   (0.1ms) begin transaction
86
- -------------------------
87
- SampleModelTest: test_foo
88
- -------------------------
89
-  (0.0ms) rollback transaction
90
-  (0.1ms) begin transaction
91
93
  --------------------------
92
94
  ApplicationTest: test_xlsx
93
95
  --------------------------
94
- Started GET "/spreadsheet/xlsx" for 127.0.0.1 at 2018-07-03 23:20:13 -0700
95
-  (0.1ms) rollback transaction
96
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
97
-  (0.2ms) begin transaction
98
-  (0.1ms) commit transaction
99
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
105
+  (1.2ms) SELECT sqlite_version(*)
106
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
107
+  (0.1ms) SELECT sqlite_version(*)
108
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
109
+  (0.1ms) SELECT sqlite_version(*)
100
110
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
101
111
   (0.1ms) begin transaction
102
112
  --------------------------
103
113
  ApplicationTest: test_xlsx
104
114
  --------------------------
105
- Started GET "/spreadsheet/xlsx" for 127.0.0.1 at 2018-07-03 23:21:56 -0700
106
-  (0.1ms) rollback transaction
107
-  (0.1ms) begin transaction
108
- -------------------------
109
- SampleModelTest: test_foo
110
- -------------------------
111
-  (0.0ms) rollback transaction
112
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
124
+  (1.3ms) SELECT sqlite_version(*)
125
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
126
+  (0.1ms) SELECT sqlite_version(*)
127
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
128
+  (0.1ms) SELECT sqlite_version(*)
129
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
113
130
   (0.1ms) begin transaction
114
-  (0.1ms) commit transaction
115
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
116
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
117
-  (0.2ms) begin transaction
118
131
  --------------------------
119
132
  ApplicationTest: test_xlsx
120
133
  --------------------------
121
- Started GET "/spreadsheet/xlsx" for 127.0.0.1 at 2018-07-03 23:22:10 -0700
122
- Processing by SpreadsheetsController#xlsx as HTML
123
- Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
124
-  (0.1ms) rollback transaction
125
-  (0.1ms) begin transaction
126
- -------------------------
127
- SampleModelTest: test_foo
128
- -------------------------
129
-  (0.1ms) rollback transaction
130
- ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
131
-  (0.1ms) begin transaction
132
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
143
+  (1.3ms) SELECT sqlite_version(*)
144
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
145
+  (0.1ms) SELECT sqlite_version(*)
146
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
147
+  (0.1ms) SELECT sqlite_version(*)
133
148
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
135
-  (0.1ms) begin transaction
136
- -------------------------
137
- SampleModelTest: test_foo
138
- -------------------------
139
-  (0.0ms) rollback transaction
140
149
   (0.1ms) begin transaction
141
150
  --------------------------
142
151
  ApplicationTest: test_xlsx
143
152
  --------------------------
144
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:24:58 -0700
145
- Processing by SpreadsheetsController#xlsx as
146
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
147
-  (0.1ms) rollback transaction
148
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
162
+  (1.3ms) SELECT sqlite_version(*)
163
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
164
+  (0.1ms) SELECT sqlite_version(*)
165
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
166
+  (0.1ms) SELECT sqlite_version(*)
167
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
149
168
   (0.1ms) begin transaction
150
-  (0.1ms) commit transaction
151
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
152
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
153
-  (0.2ms) begin transaction
154
169
  --------------------------
155
170
  ApplicationTest: test_xlsx
156
171
  --------------------------
157
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:27:16 -0700
158
- Processing by SpreadsheetsController#xlsx as XLSX
159
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
160
- Completed 204 No Content in 111ms (ActiveRecord: 0.0ms)
161
-  (0.1ms) rollback transaction
162
-  (0.1ms) begin transaction
163
- -------------------------
164
- SampleModelTest: test_foo
165
- -------------------------
166
-  (0.1ms) rollback transaction
167
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
168
-  (0.1ms) begin transaction
169
-  (0.0ms) commit transaction
170
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
171
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
181
+  (1.3ms) SELECT sqlite_version(*)
182
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
183
+  (0.1ms) SELECT sqlite_version(*)
184
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
185
+  (0.1ms) SELECT sqlite_version(*)
186
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
172
187
   (0.1ms) begin transaction
173
- -------------------------
174
- SampleModelTest: test_foo
175
- -------------------------
176
-  (0.0ms) rollback transaction
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
+  (0.1ms) rollback transaction
200
+  (1.5ms) SELECT sqlite_version(*)
201
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
202
+  (0.1ms) SELECT sqlite_version(*)
203
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
204
+  (0.1ms) SELECT sqlite_version(*)
205
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
177
206
   (0.1ms) begin transaction
178
207
  --------------------------
179
208
  ApplicationTest: test_xlsx
180
209
  --------------------------
181
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:28:23 -0700
182
- Processing by SpreadsheetsController#xlsx as XLSX
183
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
184
- Completed 204 No Content in 132ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
186
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
187
-  (0.1ms) begin transaction
188
-  (0.1ms) commit transaction
189
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
219
+  (1.2ms) SELECT sqlite_version(*)
220
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
221
+  (0.1ms) SELECT sqlite_version(*)
222
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
223
+  (0.1ms) SELECT sqlite_version(*)
190
224
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
191
225
   (0.1ms) begin transaction
192
226
  --------------------------
193
227
  ApplicationTest: test_xlsx
194
228
  --------------------------
195
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:30:06 -0700
196
- Processing by SpreadsheetsController#xlsx as XLSX
197
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
198
- Completed 204 No Content in 108ms (ActiveRecord: 0.0ms)
199
-  (0.1ms) rollback transaction
200
-  (0.1ms) begin transaction
201
- -------------------------
202
- SampleModelTest: test_foo
203
- -------------------------
204
-  (0.1ms) rollback transaction
205
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
238
+  (1.3ms) SELECT sqlite_version(*)
239
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
240
+  (0.1ms) SELECT sqlite_version(*)
241
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
242
+  (0.1ms) SELECT sqlite_version(*)
243
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
206
244
   (0.1ms) begin transaction
207
-  (0.1ms) commit transaction
208
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
209
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
210
-  (0.2ms) begin transaction
211
245
  --------------------------
212
246
  ApplicationTest: test_xlsx
213
247
  --------------------------
214
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:30:11 -0700
215
- Processing by SpreadsheetsController#xlsx as XLSX
216
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
217
- Completed 204 No Content in 116ms (ActiveRecord: 0.0ms)
218
-  (0.1ms) rollback transaction
219
-  (0.1ms) begin transaction
220
- -------------------------
221
- SampleModelTest: test_foo
222
- -------------------------
223
-  (0.1ms) rollback transaction
224
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
225
-  (0.1ms) begin transaction
226
-  (0.0ms) commit transaction
227
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
257
+  (1.6ms) SELECT sqlite_version(*)
258
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
259
+  (0.1ms) SELECT sqlite_version(*)
260
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
261
+  (0.2ms) SELECT sqlite_version(*)
228
262
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
229
263
   (0.1ms) begin transaction
230
- -------------------------
231
- SampleModelTest: test_foo
232
- -------------------------
233
-  (0.0ms) rollback transaction
234
-  (0.1ms) begin transaction
235
264
  --------------------------
236
265
  ApplicationTest: test_xlsx
237
266
  --------------------------
238
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:31:58 -0700
239
- Processing by SpreadsheetsController#xlsx as XLSX
240
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
241
- Completed 204 No Content in 124ms (ActiveRecord: 0.0ms)
242
-  (0.1ms) rollback transaction
243
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
276
+  (1.4ms) SELECT sqlite_version(*)
277
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
278
+  (0.1ms) SELECT sqlite_version(*)
279
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
280
+  (0.2ms) SELECT sqlite_version(*)
281
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
244
282
   (0.1ms) begin transaction
245
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
295
+  (1.3ms) SELECT sqlite_version(*)
296
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
297
+  (0.1ms) SELECT sqlite_version(*)
298
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
299
+  (0.1ms) SELECT sqlite_version(*)
246
300
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
247
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
248
-  (0.1ms) begin transaction
249
- -------------------------
250
- SampleModelTest: test_foo
251
- -------------------------
252
-  (0.1ms) rollback transaction
253
301
   (0.1ms) begin transaction
254
302
  --------------------------
255
303
  ApplicationTest: test_xlsx
256
304
  --------------------------
257
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:32:03 -0700
258
- Processing by SpreadsheetsController#xlsx as XLSX
259
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
260
- Completed 204 No Content in 106ms (ActiveRecord: 0.0ms)
261
-  (0.1ms) rollback transaction
262
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
314
+  (1.4ms) SELECT sqlite_version(*)
315
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
316
+  (0.1ms) SELECT sqlite_version(*)
317
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
318
+  (0.1ms) SELECT sqlite_version(*)
319
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
263
320
   (0.1ms) begin transaction
264
-  (0.0ms) commit transaction
265
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
266
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
267
-  (0.2ms) begin transaction
268
- -------------------------
269
- SampleModelTest: test_foo
270
- -------------------------
271
-  (0.1ms) rollback transaction
272
-  (0.0ms) begin transaction
273
321
  --------------------------
274
322
  ApplicationTest: test_xlsx
275
323
  --------------------------
276
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:36:13 -0700
277
- Processing by SpreadsheetsController#xlsx as XLSX
278
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
279
- Completed 204 No Content in 127ms (ActiveRecord: 0.0ms)
280
-  (0.1ms) rollback transaction
281
- ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
282
-  (0.3ms) begin transaction
283
-  (0.1ms) commit transaction
284
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
285
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
286
-  (0.1ms) begin transaction
287
- -------------------------
288
- SampleModelTest: test_foo
289
- -------------------------
290
-  (0.0ms) rollback transaction
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
+  (0.1ms) rollback transaction
330
+  (1.4ms) SELECT sqlite_version(*)
331
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
332
+  (0.1ms) SELECT sqlite_version(*)
333
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
334
+  (0.1ms) SELECT sqlite_version(*)
335
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
291
336
   (0.1ms) begin transaction
292
337
  --------------------------
293
338
  ApplicationTest: test_xlsx
294
339
  --------------------------
295
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:36:18 -0700
296
- Processing by SpreadsheetsController#xlsx as XLSX
297
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
298
- Completed 204 No Content in 122ms (ActiveRecord: 0.0ms)
299
-  (0.1ms) rollback transaction
300
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
301
-  (0.1ms) begin transaction
302
-  (0.1ms) commit transaction
303
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
349
+  (1.2ms) SELECT sqlite_version(*)
350
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
351
+  (0.1ms) SELECT sqlite_version(*)
352
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
353
+  (0.1ms) SELECT sqlite_version(*)
304
354
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
305
355
   (0.1ms) begin transaction
306
356
  --------------------------
307
357
  ApplicationTest: test_xlsx
308
358
  --------------------------
309
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:36:24 -0700
310
- Processing by SpreadsheetsController#xlsx as XLSX
311
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
312
- Completed 204 No Content in 137ms (ActiveRecord: 0.0ms)
313
-  (0.1ms) rollback transaction
314
-  (0.1ms) begin transaction
315
- -------------------------
316
- SampleModelTest: test_foo
317
- -------------------------
318
-  (0.1ms) rollback transaction
319
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
320
-  (0.1ms) begin transaction
321
-  (0.2ms) commit transaction
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
+  (0.1ms) rollback transaction
365
+  (1.4ms) SELECT sqlite_version(*)
366
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
367
+  (0.1ms) SELECT sqlite_version(*)
368
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
369
+  (0.1ms) SELECT sqlite_version(*)
322
370
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
323
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
324
-  (0.2ms) begin transaction
371
+  (0.1ms) begin transaction
325
372
  --------------------------
326
373
  ApplicationTest: test_xlsx
327
374
  --------------------------
328
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:41:17 -0700
329
- Processing by SpreadsheetsController#xlsx as XLSX
330
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
331
- Completed 204 No Content in 115ms (ActiveRecord: 0.0ms)
332
-  (0.1ms) rollback transaction
333
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
334
-  (0.1ms) begin transaction
335
-  (0.1ms) commit transaction
336
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
337
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
381
+  (1.3ms) SELECT sqlite_version(*)
382
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
383
+  (0.1ms) SELECT sqlite_version(*)
384
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
385
+  (0.1ms) SELECT sqlite_version(*)
386
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
338
387
   (0.1ms) begin transaction
339
388
  --------------------------
340
389
  ApplicationTest: test_xlsx
341
390
  --------------------------
342
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:47:13 -0700
343
- Processing by SpreadsheetsController#xlsx as XLSX
344
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
345
-  (0.1ms) rollback transaction
346
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
347
-  (0.1ms) begin transaction
348
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
400
+  (1.2ms) SELECT sqlite_version(*)
401
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
402
+  (0.1ms) SELECT sqlite_version(*)
403
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
404
+  (0.1ms) SELECT sqlite_version(*)
349
405
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
350
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
351
406
   (0.1ms) begin transaction
352
407
  --------------------------
353
408
  ApplicationTest: test_xlsx
354
409
  --------------------------
355
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:47:55 -0700
356
- Processing by SpreadsheetsController#xlsx as XLSX
357
- Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
358
-  (0.1ms) rollback transaction
359
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
360
-  (0.2ms) begin transaction
361
-  (0.2ms) commit transaction
362
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
363
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
419
+  (1.3ms) SELECT sqlite_version(*)
420
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
421
+  (0.1ms) SELECT sqlite_version(*)
422
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
423
+  (0.1ms) SELECT sqlite_version(*)
424
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
364
425
   (0.1ms) begin transaction
365
426
  --------------------------
366
427
  ApplicationTest: test_xlsx
367
428
  --------------------------
368
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:56:24 -0700
369
- Processing by SpreadsheetsController#xlsx as XLSX
370
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
371
- Completed 204 No Content in 123ms (ActiveRecord: 0.0ms)
372
-  (0.1ms) rollback transaction
373
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
438
+  (1.2ms) SELECT sqlite_version(*)
439
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
440
+  (0.1ms) SELECT sqlite_version(*)
441
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
442
+  (0.1ms) SELECT sqlite_version(*)
443
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
374
444
   (0.1ms) begin transaction
375
-  (0.0ms) commit transaction
376
-  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
377
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
378
-  (0.2ms) begin transaction
379
445
  --------------------------
380
446
  ApplicationTest: test_xlsx
381
447
  --------------------------
382
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:56:51 -0700
383
- Processing by SpreadsheetsController#xlsx as XLSX
384
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
385
- Completed 204 No Content in 112ms (ActiveRecord: 0.0ms)
386
-  (0.1ms) rollback transaction
387
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
388
-  (0.1ms) begin transaction
389
-  (0.0ms) commit transaction
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
+  (0.1ms) rollback transaction
457
+  (1.3ms) SELECT sqlite_version(*)
458
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
459
+  (0.1ms) SELECT sqlite_version(*)
460
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
461
+  (0.1ms) SELECT sqlite_version(*)
390
462
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
391
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
392
-  (0.2ms) begin transaction
463
+  (0.1ms) begin transaction
393
464
  --------------------------
394
465
  ApplicationTest: test_xlsx
395
466
  --------------------------
396
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:57:16 -0700
397
- Processing by SpreadsheetsController#xlsx as XLSX
398
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
399
- Completed 204 No Content in 118ms (ActiveRecord: 0.0ms)
400
-  (0.1ms) rollback transaction
401
- ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
402
-  (0.2ms) begin transaction
403
-  (0.1ms) commit transaction
404
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
476
+  (1.1ms) SELECT sqlite_version(*)
477
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
478
+  (0.1ms) SELECT sqlite_version(*)
479
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
480
+  (0.1ms) SELECT sqlite_version(*)
405
481
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
406
482
   (0.1ms) begin transaction
407
483
  --------------------------
408
484
  ApplicationTest: test_xlsx
409
485
  --------------------------
410
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-03 23:59:23 -0700
411
- Processing by SpreadsheetsController#xlsx as XLSX
412
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
413
- Completed 204 No Content in 133ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
415
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
416
-  (0.1ms) begin transaction
417
-  (0.1ms) commit transaction
418
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
495
+  (1.0ms) SELECT sqlite_version(*)
496
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
497
+  (0.1ms) SELECT sqlite_version(*)
498
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
499
+  (0.1ms) SELECT sqlite_version(*)
419
500
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
420
501
   (0.1ms) begin transaction
421
502
  --------------------------
422
503
  ApplicationTest: test_xlsx
423
504
  --------------------------
424
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:05:20 -0700
425
- Processing by SpreadsheetsController#xlsx as XLSX
426
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
427
- Completed 204 No Content in 128ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
429
- ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
430
-  (0.1ms) begin transaction
431
-  (0.0ms) commit transaction
432
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
514
+  (1.0ms) SELECT sqlite_version(*)
515
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
516
+  (0.1ms) SELECT sqlite_version(*)
517
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
518
+  (0.1ms) SELECT sqlite_version(*)
433
519
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
434
-  (0.2ms) begin transaction
520
+  (0.1ms) begin transaction
435
521
  --------------------------
436
522
  ApplicationTest: test_xlsx
437
523
  --------------------------
438
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:06:09 -0700
439
- Processing by SpreadsheetsController#xlsx as XLSX
440
- No template found for SpreadsheetsController#xlsx, rendering head :no_content
441
- Completed 204 No Content in 114ms (ActiveRecord: 0.0ms)
442
-  (0.1ms) rollback transaction
443
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
444
-  (0.2ms) begin transaction
445
-  (0.1ms) commit transaction
446
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
533
+  (1.3ms) SELECT sqlite_version(*)
534
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
535
+  (0.1ms) SELECT sqlite_version(*)
536
+  (1.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
537
+  (0.1ms) SELECT sqlite_version(*)
447
538
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
448
-  (0.2ms) begin transaction
539
+  (0.1ms) begin transaction
449
540
  --------------------------
450
541
  ApplicationTest: test_xlsx
451
542
  --------------------------
452
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:10:34 -0700
453
- Processing by SpreadsheetsController#xlsx as XLSX
454
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
456
- ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
457
-  (0.1ms) begin transaction
458
-  (0.1ms) commit transaction
459
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
460
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
552
+  (1.3ms) SELECT sqlite_version(*)
553
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
554
+  (0.1ms) SELECT sqlite_version(*)
555
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
556
+  (0.1ms) SELECT sqlite_version(*)
557
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
461
558
   (0.1ms) begin transaction
462
559
  --------------------------
463
560
  ApplicationTest: test_xlsx
464
561
  --------------------------
465
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:21:28 -0700
466
- Processing by SpreadsheetsController#xlsx as
467
- Completed 500 Internal Server Error in 61ms (ActiveRecord: 0.0ms)
468
-  (0.1ms) rollback transaction
469
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
571
+  (1.3ms) SELECT sqlite_version(*)
572
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
573
+  (0.1ms) SELECT sqlite_version(*)
574
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
575
+  (0.1ms) SELECT sqlite_version(*)
576
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
470
577
   (0.1ms) begin transaction
471
-  (0.1ms) commit transaction
472
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
473
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
474
-  (1.2ms) begin transaction
475
578
  --------------------------
476
579
  ApplicationTest: test_xlsx
477
580
  --------------------------
478
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:24:29 -0700
479
- Processing by SpreadsheetsController#xlsx as
480
- Completed 500 Internal Server Error in 59ms (ActiveRecord: 0.0ms)
481
-  (0.1ms) rollback transaction
482
- ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
483
-  (0.2ms) begin transaction
484
-  (0.1ms) commit transaction
485
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
486
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
590
+  (1.1ms) SELECT sqlite_version(*)
591
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
592
+  (0.1ms) SELECT sqlite_version(*)
593
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
594
+  (0.1ms) SELECT sqlite_version(*)
595
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
487
596
   (0.1ms) begin transaction
488
597
  --------------------------
489
598
  ApplicationTest: test_xlsx
490
599
  --------------------------
491
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2018-07-04 00:25:33 -0700
492
- Processing by SpreadsheetsController#xlsx as
493
- Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.0ms)
494
-  (0.1ms) rollback transaction
495
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
609
+  (1.2ms) SELECT sqlite_version(*)
610
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
611
+  (0.1ms) SELECT sqlite_version(*)
612
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
613
+  (0.1ms) SELECT sqlite_version(*)
614
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
496
615
   (0.1ms) begin transaction
497
-  (0.1ms) commit transaction
498
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
628
+  (1.2ms) SELECT sqlite_version(*)
629
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
630
+  (0.1ms) SELECT sqlite_version(*)
631
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
632
+  (0.1ms) SELECT sqlite_version(*)
499
633
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
500
634
   (0.1ms) begin transaction
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
   (0.1ms) rollback transaction
505
-  (0.2ms) SELECT sqlite_version(*)
506
-  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
507
-  (3.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
508
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
509
-  (0.1ms) begin transaction
510
- ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2020-01-25 16:55:20.010401"], ["updated_at", "2020-01-25 16:55:20.010401"]]
511
-  (0.9ms) commit transaction
512
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
647
+  (1.0ms) SELECT sqlite_version(*)
648
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
649
+  (0.1ms) SELECT sqlite_version(*)
650
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
651
+  (0.1ms) SELECT sqlite_version(*)
513
652
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
514
653
   (0.1ms) begin transaction
515
654
  --------------------------
516
655
  ApplicationTest: test_xlsx
517
656
  --------------------------
518
-  (0.1ms) rollback transaction
519
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
520
-  (0.1ms) begin transaction
521
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
666
+  (1.3ms) SELECT sqlite_version(*)
667
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
668
+  (0.1ms) SELECT sqlite_version(*)
669
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
670
+  (0.1ms) SELECT sqlite_version(*)
522
671
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
672
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
685
+  (1.3ms) SELECT sqlite_version(*)
686
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
687
+  (0.1ms) SELECT sqlite_version(*)
688
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
689
+  (0.1ms) SELECT sqlite_version(*)
523
690
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
524
691
   (0.1ms) begin transaction
525
692
  --------------------------
526
693
  ApplicationTest: test_xlsx
527
694
  --------------------------
528
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 08:56:04 -0800
529
- Processing by SpreadsheetsController#xlsx as
530
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
531
-  (0.1ms) rollback transaction
532
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
533
-  (0.1ms) begin transaction
534
-  (0.1ms) commit transaction
535
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
536
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
704
+  (1.3ms) SELECT sqlite_version(*)
705
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
706
+  (0.1ms) SELECT sqlite_version(*)
707
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
708
+  (0.1ms) SELECT sqlite_version(*)
709
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
537
710
   (0.1ms) begin transaction
538
711
  --------------------------
539
712
  ApplicationTest: test_xlsx
540
713
  --------------------------
541
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 08:59:29 -0800
542
- Processing by SpreadsheetsController#xlsx as
543
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
544
-  (0.1ms) rollback transaction
545
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
546
-  (0.1ms) begin transaction
547
-  (0.1ms) commit transaction
548
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
549
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
723
+  (1.3ms) SELECT sqlite_version(*)
724
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
725
+  (0.1ms) SELECT sqlite_version(*)
726
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
727
+  (0.1ms) SELECT sqlite_version(*)
728
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
550
729
   (0.1ms) begin transaction
551
730
  --------------------------
552
731
  ApplicationTest: test_xlsx
553
732
  --------------------------
554
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:00:32 -0800
555
- Processing by SpreadsheetsController#xlsx as
556
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
558
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
559
-  (0.1ms) begin transaction
560
-  (0.1ms) commit transaction
742
+  (1.3ms) SELECT sqlite_version(*)
743
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
744
+  (0.2ms) SELECT sqlite_version(*)
745
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
746
+  (0.1ms) SELECT sqlite_version(*)
561
747
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
748
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
761
+  (1.3ms) SELECT sqlite_version(*)
762
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
763
+  (0.1ms) SELECT sqlite_version(*)
764
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
765
+  (0.1ms) SELECT sqlite_version(*)
562
766
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
563
767
   (0.1ms) begin transaction
564
768
  --------------------------
565
769
  ApplicationTest: test_xlsx
566
770
  --------------------------
567
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:01:00 -0800
568
- Processing by SpreadsheetsController#xlsx as
569
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
570
-  (0.1ms) rollback transaction
571
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
777
+  (1.3ms) SELECT sqlite_version(*)
778
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
779
+  (0.1ms) SELECT sqlite_version(*)
780
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
781
+  (0.1ms) SELECT sqlite_version(*)
782
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
572
783
   (0.1ms) begin transaction
573
-  (0.1ms) commit transaction
574
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
796
+  (1.3ms) SELECT sqlite_version(*)
797
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
798
+  (0.1ms) SELECT sqlite_version(*)
799
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
800
+  (0.1ms) SELECT sqlite_version(*)
575
801
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
576
802
   (0.1ms) begin transaction
577
803
  --------------------------
578
804
  ApplicationTest: test_xlsx
579
805
  --------------------------
580
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:03:45 -0800
581
- Processing by SpreadsheetsController#xlsx as
582
- Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
584
- ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
585
-  (0.1ms) begin transaction
586
-  (0.1ms) commit transaction
587
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
815
+  (1.3ms) SELECT sqlite_version(*)
816
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
817
+  (0.1ms) SELECT sqlite_version(*)
818
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
819
+  (0.1ms) SELECT sqlite_version(*)
588
820
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
589
821
   (0.1ms) begin transaction
590
822
  --------------------------
591
823
  ApplicationTest: test_xlsx
592
824
  --------------------------
593
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:09:22 -0800
594
- Processing by SpreadsheetsController#xlsx as XLSX
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 (18.2ms)
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 (2.9ms)
600
- Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
601
-  (0.1ms) rollback transaction
602
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
603
-  (0.1ms) begin transaction
604
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
834
+  (1.2ms) SELECT sqlite_version(*)
835
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
836
+  (0.1ms) SELECT sqlite_version(*)
837
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
838
+  (0.1ms) SELECT sqlite_version(*)
605
839
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
606
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
607
840
   (0.1ms) begin transaction
608
841
  --------------------------
609
842
  ApplicationTest: test_xlsx
610
843
  --------------------------
611
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:09:56 -0800
612
- Processing by SpreadsheetsController#xlsx as XLSX
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 (21.0ms)
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 (2.2ms)
618
- Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction
620
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
621
-  (0.1ms) begin transaction
622
-  (0.1ms) commit transaction
623
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
853
+  (1.3ms) SELECT sqlite_version(*)
854
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
855
+  (0.1ms) SELECT sqlite_version(*)
856
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
857
+  (0.1ms) SELECT sqlite_version(*)
624
858
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
625
-  (0.2ms) begin transaction
859
+  (0.1ms) begin transaction
626
860
  --------------------------
627
861
  ApplicationTest: test_xlsx
628
862
  --------------------------
629
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:11:08 -0800
630
- Processing by SpreadsheetsController#xlsx as XLSX
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 (20.5ms)
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 (2.2ms)
636
- Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
637
-  (0.1ms) rollback transaction
638
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
639
-  (0.1ms) begin transaction
640
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
872
+  (1.1ms) SELECT sqlite_version(*)
873
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
874
+  (0.1ms) SELECT sqlite_version(*)
875
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
876
+  (0.1ms) SELECT sqlite_version(*)
641
877
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
642
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
643
-  (0.2ms) begin transaction
878
+  (0.1ms) begin transaction
644
879
  --------------------------
645
880
  ApplicationTest: test_xlsx
646
881
  --------------------------
647
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:11:28 -0800
648
- Processing by SpreadsheetsController#xlsx as XLSX
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 (23.7ms)
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 (1.9ms)
654
- Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms)
655
-  (0.1ms) rollback transaction
656
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
657
-  (0.1ms) begin transaction
658
-  (0.1ms) commit transaction
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
+  (0.1ms) rollback transaction
891
+  (1.3ms) SELECT sqlite_version(*)
892
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
893
+  (0.1ms) SELECT sqlite_version(*)
894
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
895
+  (0.1ms) SELECT sqlite_version(*)
659
896
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
660
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
661
897
   (0.1ms) begin transaction
662
898
  --------------------------
663
899
  ApplicationTest: test_xlsx
664
900
  --------------------------
665
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:11:52 -0800
666
- Processing by SpreadsheetsController#xlsx as XLSX
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 (16.3ms)
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 (1.8ms)
672
- Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.0ms)
673
-  (0.1ms) rollback transaction
674
- ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
675
-  (0.1ms) begin transaction
676
-  (0.1ms) commit transaction
677
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
910
+  (1.2ms) SELECT sqlite_version(*)
911
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
912
+  (0.1ms) SELECT sqlite_version(*)
913
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
914
+  (0.1ms) SELECT sqlite_version(*)
678
915
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
679
916
   (0.1ms) begin transaction
680
917
  --------------------------
681
918
  ApplicationTest: test_xlsx
682
919
  --------------------------
683
- Started GET "/spreadsheet/xlsx.xlsx" for 127.0.0.1 at 2020-01-25 09:12:37 -0800
684
- Processing by SpreadsheetsController#xlsx as XLSX
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 (37.9ms)
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 (2.3ms)
690
- Completed 200 OK in 50ms (Views: 49.8ms | ActiveRecord: 0.0ms)
691
-  (0.1ms) rollback transaction
692
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
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
+  (0.1ms) rollback transaction
929
+  (1.2ms) SELECT sqlite_version(*)
930
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
931
+  (0.1ms) SELECT sqlite_version(*)
932
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
933
+  (0.1ms) SELECT sqlite_version(*)
934
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
693
935
   (0.1ms) begin transaction
694
-  (0.1ms) commit transaction
695
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
948
+  (1.3ms) SELECT sqlite_version(*)
949
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
950
+  (0.1ms) SELECT sqlite_version(*)
951
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
952
+  (0.1ms) SELECT sqlite_version(*)
696
953
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
697
954
   (0.1ms) begin transaction
698
955
  --------------------------
699
956
  ApplicationTest: test_xlsx
700
957
  --------------------------
701
-  (0.1ms) rollback transaction
702
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
703
-  (0.1ms) begin transaction
704
-  (0.1ms) commit transaction
705
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
706
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
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
+  (0.1ms) rollback transaction
967
+  (1.0ms) SELECT sqlite_version(*)
968
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
969
+  (0.1ms) SELECT sqlite_version(*)
970
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
971
+  (0.1ms) SELECT sqlite_version(*)
972
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
707
973
   (0.1ms) begin transaction
708
974
  --------------------------
709
975
  ApplicationTest: test_xlsx
710
976
  --------------------------
711
- Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-01-25 09:15:57 -0800
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
   (0.1ms) rollback transaction
713
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
714
-  (0.1ms) begin transaction
715
-  (0.1ms) commit transaction
716
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
986
+  (1.0ms) SELECT sqlite_version(*)
987
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
988
+  (0.1ms) SELECT sqlite_version(*)
989
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
990
+  (0.1ms) SELECT sqlite_version(*)
717
991
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
718
-  (0.1ms) begin transaction
992
+  (0.9ms) begin transaction
719
993
  --------------------------
720
994
  ApplicationTest: test_xlsx
721
995
  --------------------------
722
- Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-01-25 09:16:46 -0800
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 (17.8ms)
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 (1.9ms)
729
- Completed 200 OK in 47ms (Views: 46.8ms | ActiveRecord: 0.0ms)
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
   (0.1ms) rollback transaction