spreadsheet_architect 2.0.2 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -26
  3. data/README.md +15 -15
  4. data/Rakefile +5 -3
  5. data/lib/spreadsheet_architect/class_methods/ods.rb +16 -2
  6. data/lib/spreadsheet_architect/monkey_patches/axlsx_column_width.rb +33 -3
  7. data/lib/spreadsheet_architect/utils/xlsx.rb +36 -18
  8. data/lib/spreadsheet_architect/version.rb +1 -1
  9. data/test/custom_assertions.rb +21 -0
  10. data/test/{rails_app → dummy_app}/Rakefile +3 -2
  11. data/test/{rails_app/public/apple-touch-icon-precomposed.png → dummy_app/app/assets/javascripts/application.js} +0 -0
  12. data/test/dummy_app/app/assets/stylesheets/application.css +3 -0
  13. data/test/{rails_app → dummy_app}/app/controllers/application_controller.rb +1 -1
  14. data/test/{rails_app → dummy_app}/app/controllers/spreadsheets_controller.rb +0 -0
  15. data/test/{rails_app → dummy_app}/app/models/active_model_object.rb +0 -0
  16. data/test/{rails_app → dummy_app}/app/models/application_record.rb +0 -0
  17. data/test/{rails_app → dummy_app}/app/models/bad_plain_ruby_object.rb +0 -0
  18. data/test/{rails_app → dummy_app}/app/models/custom_post.rb +2 -2
  19. data/test/{rails_app → dummy_app}/app/models/plain_ruby_object.rb +0 -0
  20. data/test/{rails_app → dummy_app}/app/models/post.rb +0 -0
  21. data/test/dummy_app/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy_app/app/views/reports/sample.html.erb +1 -0
  23. data/test/dummy_app/config.ru +4 -0
  24. data/test/dummy_app/config/application.rb +69 -0
  25. data/test/dummy_app/config/boot.rb +10 -0
  26. data/test/dummy_app/config/database.yml +25 -0
  27. data/test/dummy_app/config/environment.rb +5 -0
  28. data/test/dummy_app/config/environments/development.rb +30 -0
  29. data/test/dummy_app/config/environments/production.rb +60 -0
  30. data/test/dummy_app/config/environments/test.rb +41 -0
  31. data/test/{rails_app → dummy_app}/config/initializers/backtrace_silencers.rb +0 -0
  32. data/test/dummy_app/config/initializers/inflections.rb +10 -0
  33. data/test/{rails_app → dummy_app}/config/initializers/mime_types.rb +1 -0
  34. data/test/dummy_app/config/initializers/secret_token.rb +11 -0
  35. data/test/dummy_app/config/initializers/session_store.rb +8 -0
  36. data/test/dummy_app/config/initializers/spreadsheet_architect.rb +11 -0
  37. data/test/{rails_app → dummy_app}/config/initializers/wrap_parameters.rb +5 -5
  38. data/test/dummy_app/config/locales/en.yml +5 -0
  39. data/test/{rails_app → dummy_app}/config/routes.rb +1 -1
  40. data/test/{rails_app → dummy_app}/config/secrets.yml +4 -4
  41. data/test/{rails_app → dummy_app}/db/migrate/20170103234524_add_posts.rb +0 -0
  42. data/test/{rails_app → dummy_app}/db/schema.rb +4 -4
  43. data/test/{rails_app → dummy_app}/db/test.sqlite3 +0 -0
  44. data/test/dummy_app/log/development.log +28 -0
  45. data/test/dummy_app/log/test.log +24564 -0
  46. data/test/dummy_app/tmp/active_model_object/csv.csv +21 -0
  47. data/test/dummy_app/tmp/active_model_object/ods.ods +0 -0
  48. data/test/dummy_app/tmp/active_model_object/xlsx.xlsx +0 -0
  49. data/test/dummy_app/tmp/custom_posts/csv.csv +6 -0
  50. data/test/dummy_app/tmp/custom_posts/empty.xlsx +0 -0
  51. data/test/dummy_app/tmp/custom_posts/ods.ods +0 -0
  52. data/test/dummy_app/tmp/custom_posts/xlsx.xlsx +0 -0
  53. data/test/{rails_app → dummy_app}/tmp/empty_model.csv +0 -0
  54. data/test/dummy_app/tmp/empty_model.xlsx +0 -0
  55. data/test/{rails_app → dummy_app}/tmp/empty_sa.csv +0 -0
  56. data/test/dummy_app/tmp/empty_sa.xlsx +0 -0
  57. data/test/dummy_app/tmp/extreme.xlsx +0 -0
  58. data/test/dummy_app/tmp/integration_tests/alt_xlsx.xlsx +0 -0
  59. data/test/dummy_app/tmp/integration_tests/csv.csv +6 -0
  60. data/test/dummy_app/tmp/integration_tests/ods.ods +0 -0
  61. data/test/dummy_app/tmp/integration_tests/xlsx.xlsx +0 -0
  62. data/test/dummy_app/tmp/model.csv +6 -0
  63. data/test/dummy_app/tmp/model.xlsx +0 -0
  64. data/test/dummy_app/tmp/ods/empty_model.ods +0 -0
  65. data/test/{rails_app → dummy_app}/tmp/ods/empty_sa.ods +0 -0
  66. data/test/dummy_app/tmp/ods/model.ods +0 -0
  67. data/test/dummy_app/tmp/ods/model_options.ods +0 -0
  68. data/test/dummy_app/tmp/ods/sa.ods +0 -0
  69. data/test/dummy_app/tmp/options.csv +6 -0
  70. data/test/dummy_app/tmp/plain_ruby_object/csv.csv +4 -0
  71. data/test/dummy_app/tmp/plain_ruby_object/ods.ods +0 -0
  72. data/test/dummy_app/tmp/plain_ruby_object/xlsx.xlsx +0 -0
  73. data/test/dummy_app/tmp/posts/csv.csv +6 -0
  74. data/test/dummy_app/tmp/posts/empty.xlsx +0 -0
  75. data/test/dummy_app/tmp/posts/ods.ods +0 -0
  76. data/test/dummy_app/tmp/posts/xlsx.xlsx +0 -0
  77. data/test/{rails_app → dummy_app}/tmp/sa.csv +0 -0
  78. data/test/dummy_app/tmp/sa.xlsx +0 -0
  79. data/test/integration/application_test.rb +49 -0
  80. data/test/{rails_app/test/models → models}/active_model_object_test.rb +1 -4
  81. data/test/{rails_app/test/models → models}/bad_plain_ruby_object_test.rb +0 -2
  82. data/test/{rails_app/test/models → models}/csv_test.rb +5 -6
  83. data/test/{rails_app/test/models → models}/custom_post_test.rb +0 -3
  84. data/test/{rails_app/test/models → models}/ods_test.rb +6 -9
  85. data/test/{rails_app/test/models → models}/plain_ruby_object_test.rb +1 -4
  86. data/test/{rails_app/test/models → models}/post_test.rb +1 -4
  87. data/test/{rails_app/test/models → models}/spreadsheet_architect_utils_test.rb +0 -1
  88. data/test/{rails_app/test/models → models}/xlsx_test.rb +6 -7
  89. data/test/spreadsheet_architect_test.rb +11 -0
  90. data/test/test_helper.rb +35 -0
  91. metadata +186 -228
  92. data/test/rails_app/Gemfile +0 -17
  93. data/test/rails_app/Gemfile.lock +0 -176
  94. data/test/rails_app/README.md +0 -24
  95. data/test/rails_app/app/assets/config/manifest.js +0 -3
  96. data/test/rails_app/app/assets/javascripts/application.js +0 -16
  97. data/test/rails_app/app/assets/javascripts/cable.js +0 -13
  98. data/test/rails_app/app/assets/stylesheets/application.css +0 -15
  99. data/test/rails_app/app/channels/application_cable/channel.rb +0 -4
  100. data/test/rails_app/app/channels/application_cable/connection.rb +0 -4
  101. data/test/rails_app/app/helpers/application_helper.rb +0 -2
  102. data/test/rails_app/app/jobs/application_job.rb +0 -2
  103. data/test/rails_app/app/mailers/application_mailer.rb +0 -4
  104. data/test/rails_app/app/views/layouts/application.html.erb +0 -14
  105. data/test/rails_app/app/views/layouts/mailer.html.erb +0 -13
  106. data/test/rails_app/app/views/layouts/mailer.text.erb +0 -1
  107. data/test/rails_app/bin/bundle +0 -3
  108. data/test/rails_app/bin/rails +0 -9
  109. data/test/rails_app/bin/rake +0 -9
  110. data/test/rails_app/bin/setup +0 -34
  111. data/test/rails_app/bin/spring +0 -16
  112. data/test/rails_app/bin/update +0 -29
  113. data/test/rails_app/config.ru +0 -5
  114. data/test/rails_app/config/application.rb +0 -15
  115. data/test/rails_app/config/boot.rb +0 -3
  116. data/test/rails_app/config/cable.yml +0 -9
  117. data/test/rails_app/config/database.yml +0 -16
  118. data/test/rails_app/config/environment.rb +0 -5
  119. data/test/rails_app/config/environments/development.rb +0 -54
  120. data/test/rails_app/config/environments/production.rb +0 -86
  121. data/test/rails_app/config/environments/test.rb +0 -42
  122. data/test/rails_app/config/initializers/application_controller_renderer.rb +0 -6
  123. data/test/rails_app/config/initializers/assets.rb +0 -11
  124. data/test/rails_app/config/initializers/cookies_serializer.rb +0 -5
  125. data/test/rails_app/config/initializers/filter_parameter_logging.rb +0 -4
  126. data/test/rails_app/config/initializers/inflections.rb +0 -16
  127. data/test/rails_app/config/initializers/new_framework_defaults.rb +0 -24
  128. data/test/rails_app/config/initializers/session_store.rb +0 -3
  129. data/test/rails_app/config/locales/en.yml +0 -23
  130. data/test/rails_app/db/development.sqlite3 +0 -0
  131. data/test/rails_app/db/seeds.rb +0 -7
  132. data/test/rails_app/log/development.log +0 -1195
  133. data/test/rails_app/log/test.log +0 -55339
  134. data/test/rails_app/public/404.html +0 -67
  135. data/test/rails_app/public/422.html +0 -67
  136. data/test/rails_app/public/500.html +0 -66
  137. data/test/rails_app/public/apple-touch-icon.png +0 -0
  138. data/test/rails_app/public/favicon.ico +0 -0
  139. data/test/rails_app/public/robots.txt +0 -5
  140. data/test/rails_app/test/controllers/spreadsheets_controller_test.rb +0 -46
  141. data/test/rails_app/test/test_helper.rb +0 -21
  142. data/test/rails_app/tmp/active_model_object/csv.csv +0 -21
  143. data/test/rails_app/tmp/active_model_object/ods.ods +0 -0
  144. data/test/rails_app/tmp/active_model_object/xlsx.xlsx +0 -0
  145. data/test/rails_app/tmp/controller_tests/alt_xlsx.xlsx +0 -0
  146. data/test/rails_app/tmp/controller_tests/csv.csv +0 -1
  147. data/test/rails_app/tmp/controller_tests/ods.ods +0 -0
  148. data/test/rails_app/tmp/controller_tests/xlsx.xlsx +0 -0
  149. data/test/rails_app/tmp/custom_posts/csv.csv +0 -1
  150. data/test/rails_app/tmp/custom_posts/empty.xlsx +0 -0
  151. data/test/rails_app/tmp/custom_posts/ods.ods +0 -0
  152. data/test/rails_app/tmp/custom_posts/xlsx.xlsx +0 -0
  153. data/test/rails_app/tmp/empty_model.xlsx +0 -0
  154. data/test/rails_app/tmp/empty_sa.xlsx +0 -0
  155. data/test/rails_app/tmp/extreme.xlsx +0 -0
  156. data/test/rails_app/tmp/model.csv +0 -1
  157. data/test/rails_app/tmp/model.xlsx +0 -0
  158. data/test/rails_app/tmp/ods/empty_model.ods +0 -0
  159. data/test/rails_app/tmp/ods/model.ods +0 -0
  160. data/test/rails_app/tmp/ods/model_options.ods +0 -0
  161. data/test/rails_app/tmp/ods/sa.ods +0 -0
  162. data/test/rails_app/tmp/options.csv +0 -1
  163. data/test/rails_app/tmp/plain_ruby_object/csv.csv +0 -4
  164. data/test/rails_app/tmp/plain_ruby_object/ods.ods +0 -0
  165. data/test/rails_app/tmp/plain_ruby_object/xlsx.xlsx +0 -0
  166. data/test/rails_app/tmp/posts/csv.csv +0 -1
  167. data/test/rails_app/tmp/posts/empty.xlsx +0 -0
  168. data/test/rails_app/tmp/posts/ods.ods +0 -0
  169. data/test/rails_app/tmp/posts/xlsx.xlsx +0 -0
  170. data/test/rails_app/tmp/sa.xlsx +0 -0
