axlsx_styler 0.1.5 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +23 -0
  3. data/README.md +50 -26
  4. data/Rakefile +18 -4
  5. data/lib/axlsx_styler.rb +4 -23
  6. data/lib/axlsx_styler/axlsx_cell.rb +32 -30
  7. data/lib/axlsx_styler/axlsx_package.rb +17 -0
  8. data/lib/axlsx_styler/axlsx_styles.rb +36 -0
  9. data/lib/axlsx_styler/axlsx_workbook.rb +26 -43
  10. data/lib/axlsx_styler/axlsx_worksheet.rb +34 -17
  11. data/lib/axlsx_styler/version.rb +1 -1
  12. data/test/dummy_app/Rakefile +7 -0
  13. data/test/dummy_app/app/assets/config/manifest.js +3 -0
  14. data/test/dummy_app/app/assets/javascripts/application.js +0 -0
  15. data/test/dummy_app/app/assets/stylesheets/application.css +3 -0
  16. data/test/dummy_app/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy_app/app/controllers/spreadsheets_controller.rb +7 -0
  18. data/test/dummy_app/app/models/application_record.rb +3 -0
  19. data/test/dummy_app/app/views/layouts/application.html.erb +14 -0
  20. data/{examples/colors_and_borders.rb → test/dummy_app/app/views/spreadsheets/test.xlsx.axlsx} +2 -7
  21. data/test/dummy_app/config.ru +4 -0
  22. data/test/dummy_app/config/application.rb +56 -0
  23. data/test/dummy_app/config/boot.rb +10 -0
  24. data/test/dummy_app/config/database.yml +25 -0
  25. data/test/dummy_app/config/environment.rb +5 -0
  26. data/test/dummy_app/config/environments/development.rb +30 -0
  27. data/test/dummy_app/config/environments/production.rb +60 -0
  28. data/test/dummy_app/config/environments/test.rb +41 -0
  29. data/test/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy_app/config/initializers/inflections.rb +10 -0
  31. data/test/dummy_app/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy_app/config/initializers/secret_token.rb +11 -0
  33. data/test/dummy_app/config/initializers/session_store.rb +8 -0
  34. data/test/dummy_app/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy_app/config/locales/en.yml +5 -0
  36. data/test/dummy_app/config/routes.rb +3 -0
  37. data/test/dummy_app/config/secrets.yml +22 -0
  38. data/test/dummy_app/db/schema.rb +15 -0
  39. data/test/dummy_app/db/test.sqlite3 +0 -0
  40. data/test/dummy_app/log/test.log +1004 -0
  41. data/test/helper_methods.rb +12 -0
  42. data/test/integration/application_test.rb +18 -0
  43. data/test/test_helper.rb +31 -4
  44. data/test/unit/borders_test.rb +127 -0
  45. data/test/unit/examples_test.rb +20 -0
  46. data/test/unit/merge_styles_test.rb +56 -0
  47. data/test/unit/regresssions_test.rb +44 -0
  48. data/test/unit/serialize_test.rb +34 -0
  49. data/test/unit/to_stream_test.rb +34 -0
  50. metadata +152 -47
  51. data/.gitignore +0 -24
  52. data/Gemfile +0 -4
  53. data/axlsx_styler.gemspec +0 -36
  54. data/examples/vanilla_axlsx.md +0 -70
  55. data/spreadsheet.png +0 -0
  56. data/test/cell_test.rb +0 -14
  57. data/test/integration_test.rb +0 -234
  58. data/test/workbook_test.rb +0 -10
@@ -1,3 +1,3 @@
1
1
  module AxlsxStyler
2
- VERSION = '0.1.5'
2
+ VERSION = '1.1.0'
3
3
  end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require_self
3
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,7 @@
1
+ class SpreadsheetsController < ApplicationController
2
+
3
+ def test
4
+ render xlsx: "test", layout: false
5
+ end
6
+
7
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy App</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -1,7 +1,4 @@
1
- require 'axlsx_styler'
2
-
3
- axlsx = Axlsx::Package.new
4
- workbook = axlsx.workbook
1
+ workbook = xlsx_package.workbook
5
2
  workbook.add_worksheet do |sheet|
6
3
  sheet.add_row
7
4
  sheet.add_row ['', 'Product', 'Category', 'Price']
@@ -17,7 +14,5 @@ workbook.add_worksheet do |sheet|
17
14
  sheet.add_style 'B3:D5', bg_color: 'E2F89C'
18
15
  sheet.add_style 'D3:D5', alignment: { horizontal: :left }
