extra_extra 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +30 -0
- data/app/controllers/extra_extra/application_controller.rb +4 -0
- data/app/controllers/extra_extra/release_notes_controller.rb +20 -0
- data/app/views/extra_extra/release_notes/index.html.erb +6 -0
- data/config/routes.rb +3 -0
- data/lib/extra_extra/engine.rb +11 -0
- data/lib/extra_extra/semantic_html_renderer.rb +15 -0
- data/lib/extra_extra/version.rb +3 -0
- data/lib/extra_extra.rb +13 -0
- data/spec/controllers/release_notes_controller_spec.rb +16 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/RELEASE_NOTES.md +39 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +78 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +16 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +286 -0
- data/spec/dummy/log/test.log +161 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/26e72fb7b344fb194bf85a05ed40bfc7 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/362901df5349ae7671d0f126f551bf72 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/3fd6b5fbae9ddd03cd56ec2d4aeb252e +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/787be44e3edd7fa7d35d1ea7d0890d39 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7cd55e6c26c32c33e14a0b472da6c339 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7cf17f0741235ed2e5e849dc5b0cdbbc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/lib/extra_extra/semantic_html_renderer_spec.rb +45 -0
- data/spec/spec_helper.rb +13 -0
- metadata +219 -0
@@ -0,0 +1,39 @@
|
|
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 static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
|
37
|
+
# Raises error for missing translations
|
38
|
+
# config.action_view.raise_on_missing_translations = true
|
39
|
+
end
|
@@ -0,0 +1,8 @@
|
|
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
|
+
# Precompile additional assets.
|
7
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
8
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
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
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
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"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 96eb607a95f635f3668e03a0f3c13d288af1d293967951f2fe9c328958d0713853998dd19e5292a56b1766b8273f195e0d100207f392fc71541dbe0b49bb719a
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 18f61ce4af1f7a8bde2c94587e8eb77f75ebae619a3c28b25b9900f8211e69d5d6ad6183aad30e67995285aaffc41fa3056675f5b692c60a68ff920114094d5a
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,286 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2014-09-14 12:47:54 -0700
|
4
|
+
|
5
|
+
Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
|
6
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
|
7
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
|
8
|
+
activerecord (4.1.6) lib/active_record/connection_handling.rb:50:in `establish_connection'
|
9
|
+
activerecord (4.1.6) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
|
10
|
+
activesupport (4.1.6) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
|
11
|
+
activesupport (4.1.6) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
|
12
|
+
activesupport (4.1.6) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
|
13
|
+
activesupport (4.1.6) lib/active_support/lazy_load_hooks.rb:44:in `each'
|
14
|
+
activesupport (4.1.6) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
|
15
|
+
activerecord (4.1.6) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
|
16
|
+
activerecord (4.1.6) lib/active_record/base.rb:23:in `<top (required)>'
|
17
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
|
18
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
|
19
|
+
activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
|
20
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
21
|
+
activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
22
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
23
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
24
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
25
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
26
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
27
|
+
railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
|
28
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
|
29
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
30
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
31
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
32
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
|
33
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
34
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
35
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
36
|
+
activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
37
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
38
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
|
39
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
40
|
+
railties (4.1.6) lib/rails/engine.rb:514:in `call'
|
41
|
+
railties (4.1.6) lib/rails/application.rb:144:in `call'
|
42
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
43
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
44
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
45
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
46
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
47
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
48
|
+
|
49
|
+
|
50
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
51
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
52
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
53
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.6ms)
|
54
|
+
|
55
|
+
|
56
|
+
Started GET "/" for 127.0.0.1 at 2014-09-14 12:48:24 -0700
|
57
|
+
Processing by Rails::WelcomeController#index as HTML
|
58
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
|
59
|
+
Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
60
|
+
|
61
|
+
|
62
|
+
Started GET "/release_notes" for 127.0.0.1 at 2014-09-14 12:48:28 -0700
|
63
|
+
Processing by ReleaseNotes::ReleaseNotesController#index as HTML
|
64
|
+
Completed 500 Internal Server Error in 1ms
|
65
|
+
|
66
|
+
NameError (uninitialized constant ReleaseNotes::ReleaseNotesController::Redcarpet):
|
67
|
+
/Users/davec/Projects/stitchfix/release_notes/app/controllers/release_notes/release_notes_controller.rb:6:in `index'
|
68
|
+
actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
69
|
+
actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
|
70
|
+
actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
71
|
+
actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
72
|
+
activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
73
|
+
actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
74
|
+
actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
75
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
76
|
+
activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
|
77
|
+
activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
78
|
+
activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
|
79
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
80
|
+
actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
81
|
+
activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
82
|
+
actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
|
83
|
+
actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
|
84
|
+
actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
|
85
|
+
actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
86
|
+
actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
|
87
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
88
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
89
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
90
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
91
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
|
92
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
|
93
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
94
|
+
railties (4.1.6) lib/rails/engine.rb:514:in `call'
|
95
|
+
railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
|
96
|
+
railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
|
97
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
98
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
|
99
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
|
100
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
101
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
102
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
103
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
104
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
105
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
106
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
107
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
108
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
109
|
+
activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
|
110
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
111
|
+
activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
|
112
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
113
|
+
activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
114
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
115
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
116
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
117
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
118
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
119
|
+
railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
|
120
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
|
121
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
122
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
123
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
124
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
|
125
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
126
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
127
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
128
|
+
activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
129
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
130
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
|
131
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
132
|
+
railties (4.1.6) lib/rails/engine.rb:514:in `call'
|
133
|
+
railties (4.1.6) lib/rails/application.rb:144:in `call'
|
134
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
135
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
136
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
137
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
138
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
139
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
140
|
+
|
141
|
+
|
142
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
143
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
|
144
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.8ms)
|
145
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.5ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/release_notes" for 127.0.0.1 at 2014-09-14 12:49:29 -0700
|
149
|
+
Processing by ReleaseNotes::ReleaseNotesController#index as HTML
|
150
|
+
Completed 500 Internal Server Error in 7ms
|
151
|
+
|
152
|
+
ActionView::MissingTemplate (Missing template release_notes/release_notes/index, release_notes/application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
153
|
+
* "/Users/davec/Projects/stitchfix/release_notes/test/dummy/app/views"
|
154
|
+
* "/Users/davec/Projects/stitchfix/release_notes/app/views"
|
155
|
+
):
|
156
|
+
actionview (4.1.6) lib/action_view/path_set.rb:46:in `find'
|
157
|
+
actionview (4.1.6) lib/action_view/lookup_context.rb:124:in `find'
|
158
|
+
actionview (4.1.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
159
|
+
actionview (4.1.6) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
|
160
|
+
actionview (4.1.6) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
161
|
+
actionview (4.1.6) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
162
|
+
actionview (4.1.6) lib/action_view/renderer/renderer.rb:23:in `render'
|
163
|
+
actionview (4.1.6) lib/action_view/rendering.rb:99:in `_render_template'
|
164
|
+
actionpack (4.1.6) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
165
|
+
actionview (4.1.6) lib/action_view/rendering.rb:82:in `render_to_body'
|
166
|
+
actionpack (4.1.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
167
|
+
actionpack (4.1.6) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
168
|
+
actionpack (4.1.6) lib/abstract_controller/rendering.rb:25:in `render'
|
169
|
+
actionpack (4.1.6) lib/action_controller/metal/rendering.rb:16:in `render'
|
170
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
171
|
+
activesupport (4.1.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
172
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
173
|
+
activesupport (4.1.6) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
174
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
175
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
176
|
+
activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
177
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
178
|
+
actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
179
|
+
actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
180
|
+
actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
|
181
|
+
actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
182
|
+
actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
183
|
+
activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
184
|
+
actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
185
|
+
actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
186
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
187
|
+
activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
|
188
|
+
activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
189
|
+
activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
|
190
|
+
actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
191
|
+
actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
192
|
+
activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
193
|
+
actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
|
194
|
+
actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
|
195
|
+
actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
|
196
|
+
actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
197
|
+
actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
|
198
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
199
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
200
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
201
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
202
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
|
203
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
|
204
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
205
|
+
railties (4.1.6) lib/rails/engine.rb:514:in `call'
|
206
|
+
railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
|
207
|
+
railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
|
208
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
209
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
|
210
|
+
actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
|
211
|
+
actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
212
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
213
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
214
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
215
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
216
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
217
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
218
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
219
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
220
|
+
activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
|
221
|
+
activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
222
|
+
activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
|
223
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
224
|
+
activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
225
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
226
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
227
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
228
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
229
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
230
|
+
railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
|
231
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
|
232
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
233
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
234
|
+
activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
235
|
+
railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
|
236
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
237
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
238
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
239
|
+
activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
240
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
241
|
+
actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
|
242
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
243
|
+
railties (4.1.6) lib/rails/engine.rb:514:in `call'
|
244
|
+
railties (4.1.6) lib/rails/application.rb:144:in `call'
|
245
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
246
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
247
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
248
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
249
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
250
|
+
/Users/davec/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
251
|
+
|
252
|
+
|
253
|
+
Rendered /Users/davec/.rvm/gems/ruby-2.1.0@release_notes/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (1.0ms)
|
254
|
+
|
255
|
+
|
256
|
+
Started GET "/release_notes" for 127.0.0.1 at 2014-09-14 12:49:48 -0700
|
257
|
+
Processing by ReleaseNotes::ReleaseNotesController#index as HTML
|
258
|
+
Rendered /Users/davec/Projects/stitchfix/release_notes/app/views/release_notes/release_notes/index.html.erb within layouts/release_notes/application (0.5ms)
|
259
|
+
Completed 200 OK in 60ms (Views: 59.8ms | ActiveRecord: 0.0ms)
|
260
|
+
|
261
|
+
|
262
|
+
Started GET "/assets/release_notes/application.js?body=1" for 127.0.0.1 at 2014-09-14 12:49:48 -0700
|
263
|
+
|
264
|
+
|
265
|
+
Started GET "/assets/release_notes/application.css?body=1" for 127.0.0.1 at 2014-09-14 12:49:48 -0700
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/release_notes" for 127.0.0.1 at 2014-09-14 12:50:20 -0700
|
269
|
+
Processing by ReleaseNotes::ReleaseNotesController#index as HTML
|
270
|
+
Rendered /Users/davec/Projects/stitchfix/release_notes/app/views/release_notes/release_notes/index.html.erb within layouts/release_notes/application (0.0ms)
|
271
|
+
Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
272
|
+
|
273
|
+
|
274
|
+
Started GET "/assets/release_notes/application.css?body=1" for 127.0.0.1 at 2014-09-14 12:50:20 -0700
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/assets/release_notes/application.js?body=1" for 127.0.0.1 at 2014-09-14 12:50:20 -0700
|
278
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
279
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
280
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
281
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
282
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
283
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
284
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
285
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
286
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|