@@ -1,15 +0,0 @@
1
- require_relative 'boot'
2
-
3
- require 'rails/all'
4
-
5
- # Require the gems listed in Gemfile, including any gems
6
- # you've limited to :test, :development, or :production.
7
- Bundler.require(*Rails.groups)
8
-
9
- module RailsApp
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
- end
15
- end
@@ -1,3 +0,0 @@
1
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2
-
3
- require 'bundler/setup' # Set up gems listed in the Gemfile.
@@ -1,9 +0,0 @@
1
- development:
2
- adapter: async
3
-
4
- test:
5
- adapter: async
6
-
7
- production:
8
- adapter: redis
9
- url: redis://localhost:6379/1
@@ -1,16 +0,0 @@
1
- default: &default
2
- adapter: sqlite3
3
- pool: 5
4
- timeout: 5000
5
-
6
- development:
7
- <<: *default
8
- database: db/development.sqlite3
9
-
10
- test:
11
- <<: *default
12
- database: db/test.sqlite3
13
-
14
- production:
15
- <<: *default
16
- database: db/production.sqlite3
@@ -1,5 +0,0 @@
1
- # Load the Rails application.
2
- require_relative 'application'
3
-
4
- # Initialize the Rails application.
5
- Rails.application.initialize!
@@ -1,54 +0,0 @@
1
- Rails.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
- # Do not eager load code on boot.
10
- config.eager_load = false
11
-
12
- # Show full error reports.
13
- config.consider_all_requests_local = true
14
-
15
- # Enable/disable caching. By default caching is disabled.
16
- if Rails.root.join('tmp/caching-dev.txt').exist?
17
- config.action_controller.perform_caching = true
18
-
19
- config.cache_store = :memory_store
20
- config.public_file_server.headers = {
21
- 'Cache-Control' => 'public, max-age=172800'
22
- }
23
- else
24
- config.action_controller.perform_caching = false
25
-
26
- config.cache_store = :null_store
27
- end
28
-
29
- # Don't care if the mailer can't send.
30
- config.action_mailer.raise_delivery_errors = false
31
-
32
- config.action_mailer.perform_caching = false
33
-
34
- # Print deprecation notices to the Rails logger.
35
- config.active_support.deprecation = :log
36
-
37
- # Raise an error on page load if there are pending migrations.
38
- config.active_record.migration_error = :page_load
39
-
40
- # Debug mode disables concatenation and preprocessing of assets.
41
- # This option may cause significant delays in view rendering with a large
42
- # number of complex assets.
43
- config.assets.debug = true
44
-
45
- # Suppress logger output for asset requests.
46
- config.assets.quiet = true
47
-
48
- # Raises error for missing translations
49
- # config.action_view.raise_on_missing_translations = true
50
-
51
- # Use an evented file watcher to asynchronously detect changes in source code,
52
- # routes, locales, etc. This feature depends on the listen gem.
53
- config.file_watcher = ActiveSupport::EventedFileUpdateChecker
54
- end
@@ -1,86 +0,0 @@
1
- Rails.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
- # Eager load code on boot. This eager loads most of Rails and
8
- # your application in memory, allowing both threaded web servers
9
- # and those relying on copy on write to perform better.
10
- # Rake tasks automatically ignore this option for performance.
11
- config.eager_load = true
12
-
13
- # Full error reports are disabled and caching is turned on.
14
- config.consider_all_requests_local = false
15
- config.action_controller.perform_caching = true
16
-
17
- # Disable serving static files from the `/public` folder by default since
18
- # Apache or NGINX already handles this.
19
- config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
20
-
21
- # Compress JavaScripts and CSS.
22
- config.assets.js_compressor = :uglifier
23
- # config.assets.css_compressor = :sass
24
-
25
- # Do not fallback to assets pipeline if a precompiled asset is missed.
26
- config.assets.compile = false
27
-
28
- # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
29
-
30
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
31
- # config.action_controller.asset_host = 'http://assets.example.com'
32
-
33
- # Specifies the header that your server uses for sending files.
34
- # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
35
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
36
-
37
- # Mount Action Cable outside main process or domain
38
- # config.action_cable.mount_path = nil
39
- # config.action_cable.url = 'wss://example.com/cable'
40
- # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
41
-
42
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
- # config.force_ssl = true
44
-
45
- # Use the lowest log level to ensure availability of diagnostic information
46
- # when problems arise.
47
- config.log_level = :debug
48
-
49
- # Prepend all log lines with the following tags.
50
- config.log_tags = [ :request_id ]
51
-
52
- # Use a different cache store in production.
53
- # config.cache_store = :mem_cache_store
54
-
55
- # Use a real queuing backend for Active Job (and separate queues per environment)
56
- # config.active_job.queue_adapter = :resque
57
- # config.active_job.queue_name_prefix = "rails_app_#{Rails.env}"
58
- config.action_mailer.perform_caching = false
59
-
60
- # Ignore bad email addresses and do not raise email delivery errors.
61
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
62
- # config.action_mailer.raise_delivery_errors = false
63
-
64
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
65
- # the I18n.default_locale when a translation cannot be found).
66
- config.i18n.fallbacks = true
67
-
68
- # Send deprecation notices to registered listeners.
69
- config.active_support.deprecation = :notify
70
-
71
- # Use default logging formatter so that PID and timestamp are not suppressed.
72
- config.log_formatter = ::Logger::Formatter.new
73
-
74
- # Use a different logger for distributed setups.
75
- # require 'syslog/logger'
76
- # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
77
-
78
- if ENV["RAILS_LOG_TO_STDOUT"].present?
79
- logger = ActiveSupport::Logger.new(STDOUT)
80
- logger.formatter = config.log_formatter
81
- config.logger = ActiveSupport::TaggedLogging.new(logger)
82
- end
83
-
84
- # Do not dump schema after migrations.
85
- config.active_record.dump_schema_after_migration = false
86
- end
@@ -1,42 +0,0 @@
1
- Rails.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
- # Do not eager load code on boot. This avoids loading your whole application
11
- # just for the purpose of running a single test. If you are using a tool that
12
- # preloads Rails for running tests, you may have to set it to true.
13
- config.eager_load = false
14
-
15
- # Configure public file server for tests with Cache-Control for performance.
16
- config.public_file_server.enabled = true
17
- config.public_file_server.headers = {
18
- 'Cache-Control' => 'public, max-age=3600'
19
- }
20
-
21
- # Show full error reports and disable caching.
22
- config.consider_all_requests_local = true
23
- config.action_controller.perform_caching = false
24
-
25
- # Raise exceptions instead of rendering exception templates.
26
- config.action_dispatch.show_exceptions = false
27
-
28
- # Disable request forgery protection in test environment.
29
- config.action_controller.allow_forgery_protection = false
30
- config.action_mailer.perform_caching = false
31
-
32
- # Tell Action Mailer not to deliver emails to the real world.
33
- # The :test delivery method accumulates sent emails in the
34
- # ActionMailer::Base.deliveries array.
35
- config.action_mailer.delivery_method = :test
36
-
37
- # Print deprecation notices to the stderr.
38
- config.active_support.deprecation = :stderr
39
-
40
- # Raises error for missing translations
41
- # config.action_view.raise_on_missing_translations = true
42
- end
@@ -1,6 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # ApplicationController.renderer.defaults.merge!(
4
- # http_host: 'example.org',
5
- # https: false
6
- # )
@@ -1,11 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Version of your assets, change this if you want to expire all your assets.
4
- Rails.application.config.assets.version = '1.0'
5
-
6
- # Add additional assets to the asset load path
7
- # Rails.application.config.assets.paths << Emoji.images_path
8
-
9
- # Precompile additional assets.
10
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
- # Rails.application.config.assets.precompile += %w( search.js )
@@ -1,5 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Specify a serializer for the signed and encrypted cookie jars.
4
- # Valid options are :json, :marshal, and :hybrid.
5
- Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -1,4 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Configure sensitive parameters which will be filtered from the log file.
4
- Rails.application.config.filter_parameters += [:password]
@@ -1,16 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format. Inflections
4
- # are locale specific, and you may define rules for as many different
5
- # locales as you wish. All of these examples are active by default:
6
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
- # inflect.plural /^(ox)$/i, '\1en'
8
- # inflect.singular /^(ox)en/i, '\1'
9
- # inflect.irregular 'person', 'people'
10
- # inflect.uncountable %w( fish sheep )
11
- # end
12
-
13
- # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
- # inflect.acronym 'RESTful'
16
- # end
@@ -1,24 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
- #
3
- # This file contains migration options to ease your Rails 5.0 upgrade.
4
- #
5
- # Read the Rails 5.0 release notes for more info on each option.
6
-
7
- # Enable per-form CSRF tokens. Previous versions had false.
8
- Rails.application.config.action_controller.per_form_csrf_tokens = true
9
-
10
- # Enable origin-checking CSRF mitigation. Previous versions had false.
11
- Rails.application.config.action_controller.forgery_protection_origin_check = true
12
-
13
- # Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
14
- # Previous versions had false.
15
- ActiveSupport.to_time_preserves_timezone = true
16
-
17
- # Require `belongs_to` associations by default. Previous versions had false.
18
- Rails.application.config.active_record.belongs_to_required_by_default = true
19
-
20
- # Do not halt callback chains when a callback returns false. Previous versions had true.
21
- ActiveSupport.halt_callback_chains_on_return_false = false
22
-
23
- # Configure SSL options to enable HSTS with subdomains. Previous versions had false.
24
- Rails.application.config.ssl_options = { hsts: { subdomains: true } }
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_rails_app_session'
@@ -1,23 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
- en:
23
- hello: "Hello world"
@@ -1,7 +0,0 @@
1
- # This file should contain all the record creation needed to seed the database with its default values.
2
- # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
- #
4
- # Examples:
5
- #
6
- # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
- # Character.create(name: 'Luke', movie: movies.first)
@@ -1,1195 +0,0 @@
1
- Post Load (0.4ms) SELECT "posts".* FROM "posts"
2
-  (10.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
-  (6.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to AddPosts (20170103234524)
6
-  (0.1ms) begin transaction
7
-  (0.0ms) rollback transaction
8
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
- Migrating to AddPosts (20170103234524)
10
-  (0.0ms) begin transaction
11
-  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "content" text, "age" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170103234524"]]
13
-  (10.9ms) commit transaction
14
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
15
-  (0.1ms) begin transaction
16
- SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2017-01-03 23:46:05 UTC], ["updated_at", 2017-01-03 23:46:05 UTC]]
17
-  (5.2ms) commit transaction
18
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
20
- Post Load (0.2ms) SELECT "posts".* FROM "posts"
21
- Post Load (1.0ms) SELECT "posts".* FROM "posts"
22
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
23
-  (0.0ms) begin transaction
24
- SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2017-01-04 00:01:24 UTC], ["updated_at", 2017-01-04 00:01:24 UTC]]
25
-  (11.8ms) commit transaction
26
- Post Load (0.2ms) SELECT "posts".* FROM "posts"
27
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
28
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
29
-  (0.3ms) SELECT COUNT(*) FROM "posts"
30
- SQL (13.5ms) DELETE FROM "posts"
31
- Post Load (0.2ms) SELECT "posts".* FROM "posts"
32
- Post Load (1.2ms) SELECT "posts".* FROM "posts"
33
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
34
- Post Load (1.1ms) SELECT "posts".* FROM "posts"
35
-  (0.4ms) SELECT COUNT(*) FROM "posts"
36
- Post Load (0.2ms) SELECT "posts".* FROM "posts"
37
-  (0.1ms) begin transaction
38
- SQL (2.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2017-01-04 00:49:56 UTC], ["updated_at", 2017-01-04 00:49:56 UTC]]
39
-  (4.7ms) commit transaction
40
-  (0.1ms) SELECT COUNT(*) FROM "posts"
41
- Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT ? [["LIMIT", 1]]
42
- SQL (9.2ms) UPDATE "posts" SET "name" = 'asd' WHERE "posts"."id" = ? [["id", 2]]
43
-  (0.1ms) SELECT COUNT(*) FROM "posts"
44
- Post Load (0.4ms) SELECT "posts".* FROM "posts"
45
- Started GET "/" for 127.0.0.1 at 2017-01-25 21:45:04 -0800
46
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
- Processing by Rails::WelcomeController#index as HTML
48
- Parameters: {"internal"=>true}
49
- Rendering /Users/weston/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.1/lib/rails/templates/rails/welcome/index.html.erb
50
- Rendered /Users/weston/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.1/lib/rails/templates/rails/welcome/index.html.erb (6.1ms)
51
- Completed 200 OK in 20ms (Views: 14.2ms | ActiveRecord: 0.0ms)
52
-
53
-
54
- Started GET "/test" for 127.0.0.1 at 2017-01-25 21:47:21 -0800
55
- Processing by SpreadsheetsController#test_xlsx as HTML
56
- Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
57
-
58
-
59
-
60
- NoMethodError - undefined method `row' for nil:NilClass:
61
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
62
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
63
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
64
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:141:in `block (2 levels) in to_axlsx_package'
65
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `each'
66
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
67
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
68
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
69
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
70
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
71
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
72
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
73
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
74
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
75
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
76
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
77
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
78
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
79
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
80
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
81
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
82
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
83
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
84
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
85
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
86
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
87
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
88
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
89
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
90
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
91
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
92
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
93
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
94
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
95
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
96
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
97
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
98
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
99
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
100
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
101
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
102
- rack (2.0.1) lib/rack/head.rb:12:in `call'
103
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
104
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
105
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
106
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
107
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
108
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
109
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
110
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
111
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
112
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
113
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
114
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
115
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
116
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
117
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
118
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
119
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
120
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
121
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
122
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
123
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
124
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
125
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
126
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
127
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
128
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
129
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
130
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
131
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
132
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
133
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
134
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
135
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
136
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
137
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
138
-
139
- Started POST "/__better_errors/19567023a41d1529/variables" for 127.0.0.1 at 2017-01-25 21:47:21 -0800
140
- Started POST "/__better_errors/19567023a41d1529/variables" for 127.0.0.1 at 2017-01-25 21:47:31 -0800
141
- Started POST "/__better_errors/19567023a41d1529/variables" for 127.0.0.1 at 2017-01-25 21:47:47 -0800
142
- Started POST "/__better_errors/19567023a41d1529/variables" for 127.0.0.1 at 2017-01-25 21:47:48 -0800
143
- Started POST "/__better_errors/19567023a41d1529/variables" for 127.0.0.1 at 2017-01-25 21:47:51 -0800
144
- Started GET "/test" for 127.0.0.1 at 2017-01-25 21:49:05 -0800
145
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
146
- Processing by SpreadsheetsController#test_xlsx as HTML
147
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
148
-
149
-
150
-
151
- NoMethodError - undefined method `row' for nil:NilClass:
152
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
153
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
154
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
155
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:141:in `block (2 levels) in to_axlsx_package'
156
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
157
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
158
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
159
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
160
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
161
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
162
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
163
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
164
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
165
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
166
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
167
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
168
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
169
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
170
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
171
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
172
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
173
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
174
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
175
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
176
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
177
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
178
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
179
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
180
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
181
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
182
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
183
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
184
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
185
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
186
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
187
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
188
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
189
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
190
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
191
- rack (2.0.1) lib/rack/head.rb:12:in `call'
192
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
193
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
194
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
195
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
196
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
197
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
198
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
199
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
200
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
201
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
202
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
203
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
204
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
205
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
206
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
207
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
208
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
209
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
210
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
211
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
212
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
213
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
214
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
215
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
216
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
217
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
218
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
219
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
220
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
221
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
222
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
223
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
224
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
225
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
226
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
227
-
228
- Started POST "/__better_errors/2955c60c5e5ad4cf/variables" for 127.0.0.1 at 2017-01-25 21:49:06 -0800
229
- Started POST "/__better_errors/2955c60c5e5ad4cf/variables" for 127.0.0.1 at 2017-01-25 21:49:10 -0800
230
- Started POST "/__better_errors/2955c60c5e5ad4cf/variables" for 127.0.0.1 at 2017-01-25 21:49:13 -0800
231
- Started POST "/__better_errors/2955c60c5e5ad4cf/eval" for 127.0.0.1 at 2017-01-25 21:49:26 -0800
232
- Started POST "/__better_errors/2955c60c5e5ad4cf/eval" for 127.0.0.1 at 2017-01-25 21:51:37 -0800
233
- Started GET "/test" for 127.0.0.1 at 2017-01-25 21:53:17 -0800
234
- Processing by SpreadsheetsController#test_xlsx as HTML
235
- Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
236
-
237
-
238
-
239
- NoMethodError - undefined method `row' for nil:NilClass:
240
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
241
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
242
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:14:in `add_style'
243
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:171:in `block (2 levels) in to_axlsx_package'
244
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:168:in `block in to_axlsx_package'
245
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
246
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
247
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
248
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
249
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
250
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
251
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
252
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
253
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
254
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
255
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
256
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
257
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
258
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
259
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
260
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
261
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
262
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
263
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
264
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
265
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
266
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
267
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
268
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
269
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
270
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
271
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
272
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
273
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
274
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
275
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
276
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
277
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
278
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
279
- rack (2.0.1) lib/rack/head.rb:12:in `call'
280
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
281
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
282
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
283
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
284
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
285
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
286
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
287
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
288
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
289
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
290
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
291
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
292
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
293
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
294
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
295
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
296
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
297
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
298
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
299
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
300
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
301
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
302
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
303
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
304
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
305
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
306
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
307
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
308
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
309
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
310
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
311
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
312
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
313
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
314
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
315
-
316
- Started POST "/__better_errors/89e09c69b4f17fb6/variables" for 127.0.0.1 at 2017-01-25 21:53:17 -0800
317
- Started GET "/test" for 127.0.0.1 at 2017-01-25 21:53:25 -0800
318
- Processing by SpreadsheetsController#test_xlsx as HTML
319
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
320
-
321
-
322
-
323
- NoMethodError - undefined method `row' for nil:NilClass:
324
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
325
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
326
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
327
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:141:in `block (2 levels) in to_axlsx_package'
328
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
329
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
330
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
331
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
332
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
333
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
334
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
335
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
336
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
337
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
338
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
339
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
340
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
341
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
342
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
343
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
344
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
345
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
346
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
347
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
348
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
349
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
350
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
351
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
352
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
353
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
354
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
355
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
356
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
357
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
358
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
359
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
360
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
361
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
362
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
363
- rack (2.0.1) lib/rack/head.rb:12:in `call'
364
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
365
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
366
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
367
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
368
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
369
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
370
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
371
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
372
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
373
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
374
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
375
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
376
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
377
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
378
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
379
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
380
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
381
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
382
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
383
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
384
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
385
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
386
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
387
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
388
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
389
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
390
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
391
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
392
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
393
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
394
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
395
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
396
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
397
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
398
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
399
-
400
- Started POST "/__better_errors/302862c35cc2d5ae/variables" for 127.0.0.1 at 2017-01-25 21:53:25 -0800
401
- Started POST "/__better_errors/302862c35cc2d5ae/variables" for 127.0.0.1 at 2017-01-25 21:53:30 -0800
402
- Started POST "/__better_errors/302862c35cc2d5ae/eval" for 127.0.0.1 at 2017-01-25 21:53:38 -0800
403
- Started GET "/test" for 127.0.0.1 at 2017-01-25 21:53:53 -0800
404
- Processing by SpreadsheetsController#test_xlsx as HTML
405
- Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
406
-
407
-
408
-
409
- NoMethodError - undefined method `row' for nil:NilClass:
410
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
411
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
412
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
413
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:141:in `block (2 levels) in to_axlsx_package'
414
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
415
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
416
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
417
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
418
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
419
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
420
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
421
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
422
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
423
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
424
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
425
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
426
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
427
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
428
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
429
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
430
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
431
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
432
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
433
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
434
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
435
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
436
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
437
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
438
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
439
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
440
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
441
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
442
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
443
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
444
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
445
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
446
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
447
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
448
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
449
- rack (2.0.1) lib/rack/head.rb:12:in `call'
450
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
451
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
452
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
453
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
454
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
455
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
456
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
457
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
458
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
459
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
460
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
461
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
462
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
463
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
464
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
465
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
466
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
467
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
468
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
469
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
470
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
471
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
472
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
473
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
474
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
475
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
476
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
477
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
478
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
479
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
480
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
481
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
482
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
483
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
484
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
485
-
486
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:53:53 -0800
487
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:53:57 -0800
488
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:54:04 -0800
489
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:55:52 -0800
490
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:55:58 -0800
491
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:56:08 -0800
492
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:56:13 -0800
493
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:56:17 -0800
494
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:56:54 -0800
495
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:57:09 -0800
496
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:57:45 -0800
497
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:57:56 -0800
498
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:58:09 -0800
499
- Started POST "/__better_errors/d0a5552a11d0950d/variables" for 127.0.0.1 at 2017-01-25 21:58:38 -0800
500
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:58:55 -0800
501
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:58:59 -0800
502
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:59:51 -0800
503
- Started POST "/__better_errors/d0a5552a11d0950d/eval" for 127.0.0.1 at 2017-01-25 21:59:58 -0800
504
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:00:44 -0800
505
- Processing by SpreadsheetsController#test_xlsx as HTML
506
- Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
507
-
508
-
509
-
510
- NoMethodError - undefined method `row' for nil:NilClass:
511
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
512
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
513
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
514
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:141:in `block (2 levels) in to_axlsx_package'
515
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
516
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
517
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
518
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
519
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
520
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
521
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
522
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
523
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
524
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
525
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
526
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
527
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
528
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
529
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
530
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
531
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
532
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
533
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
534
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
535
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
536
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
537
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
538
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
539
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
540
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
541
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
542
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
543
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
544
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
545
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
546
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
547
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
548
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
549
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
550
- rack (2.0.1) lib/rack/head.rb:12:in `call'
551
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
552
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
553
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
554
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
555
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
556
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
557
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
558
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
559
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
560
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
561
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
562
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
563
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
564
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
565
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
566
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
567
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
568
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
569
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
570
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
571
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
572
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
573
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
574
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
575
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
576
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
577
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
578
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
579
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
580
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
581
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
582
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
583
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
584
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
585
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
586
-
587
- Started POST "/__better_errors/01bfd65479af5c7b/variables" for 127.0.0.1 at 2017-01-25 22:00:44 -0800
588
- Started POST "/__better_errors/01bfd65479af5c7b/variables" for 127.0.0.1 at 2017-01-25 22:00:49 -0800
589
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:01:24 -0800
590
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
591
- Processing by SpreadsheetsController#test_xlsx as HTML
592
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
593
-
594
-
595
-
596
- NoMethodError - undefined method `row' for nil:NilClass:
597
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
598
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
599
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
600
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:134:in `block (2 levels) in to_axlsx_package'
601
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
602
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
603
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
604
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
605
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
606
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
607
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
608
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
609
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
610
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
611
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
612
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
613
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
614
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
615
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
616
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
617
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
618
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
619
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
620
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
621
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
622
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
623
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
624
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
625
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
626
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
627
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
628
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
629
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
630
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
631
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
632
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
633
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
634
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
635
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
636
- rack (2.0.1) lib/rack/head.rb:12:in `call'
637
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
638
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
639
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
640
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
641
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
642
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
643
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
644
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
645
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
646
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
647
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
648
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
649
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
650
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
651
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
652
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
653
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
654
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
655
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
656
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
657
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
658
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
659
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
660
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
661
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
662
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
663
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
664
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
665
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
666
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
667
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
668
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
669
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
670
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
671
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
672
-
673
- Started POST "/__better_errors/3f771dfcd63b3f6f/variables" for 127.0.0.1 at 2017-01-25 22:01:25 -0800
674
- Started POST "/__better_errors/3f771dfcd63b3f6f/variables" for 127.0.0.1 at 2017-01-25 22:01:29 -0800
675
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:11:19 -0800
676
- Processing by SpreadsheetsController#test_xlsx as HTML
677
- Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms)
678
-
679
-
680
-
681
- NoMethodError - undefined method `row' for nil:NilClass:
682
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
683
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
684
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:14:in `add_style'
685
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:171:in `block (2 levels) in to_axlsx_package'
686
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:168:in `block in to_axlsx_package'
687
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
688
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
689
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
690
- app/controllers/spreadsheets_controller.rb:64:in `test_xlsx'
691
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
692
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
693
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
694
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
695
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
696
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
697
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
698
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
699
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
700
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
701
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
702
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
703
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
704
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
705
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
706
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
707
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
708
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
709
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
710
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
711
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
712
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
713
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
714
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
715
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
716
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
717
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
718
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
719
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
720
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
721
- rack (2.0.1) lib/rack/head.rb:12:in `call'
722
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
723
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
724
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
725
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
726
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
727
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
728
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
729
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
730
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
731
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
732
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
733
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
734
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
735
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
736
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
737
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
738
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
739
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
740
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
741
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
742
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
743
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
744
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
745
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
746
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
747
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
748
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
749
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
750
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
751
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
752
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
753
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
754
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
755
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
756
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
757
-
758
- Started POST "/__better_errors/7009908a9192ec77/variables" for 127.0.0.1 at 2017-01-25 22:11:19 -0800
759
- Started POST "/__better_errors/7009908a9192ec77/variables" for 127.0.0.1 at 2017-01-25 22:11:24 -0800
760
- Started POST "/__better_errors/7009908a9192ec77/eval" for 127.0.0.1 at 2017-01-25 22:11:42 -0800
761
- Started POST "/__better_errors/7009908a9192ec77/eval" for 127.0.0.1 at 2017-01-25 22:11:51 -0800
762
- Started POST "/__better_errors/7009908a9192ec77/eval" for 127.0.0.1 at 2017-01-25 22:12:07 -0800
763
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:12:25 -0800
764
- Processing by SpreadsheetsController#test_xlsx as HTML
765
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
766
-
767
-
768
-
769
- NoMethodError - undefined method `row' for nil:NilClass:
770
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
771
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
772
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
773
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:112:in `block (2 levels) in to_axlsx_package'
774
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
775
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
776
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
777
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
778
- app/controllers/spreadsheets_controller.rb:62:in `test_xlsx'
779
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
780
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
781
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
782
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
783
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
784
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
785
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
786
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
787
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
788
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
789
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
790
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
791
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
792
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
793
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
794
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
795
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
796
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
797
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
798
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
799
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
800
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
801
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
802
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
803
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
804
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
805
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
806
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
807
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
808
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
809
- rack (2.0.1) lib/rack/head.rb:12:in `call'
810
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
811
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
812
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
813
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
814
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
815
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
816
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
817
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
818
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
819
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
820
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
821
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
822
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
823
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
824
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
825
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
826
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
827
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
828
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
829
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
830
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
831
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
832
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
833
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
834
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
835
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
836
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
837
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
838
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
839
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
840
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
841
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
842
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
843
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
844
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
845
-
846
- Started POST "/__better_errors/20da4c8fb39cbf21/variables" for 127.0.0.1 at 2017-01-25 22:12:26 -0800
847
- Started POST "/__better_errors/20da4c8fb39cbf21/eval" for 127.0.0.1 at 2017-01-25 22:12:36 -0800
848
- Started POST "/__better_errors/20da4c8fb39cbf21/eval" for 127.0.0.1 at 2017-01-25 22:12:45 -0800
849
- Started POST "/__better_errors/20da4c8fb39cbf21/eval" for 127.0.0.1 at 2017-01-25 22:12:48 -0800
850
- Started POST "/__better_errors/20da4c8fb39cbf21/variables" for 127.0.0.1 at 2017-01-25 22:12:54 -0800
851
- Started POST "/__better_errors/20da4c8fb39cbf21/variables" for 127.0.0.1 at 2017-01-25 22:14:05 -0800
852
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:14:06 -0800
853
- Processing by SpreadsheetsController#test_xlsx as HTML
854
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
855
-
856
-
857
-
858
- NoMethodError - undefined method `row' for nil:NilClass:
859
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
860
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
861
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
862
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:112:in `block (2 levels) in to_axlsx_package'
863
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
864
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
865
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
866
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
867
- app/controllers/spreadsheets_controller.rb:62:in `test_xlsx'
868
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
869
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
870
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
871
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
872
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
873
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
874
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
875
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
876
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
877
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
878
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
879
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
880
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
881
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
882
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
883
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
884
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
885
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
886
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
887
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
888
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
889
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
890
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
891
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
892
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
893
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
894
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
895
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
896
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
897
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
898
- rack (2.0.1) lib/rack/head.rb:12:in `call'
899
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
900
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
901
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
902
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
903
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
904
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
905
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
906
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
907
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
908
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
909
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
910
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
911
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
912
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
913
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
914
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
915
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
916
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
917
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
918
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
919
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
920
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
921
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
922
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
923
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
924
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
925
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
926
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
927
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
928
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
929
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
930
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
931
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
932
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
933
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
934
-
935
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:14:28 -0800
936
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
937
- Processing by SpreadsheetsController#test_xlsx as HTML
938
- Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.0ms)
939
-
940
-
941
-
942
- NoMethodError - undefined method `row' for nil:NilClass:
943
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
944
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
945
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
946
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:112:in `block (2 levels) in to_axlsx_package'
947
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
948
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
949
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
950
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
951
- app/controllers/spreadsheets_controller.rb:62:in `test_xlsx'
952
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
953
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
954
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
955
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
956
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
957
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
958
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
959
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
960
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
961
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
962
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
963
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
964
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
965
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
966
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
967
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
968
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
969
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
970
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
971
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
972
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
973
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
974
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
975
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
976
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
977
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
978
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
979
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
980
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
981
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
982
- rack (2.0.1) lib/rack/head.rb:12:in `call'
983
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
984
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
985
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
986
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
987
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
988
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
989
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
990
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
991
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
992
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
993
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
994
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
995
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
996
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
997
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
998
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
999
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
1000
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
1001
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
1002
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1003
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
1004
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
1005
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
1006
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1007
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1008
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1009
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1010
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
1011
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
1012
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1013
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
1014
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1015
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1016
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1017
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1018
-
1019
- Started POST "/__better_errors/66d4db1230364d81/variables" for 127.0.0.1 at 2017-01-25 22:14:29 -0800
1020
- Started POST "/__better_errors/66d4db1230364d81/variables" for 127.0.0.1 at 2017-01-25 22:14:31 -0800
1021
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:15:57 -0800
1022
- Processing by SpreadsheetsController#test_xlsx as HTML
1023
- Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms)
1024
-
1025
-
1026
-
1027
- NoMethodError - undefined method `row' for nil:NilClass:
1028
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
1029
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
1030
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
1031
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:131:in `block (3 levels) in to_axlsx_package'
1032
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:130:in `block (2 levels) in to_axlsx_package'
1033
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
1034
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
1035
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
1036
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
1037
- app/controllers/spreadsheets_controller.rb:62:in `test_xlsx'
1038
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1039
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
1040
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
1041
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1042
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
1043
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1044
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
1045
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1046
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1047
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
1048
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1049
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
1050
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1051
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
1052
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1053
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
1054
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1055
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1056
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1057
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
1058
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
1059
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
1060
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
1061
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1062
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1063
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1064
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
1065
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
1066
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1067
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1068
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1069
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1070
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1071
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1072
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
1073
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1074
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1075
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1076
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
1077
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1078
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
1079
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1080
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
1081
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
1082
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
1083
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1084
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1085
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
1086
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
1087
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
1088
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1089
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
1090
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
1091
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
1092
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1093
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1094
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1095
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1096
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
1097
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
1098
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1099
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
1100
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1101
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1102
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1103
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1104
-
1105
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:15:58 -0800
1106
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:12 -0800
1107
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:13 -0800
1108
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:15 -0800
1109
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:18 -0800
1110
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:19 -0800
1111
- Started POST "/__better_errors/064bce692f9ac74f/variables" for 127.0.0.1 at 2017-01-25 22:16:21 -0800
1112
- Started GET "/test" for 127.0.0.1 at 2017-01-25 22:16:51 -0800
1113
- Processing by SpreadsheetsController#test_xlsx as HTML
1114
- Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms)
1115
-
1116
-
1117
-
1118
- NoMethodError - undefined method `row' for nil:NilClass:
1119
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:698:in `range'
1120
- axlsx (2.0.1) lib/axlsx/workbook/worksheet/worksheet.rb:615:in `[]'
1121
- axlsx_styler (0.1.7) lib/axlsx_styler/axlsx_worksheet.rb:30:in `add_border'
1122
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:131:in `block (3 levels) in to_axlsx_package'
1123
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:130:in `block (2 levels) in to_axlsx_package'
1124
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:94:in `block in to_axlsx_package'
1125
- axlsx (2.0.1) lib/axlsx/workbook/workbook.rb:262:in `add_worksheet'
1126
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:25:in `to_axlsx_package'
1127
- /Users/weston/html/open_source/spreadsheet_architect/lib/spreadsheet_architect/class_methods/xlsx.rb:9:in `to_xlsx'
1128
- app/controllers/spreadsheets_controller.rb:62:in `test_xlsx'
1129
- actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1130
- actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action'
1131
- actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
1132
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1133
- activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call'
1134
- activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1135
- activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call'
1136
- activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1137
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1138
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
1139
- actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1140
- actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
1141
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1142
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
1143
- activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1144
- activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument'
1145
- actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1146
- actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1147
- activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1148
- actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process'
1149
- actionview (5.0.1) lib/action_view/rendering.rb:30:in `process'
1150
- actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch'
1151
- actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch'
1152
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1153
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1154
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1155
- actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
1156
- actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
1157
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1158
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1159
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1160
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1161
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1162
- actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1163
- activerecord (5.0.1) lib/active_record/migration.rb:553:in `call'
1164
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1165
- activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1166
- activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1167
- activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
1168
- actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1169
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
1170
- actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1171
- better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
1172
- better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
1173
- better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
1174
- actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1175
- actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1176
- railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app'
1177
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call'
1178
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged'
1179
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1180
- activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged'
1181
- railties (5.0.1) lib/rails/rack/logger.rb:24:in `call'
1182
- sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
1183
- actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1184
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1185
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1186
- activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1187
- actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
1188
- actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
1189
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1190
- railties (5.0.1) lib/rails/engine.rb:522:in `call'
1191
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1192
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1193
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1194
- /Users/weston/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1195
-