19
16
  sheet.add_border 'B2:D5'
20
- sheet.add_border 'B3:D3', [:top], :thick
17
+ sheet.add_border 'B3:D3', { edges: [:top], style: :thick }
21
18
  end
22
- workbook.apply_styles
23
- axlsx.serialize File.expand_path('../../tmp/grocery.xlsx', __FILE__)
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,56 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+
7
+ require 'axlsx_styler'
8
+
9
+ module Dummy
10
+ class Application < Rails::Application
11
+ # Settings in config/environments/* take precedence over those specified here.
12
+ # Application configuration should go into files in config/initializers
13
+ # -- all .rb files in that directory are automatically loaded.
14
+
15
+ # Custom directories with classes and modules you want to be autoloadable.
16
+ # config.autoload_paths += %W(#{config.root}/extras)
17
+
18
+ # Only load the plugins named here, in the order given (default is alphabetical).
19
+ # :all can be used as a placeholder for all plugins not explicitly named.
20
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
21
+
22
+ # Activate observers that should always be running.
23
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
24
+
25
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
26
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
27
+ # config.time_zone = 'Central Time (US & Canada)'
28
+
29
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
30
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
31
+ # config.i18n.default_locale = :de
32
+
33
+ # Configure the default encoding used in templates for Ruby 1.9.
34
+ config.encoding = "utf-8"
35
+
36
+ # Configure sensitive parameters which will be filtered from the log file.
37
+ config.filter_parameters += [:password]
38
+
39
+ # Enable the asset pipeline
40
+ config.assets.enabled = true
41
+
42
+ config.assets.quiet = true
43
+
44
+ # Version of your assets, change this if you want to expire all your assets
45
+ config.assets.version = '1.0'
46
+
47
+ config.generators.test_framework = false
48
+ config.generators.helper = false
49
+ config.generators.stylesheets = false
50
+ config.generators.javascripts = false
51
+
52
+ config.after_initialize do
53
+ ActiveRecord::Migration.migrate(Rails.root.join("db/migrate/*").to_s)
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,30 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+
28
+ # Expands the lines which load the assets
29
+ config.assets.debug = true
30
+ end
@@ -0,0 +1,60 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_files = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Use a different logger for distributed setups
37
+ # config.logger = SyslogLogger.new
38
+
39
+ # Use a different cache store in production
40
+ # config.cache_store = :mem_cache_store
41
+
42
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
+ # config.action_controller.asset_host = "http://assets.example.com"
44
+
45
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
+ # config.assets.precompile += %w( search.js )
47
+
48
+ # Disable delivery errors, bad email addresses will be ignored
49
+ # config.action_mailer.raise_delivery_errors = false
50
+
51
+ # Enable threaded mode
52
+ # config.threadsafe!
53
+
54
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
+ # the I18n.default_locale when a translation can not be found)
56
+ config.i18n.fallbacks = true
57
+
58
+ # Send deprecation notices to registered listeners
59
+ config.active_support.deprecation = :notify
60
+ end
@@ -0,0 +1,41 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_files = true
12
+ config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+
40
+ config.eager_load = false
41
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+
8
+ gem_version = ActiveRecord.gem_version
9
+ if gem_version <= Gem::Version.new("5.1")
10
+ Dummy::Application.config.secret_token = '4f337f0063fbb4a724dd8da15419679300da990ae4f6c94d36c714a3cd07e9653fc42d902cf33a9b9449a28e7eb2673f928172d65a090fa3c9156d6beea8d16c'
11
+ end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ get 'spreadsheets/test', to: 'spreadsheets#test'
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: d28054e102cd55dcd684cee239d31ddf1e1acd83bd879dd5f671e989f5c9d94ec1ede00e7fcf9b6bde4cd115f93c54e3ba6c5dc05d233292542f27a79706fcb4
15
+
16
+ test:
17
+ secret_key_base: 378b4f2309d4898f5170b41624e19bf60ce8a154ad87c100e8846bddcf4c28b72b533f2e73738ef8f6eabb7a773a0a0e7c32c0649916c5f280eb7ac621fc318c
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: 5e73c057b92f67f980fbea4c1c2c495b25def0048f8c1c040fed9c08f49cd50a2ebf872dd87857afc0861479e9382fceb7d9837a0bce546c2f7594e2f4da45e3
@@ -0,0 +1,15 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2018_07_03_234524) do
14
+
15
+ end
@@ -0,0 +1,1004 @@
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]]
5
+  (0.1ms) begin transaction
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(*)
11
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
12
+  (0.1ms) begin 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
28
+  (0.1ms) begin transaction
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
44
+  (0.1ms) begin transaction
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(*)
59
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
60
+  (0.1ms) begin transaction
61
+ --------------------------
62
+ ApplicationTest: test_xlsx
63
+ --------------------------
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)
69
+  (0.1ms) rollback transaction
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
76
+  (0.1ms) begin transaction
77
+ --------------------------
78
+ ApplicationTest: test_xlsx
79
+ --------------------------
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)
85
+  (0.1ms) rollback transaction
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(*)
91
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
92
+  (0.1ms) begin transaction
93
+ --------------------------
94
+ ApplicationTest: test_xlsx
95
+ --------------------------
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(*)
110
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
111
+  (0.1ms) begin transaction
112
+ --------------------------
113
+ ApplicationTest: test_xlsx
114
+ --------------------------
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
130
+  (0.1ms) begin transaction
131
+ --------------------------
132
+ ApplicationTest: test_xlsx
133
+ --------------------------
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(*)
148
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
149
+  (0.1ms) begin transaction
150
+ --------------------------
151
+ ApplicationTest: test_xlsx
152
+ --------------------------
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
168
+  (0.1ms) begin transaction
169
+ --------------------------
170
+ ApplicationTest: test_xlsx
171
+ --------------------------
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
187
+  (0.1ms) begin 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
206
+  (0.1ms) begin transaction
207
+ --------------------------
208
+ ApplicationTest: test_xlsx
209
+ --------------------------
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)
218
+  (0.1ms) rollback transaction
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(*)
224
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
225
+  (0.1ms) begin transaction
226
+ --------------------------
227
+ ApplicationTest: test_xlsx
228
+ --------------------------
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
244
+  (0.1ms) begin transaction
245
+ --------------------------
246
+ ApplicationTest: test_xlsx
247
+ --------------------------
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(*)
262
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
263
+  (0.1ms) begin transaction
264
+ --------------------------
265
+ ApplicationTest: test_xlsx
266
+ --------------------------
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
282
+  (0.1ms) begin 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(*)
300
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
301
+  (0.1ms) begin transaction
302
+ --------------------------
303
+ ApplicationTest: test_xlsx
304
+ --------------------------
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
320
+  (0.1ms) begin transaction
321
+ --------------------------
322
+ ApplicationTest: test_xlsx
323
+ --------------------------
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
336
+  (0.1ms) begin transaction
337
+ --------------------------
338
+ ApplicationTest: test_xlsx
339
+ --------------------------
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(*)
354
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
355
+  (0.1ms) begin transaction
356
+ --------------------------
357
+ ApplicationTest: test_xlsx
358
+ --------------------------
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(*)
370
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
371
+  (0.1ms) begin transaction
372
+ --------------------------
373
+ ApplicationTest: test_xlsx
374
+ --------------------------
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
387
+  (0.1ms) begin transaction
388
+ --------------------------
389
+ ApplicationTest: test_xlsx
390
+ --------------------------
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(*)
405
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
406
+  (0.1ms) begin transaction
407
+ --------------------------
408
+ ApplicationTest: test_xlsx
409
+ --------------------------
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
425
+  (0.1ms) begin transaction
426
+ --------------------------
427
+ ApplicationTest: test_xlsx
428
+ --------------------------
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
444
+  (0.1ms) begin transaction
445
+ --------------------------
446
+ ApplicationTest: test_xlsx
447
+ --------------------------
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(*)
462
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
463
+  (0.1ms) begin transaction
464
+ --------------------------
465
+ ApplicationTest: test_xlsx
466
+ --------------------------
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(*)
481
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
482
+  (0.1ms) begin transaction
483
+ --------------------------
484
+ ApplicationTest: test_xlsx
485
+ --------------------------
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)
494
+  (0.1ms) rollback transaction
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(*)
500
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
501
+  (0.1ms) begin transaction
502
+ --------------------------
503
+ ApplicationTest: test_xlsx
504
+ --------------------------
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)
513
+  (0.1ms) rollback transaction
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(*)
519
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
520
+  (0.1ms) begin transaction
521
+ --------------------------
522
+ ApplicationTest: test_xlsx
523
+ --------------------------
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(*)
538
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
539
+  (0.1ms) begin transaction
540
+ --------------------------
541
+ ApplicationTest: test_xlsx
542
+ --------------------------
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)
551
+  (0.1ms) rollback transaction
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
558
+  (0.1ms) begin transaction
559
+ --------------------------
560
+ ApplicationTest: test_xlsx
561
+ --------------------------
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
577
+  (0.1ms) begin transaction
578
+ --------------------------
579
+ ApplicationTest: test_xlsx
580
+ --------------------------
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
596
+  (0.1ms) begin transaction
597
+ --------------------------
598
+ ApplicationTest: test_xlsx
599
+ --------------------------
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
615
+  (0.1ms) begin transaction
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(*)
633
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
634
+  (0.1ms) begin transaction
635
+ --------------------------
636
+ ApplicationTest: test_xlsx
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)
646
+  (0.1ms) rollback transaction
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(*)
652
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
653
+  (0.1ms) begin transaction
654
+ --------------------------
655
+ ApplicationTest: test_xlsx
656
+ --------------------------
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(*)
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(*)
690
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
691
+  (0.1ms) begin transaction
692
+ --------------------------
693
+ ApplicationTest: test_xlsx
694
+ --------------------------
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
710
+  (0.1ms) begin transaction
711
+ --------------------------
712
+ ApplicationTest: test_xlsx
713
+ --------------------------
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
729
+  (0.1ms) begin transaction
730
+ --------------------------
731
+ ApplicationTest: test_xlsx
732
+ --------------------------
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)
741
+  (0.1ms) rollback 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(*)
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(*)
766
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
767
+  (0.1ms) begin transaction
768
+ --------------------------
769
+ ApplicationTest: test_xlsx
770
+ --------------------------
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
783
+  (0.1ms) begin transaction
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(*)
801
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
802
+  (0.1ms) begin transaction
803
+ --------------------------
804
+ ApplicationTest: test_xlsx
805
+ --------------------------
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)
814
+  (0.1ms) rollback transaction
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(*)
820
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
821
+  (0.1ms) begin transaction
822
+ --------------------------
823
+ ApplicationTest: test_xlsx
824
+ --------------------------
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
827
+ Rendering spreadsheets/test.xlsx.axlsx
828
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.6ms | Allocations: 13545)
829
+ Rendering text template
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(*)
839
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
840
+  (0.1ms) begin transaction
841
+ --------------------------
842
+ ApplicationTest: test_xlsx
843
+ --------------------------
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
846
+ Rendering spreadsheets/test.xlsx.axlsx
847
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 36.2ms | Allocations: 13397)
848
+ Rendering text template
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)
852
+  (0.1ms) rollback transaction
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(*)
858
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
859
+  (0.1ms) begin transaction
860
+ --------------------------
861
+ ApplicationTest: test_xlsx
862
+ --------------------------
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
865
+ Rendering spreadsheets/test.xlsx.axlsx
866
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.4ms | Allocations: 13400)
867
+ Rendering text template
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(*)
877
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
878
+  (0.1ms) begin transaction
879
+ --------------------------
880
+ ApplicationTest: test_xlsx
881
+ --------------------------
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
884
+ Rendering spreadsheets/test.xlsx.axlsx
885
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 13.7ms | Allocations: 13417)
886
+ Rendering text template
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(*)
896
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
897
+  (0.1ms) begin transaction
898
+ --------------------------
899
+ ApplicationTest: test_xlsx
900
+ --------------------------
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
903
+ Rendering spreadsheets/test.xlsx.axlsx
904
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 22.5ms | Allocations: 13396)
905
+ Rendering text template
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(*)
915
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
916
+  (0.1ms) begin transaction
917
+ --------------------------
918
+ ApplicationTest: test_xlsx
919
+ --------------------------
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
922
+ Rendering spreadsheets/test.xlsx.axlsx
923
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.2ms | Allocations: 13545)
924
+ Rendering text template
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
935
+  (0.1ms) begin transaction
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(*)
953
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
954
+  (0.1ms) begin transaction
955
+ --------------------------
956
+ ApplicationTest: test_xlsx
957
+ --------------------------
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
973
+  (0.1ms) begin transaction
974
+ --------------------------
975
+ ApplicationTest: test_xlsx
976
+ --------------------------
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)
985
+  (0.1ms) rollback transaction
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(*)
991
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
992
+  (0.9ms) begin transaction
993
+ --------------------------
994
+ ApplicationTest: test_xlsx
995
+ --------------------------
996
+ Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:09:20 -0700
997
+ Processing by SpreadsheetsController#test as XLSX
998
+ Rendering spreadsheets/test.xlsx.axlsx
999
+ Rendered spreadsheets/test.xlsx.axlsx (Duration: 34.7ms | Allocations: 13402)
1000
+ Rendering text template
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)
1004
+  (0.1ms) rollback transaction