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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +23 -0
- data/README.md +50 -26
- data/Rakefile +18 -4
- data/lib/axlsx_styler.rb +4 -23
- data/lib/axlsx_styler/axlsx_cell.rb +32 -30
- data/lib/axlsx_styler/axlsx_package.rb +17 -0
- data/lib/axlsx_styler/axlsx_styles.rb +36 -0
- data/lib/axlsx_styler/axlsx_workbook.rb +26 -43
- data/lib/axlsx_styler/axlsx_worksheet.rb +34 -17
- data/lib/axlsx_styler/version.rb +1 -1
- data/test/dummy_app/Rakefile +7 -0
- data/test/dummy_app/app/assets/config/manifest.js +3 -0
- data/test/dummy_app/app/assets/javascripts/application.js +0 -0
- data/test/dummy_app/app/assets/stylesheets/application.css +3 -0
- data/test/dummy_app/app/controllers/application_controller.rb +3 -0
- data/test/dummy_app/app/controllers/spreadsheets_controller.rb +7 -0
- data/test/dummy_app/app/models/application_record.rb +3 -0
- data/test/dummy_app/app/views/layouts/application.html.erb +14 -0
- data/{examples/colors_and_borders.rb → test/dummy_app/app/views/spreadsheets/test.xlsx.axlsx} +2 -7
- data/test/dummy_app/config.ru +4 -0
- data/test/dummy_app/config/application.rb +56 -0
- data/test/dummy_app/config/boot.rb +10 -0
- data/test/dummy_app/config/database.yml +25 -0
- data/test/dummy_app/config/environment.rb +5 -0
- data/test/dummy_app/config/environments/development.rb +30 -0
- data/test/dummy_app/config/environments/production.rb +60 -0
- data/test/dummy_app/config/environments/test.rb +41 -0
- data/test/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_app/config/initializers/inflections.rb +10 -0
- data/test/dummy_app/config/initializers/mime_types.rb +5 -0
- data/test/dummy_app/config/initializers/secret_token.rb +11 -0
- data/test/dummy_app/config/initializers/session_store.rb +8 -0
- data/test/dummy_app/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_app/config/locales/en.yml +5 -0
- data/test/dummy_app/config/routes.rb +3 -0
- data/test/dummy_app/config/secrets.yml +22 -0
- data/test/dummy_app/db/schema.rb +15 -0
- data/test/dummy_app/db/test.sqlite3 +0 -0
- data/test/dummy_app/log/test.log +1004 -0
- data/test/helper_methods.rb +12 -0
- data/test/integration/application_test.rb +18 -0
- data/test/test_helper.rb +31 -4
- data/test/unit/borders_test.rb +127 -0
- data/test/unit/examples_test.rb +20 -0
- data/test/unit/merge_styles_test.rb +56 -0
- data/test/unit/regresssions_test.rb +44 -0
- data/test/unit/serialize_test.rb +34 -0
- data/test/unit/to_stream_test.rb +34 -0
- metadata +152 -47
- data/.gitignore +0 -24
- data/Gemfile +0 -4
- data/axlsx_styler.gemspec +0 -36
- data/examples/vanilla_axlsx.md +0 -70
- data/spreadsheet.png +0 -0
- data/test/cell_test.rb +0 -14
- data/test/integration_test.rb +0 -234
- data/test/workbook_test.rb +0 -10
data/lib/axlsx_styler/version.rb
CHANGED
@@ -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
|
File without changes
|
data/{examples/colors_and_borders.rb → test/dummy_app/app/views/spreadsheets/test.xlsx.axlsx}
RENAMED
@@ -1,7 +1,4 @@
|
|
1
|
-
|
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,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,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,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,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,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
|
Binary file
|
@@ -0,0 +1,1004 @@
|
|
1
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (7.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
3
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
4
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
5
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
6
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-08-25 17:22:12.061266"], ["updated_at", "2020-08-25 17:22:12.061266"]]
|
7
|
+
[1m[35m (1.9ms)[0m [1m[36mcommit transaction[0m
|
8
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
9
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
10
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
11
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
12
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
13
|
+
--------------------------
|
14
|
+
ApplicationTest: test_xlsx
|
15
|
+
--------------------------
|
16
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:22:12 -0700
|
17
|
+
Processing by SpreadsheetsController#test as XLSX
|
18
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
19
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 8.5ms | Allocations: 3447)
|
20
|
+
Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms | Allocations: 4811)
|
21
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
22
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
23
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
24
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
25
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
26
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
28
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29
|
+
--------------------------
|
30
|
+
ApplicationTest: test_xlsx
|
31
|
+
--------------------------
|
32
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:41:05 -0700
|
33
|
+
Processing by SpreadsheetsController#test as XLSX
|
34
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
35
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 25.9ms | Allocations: 17009)
|
36
|
+
Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms | Allocations: 18373)
|
37
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
38
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
39
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
40
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
41
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
42
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
43
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
44
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
45
|
+
--------------------------
|
46
|
+
ApplicationTest: test_xlsx
|
47
|
+
--------------------------
|
48
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:43:12 -0700
|
49
|
+
Processing by SpreadsheetsController#test as XLSX
|
50
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
51
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 26.3ms | Allocations: 17008)
|
52
|
+
Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms | Allocations: 18372)
|
53
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
55
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
56
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
57
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
58
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
59
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
60
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
71
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
72
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
73
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
74
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
75
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
76
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
86
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
87
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
88
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
89
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
90
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
91
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
92
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
105
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
106
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
107
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
108
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
109
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
110
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
111
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
124
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
125
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
126
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
127
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
128
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
129
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
130
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
143
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
144
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
145
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
146
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
147
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
148
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
149
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
162
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
163
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
164
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
165
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
166
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
167
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
168
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
181
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
182
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
183
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
184
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
185
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
186
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
187
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
188
|
+
--------------------------
|
189
|
+
ApplicationTest: test_xlsx
|
190
|
+
--------------------------
|
191
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 10:56:58 -0700
|
192
|
+
Processing by SpreadsheetsController#test as XLSX
|
193
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
194
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.0ms | Allocations: 13416)
|
195
|
+
Rendering text template
|
196
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
197
|
+
Sent data test.xlsx (5.9ms)
|
198
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms | Allocations: 16867)
|
199
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
200
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
201
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
202
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
203
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
204
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
205
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
206
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
219
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
220
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
221
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
222
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
223
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
224
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
225
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
238
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
239
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
240
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
241
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
242
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
243
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
244
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
257
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
258
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
259
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
260
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
261
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
262
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
263
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
276
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
277
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
278
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
279
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
280
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
281
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
282
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
283
|
+
--------------------------
|
284
|
+
ApplicationTest: test_xlsx
|
285
|
+
--------------------------
|
286
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:09:32 -0700
|
287
|
+
Processing by SpreadsheetsController#test as XLSX
|
288
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
289
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 14.7ms | Allocations: 13426)
|
290
|
+
Rendering text template
|
291
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
292
|
+
Sent data test.xlsx (5.5ms)
|
293
|
+
Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms | Allocations: 16877)
|
294
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
295
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
296
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
297
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
298
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
299
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
300
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
301
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
314
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
315
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
316
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
317
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
318
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
319
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
320
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
330
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
331
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
332
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
333
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
334
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
335
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
336
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
349
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
350
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
351
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
352
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
353
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
354
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
355
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
365
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
366
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
367
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
368
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
369
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
370
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
371
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
381
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
382
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
383
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
384
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
385
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
386
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
387
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
400
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
401
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
402
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
403
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
404
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
405
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
406
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
419
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
420
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
421
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
422
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
423
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
424
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
425
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
438
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
439
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
440
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
441
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
442
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
443
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
444
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
457
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
458
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
459
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
460
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
461
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
462
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
463
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
476
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
477
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
478
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
479
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
480
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
481
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
482
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
495
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
496
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
497
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
498
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
499
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
500
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
501
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
514
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
515
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
516
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
517
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
518
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
519
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
520
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
533
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
534
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
535
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
536
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
537
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
538
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
539
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
552
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
553
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
554
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
555
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
556
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
557
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
558
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
571
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
572
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
573
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
574
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
575
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
576
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
577
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
590
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
591
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
592
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
593
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
594
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
595
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
596
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
609
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
610
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
611
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
612
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
613
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
614
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
615
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
616
|
+
--------------------------
|
617
|
+
ApplicationTest: test_xlsx
|
618
|
+
--------------------------
|
619
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:28:10 -0700
|
620
|
+
Processing by SpreadsheetsController#test as XLSX
|
621
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
622
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 15.5ms | Allocations: 13557)
|
623
|
+
Rendering text template
|
624
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
625
|
+
Sent data test.xlsx (5.8ms)
|
626
|
+
Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms | Allocations: 17009)
|
627
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
628
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
629
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
630
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
631
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
632
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
633
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
634
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
647
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
648
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
649
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
650
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
651
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
652
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
653
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
666
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
667
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
668
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
669
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
670
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
671
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
672
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
673
|
+
--------------------------
|
674
|
+
ApplicationTest: test_xlsx
|
675
|
+
--------------------------
|
676
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:30:51 -0700
|
677
|
+
Processing by SpreadsheetsController#test as XLSX
|
678
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
679
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 28.0ms | Allocations: 13403)
|
680
|
+
Rendering text template
|
681
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
682
|
+
Sent data test.xlsx (7.8ms)
|
683
|
+
Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms | Allocations: 16854)
|
684
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
685
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
686
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
687
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
688
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
689
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
690
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
691
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
704
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
705
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
706
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
707
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
708
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
709
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
710
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
723
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
724
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
725
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
726
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
727
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
728
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
729
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
742
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
743
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
744
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
745
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
746
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
747
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
748
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
749
|
+
--------------------------
|
750
|
+
ApplicationTest: test_xlsx
|
751
|
+
--------------------------
|
752
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:42:42 -0700
|
753
|
+
Processing by SpreadsheetsController#test as XLSX
|
754
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
755
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 16.0ms | Allocations: 13417)
|
756
|
+
Rendering text template
|
757
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
758
|
+
Sent data test.xlsx (6.2ms)
|
759
|
+
Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms | Allocations: 16868)
|
760
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
761
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
762
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
763
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
764
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
765
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
766
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
767
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
777
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
778
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
779
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
780
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
781
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
782
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
783
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
784
|
+
--------------------------
|
785
|
+
ApplicationTest: test_xlsx
|
786
|
+
--------------------------
|
787
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-25 11:47:54 -0700
|
788
|
+
Processing by SpreadsheetsController#test as XLSX
|
789
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
790
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 35.1ms | Allocations: 13393)
|
791
|
+
Rendering text template
|
792
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
793
|
+
Sent data test.xlsx (5.7ms)
|
794
|
+
Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.0ms | Allocations: 16845)
|
795
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
796
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
797
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
798
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
799
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
800
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
801
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
802
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
815
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
816
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
817
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
818
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
819
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
820
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
821
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
834
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
835
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
836
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
837
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
838
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
839
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
840
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
853
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
854
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
855
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
856
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
857
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
858
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
859
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
872
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
873
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
874
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
875
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
876
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
877
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
878
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
891
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
892
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
893
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
894
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
895
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
896
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
897
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
910
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
911
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
912
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
913
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
914
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
915
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
916
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
929
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
930
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
931
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
932
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
933
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
934
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
935
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
936
|
+
--------------------------
|
937
|
+
ApplicationTest: test_xlsx
|
938
|
+
--------------------------
|
939
|
+
Started GET "/spreadsheets/test.xlsx" for 127.0.0.1 at 2020-08-26 07:06:37 -0700
|
940
|
+
Processing by SpreadsheetsController#test as XLSX
|
941
|
+
Rendering spreadsheets/test.xlsx.axlsx
|
942
|
+
Rendered spreadsheets/test.xlsx.axlsx (Duration: 34.5ms | Allocations: 13397)
|
943
|
+
Rendering text template
|
944
|
+
Rendered text template (Duration: 0.0ms | Allocations: 1)
|
945
|
+
Sent data test.xlsx (5.8ms)
|
946
|
+
Completed 200 OK in 46ms (Views: 45.7ms | ActiveRecord: 0.0ms | Allocations: 16849)
|
947
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
948
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
949
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
950
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
951
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
952
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
953
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
954
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
967
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
968
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
969
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
970
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
971
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
972
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
973
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
986
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
987
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
988
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
989
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?[0m [["key", "schema_sha1"]]
|
990
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
991
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
992
|
+
[1m[35m (0.9ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|