argyle 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +29 -0
- data/app/controllers/argyle/callback_controller.rb +26 -0
- data/app/helpers/argyle_helper.rb +21 -0
- data/config/initializers/argyle.rb +3 -0
- data/lib/argyle.rb +28 -0
- data/lib/argyle/configuration.rb +17 -0
- data/lib/argyle/engine.rb +12 -0
- data/lib/argyle/version.rb +3 -0
- data/lib/tasks/argyle_tasks.rake +4 -0
- data/spec/argyle/configuration_spec.rb +94 -0
- data/spec/argyle_spec.rb +25 -0
- data/spec/controllers/argyle_callback_controller_spec.rb +65 -0
- data/spec/dummy/README.rdoc +28 -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/controllers/plaid_controller.rb +4 -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/app/views/plaid/index.html.erb +4 -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/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +32 -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 +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/argyle.rb +5 -0
- data/spec/dummy/config/initializers/assets.rb +11 -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 +58 -0
- data/spec/dummy/config/secrets.yml +22 -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 +1080 -0
- data/spec/dummy/log/test.log +7272 -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/v3.0/0ieeKnMtadPClPcf7n4_-7f9dFAa5EKPn-nhh8g4E_I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/1MaC3BKD874nKekA9l4_uDMdzybsPdMFXBLq6Wikd9o.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/3fB7XY5WyPu8FySUeyC372vbXJ2Ix4iB1QaNHXbk_BY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4PUnpQHDua-Xqo8JWcao3dmnAGw5Qe86hCt0-euUuu4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4Ua8dmLUr8Toa4KitoJOWPCWmQDUtkViHxkOWgNr_4U.cache +2 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4jJgwEH8G9g2ZAihwnJTyYF3AUsGx_Tfzt6CkLqIQ6A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4uLvoxkzCVfJVJGG_yk7-GxdRWB0va-PV2IwuaJCs2A.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4zfBHPrVSAAH7NQNP2QCF7SQ8bIdR6Kxu9l50BcjISw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/6XkmYPT23r37FfIrNvKhSeWMc3qjH6W_f0jr7C1f_do.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/7isDUhDWtRexG1DWTGOm9_t-JL7uJgeu78ztyB0b03g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/81rcybOgkCiUw5_T7OJ4LsBCoNBgg59p9-GAW-ao8yg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/C9ZIizNokjDxVBj2Zzsaxfn2NWRJR4ubGsuRhWj2Ayk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/EHcymtlGKlOMMf7gOs-X2_jpvcBTW92Qeaxu2B5-Wbg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/GlO_ji60pMJWu8djobXyzbXfdHiUnYUIZGP3Iklzlzs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Gl_3O9A3P4yb3yQkXNcH5ITZXKctEiak8xVMk-A65t0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/KkIrOm7xAhVkQo8Du-RfPAbPpKqdhLMDO2gN5xnmMyY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/LuPYGdHx9uNcIHa92OGqn2gmusn0X-3aVked2gVDbbY.cache +2 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/M_Gi1TlHRqty6YLFeS71JIrdZEvtoVSuipxWoNVCiKw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/NPnYhRY8XHqo9xm-W8rTx5XFDR4oSOtbL82PSgm-Si4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/RmbxMxzYgiU4Cv6SMw_GKIC6a4ROERW3Ptws_pL2ZAQ.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/SGxtd6iKmB2TMwH-VOx-jVYXh5m_09UjNEOkifPHLL0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/UTWEuFLfi6c3KWTx7wWgorjc6dzYS1Kr4zRhOg1ReZk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/VRd0ChM7VK6N6MmWoyOo-a21Ja8vfymGvSyusF0ritM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/fgeo8jZxWA-gSZNySPVhnK07UoUU1b5JEGH96pV3vcw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/gM11O4aG_wI3dsZZvN0ynldrZwlkRE4l03x6p5aNyaU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hBQZsCQk7Zn_j83HxEtlCI_4LFQclQ9wcpepQlf5dDM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hmEuQnGmEBUQv7XA0QnsKIVaLBzYgLYomOgInHpAIEE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/mGxm5paEpvvBYO6hvKVXBnjxTf4BbdcjQqoy9-hqy0M.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/rszxBavuJY50FFsWIWubPAdfh0aHwmLuN9ThEwjo2_I.cache +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/tDL1djgNdC4vxYBar7DFV9t6UZP4VV4wcKWuTFdHhf8.cache +1 -0
- data/spec/helpers/argyle_helper_spec.rb +65 -0
- data/spec/spec_helper.rb +28 -0
- metadata +299 -0
|
@@ -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: d3af02f1c797950eefe740df32111cf15c8040868f57dc55f9ef048f5bdc7ec148363765eb104ea288abd6132dc01ee2431cac402376e37cc3e8daf3a127b7ea
|
|
15
|
+
|
|
16
|
+
test:
|
|
17
|
+
secret_key_base: d52fe940d2c88d40b4d75a9c4fa45cee328cd0f7274d7623b85efc486905b9e8fd1b7d20bb8eeee05190caaa6babc6d2c4abfa9a1c5556e5fb43009916a52b57
|
|
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,1080 @@
|
|
|
1
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
3
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
5
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
6
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
7
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
8
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
9
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
11
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
12
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
13
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
14
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Started GET "/plaid/index" for 127.0.0.1 at 2015-12-10 12:07:30 -0500
|
|
18
|
+
Processing by PlaidController#index as HTML
|
|
19
|
+
Rendered plaid/index.html.erb within layouts/application (1.3ms)
|
|
20
|
+
Completed 200 OK in 155ms (Views: 154.6ms | ActiveRecord: 0.0ms)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-12-10 12:07:30 -0500
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-12-10 12:07:30 -0500
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-12-10 12:07:30 -0500
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for 127.0.0.1 at 2015-12-10 12:07:30 -0500
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Started GET "/plaid/index" for 127.0.0.1 at 2015-12-10 12:20:36 -0500
|
|
36
|
+
Processing by PlaidController#index as HTML
|
|
37
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
38
|
+
Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-12-10 12:20:36 -0500
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-12-10 12:20:36 -0500
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-12-10 12:20:36 -0500
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for 127.0.0.1 at 2015-12-10 12:20:36 -0500
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
Started GET "/plaid/index" for 127.0.0.1 at 2015-12-10 12:26:08 -0500
|
|
54
|
+
Processing by PlaidController#index as HTML
|
|
55
|
+
Rendered plaid/index.html.erb within layouts/application (3.0ms)
|
|
56
|
+
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
|
|
57
|
+
|
|
58
|
+
ActionView::Template::Error (undefined method `argyle' for #<Rails::Application::Configuration:0x007ffe7d4ce3b0>):
|
|
59
|
+
1: <h1>Plaid#index</h1>
|
|
60
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
61
|
+
3:
|
|
62
|
+
4: <%= plaid_link %>
|
|
63
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__3538854929425955732_70365484677900'
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.1ms)
|
|
67
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
|
68
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
69
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.3ms)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
Started GET "/plaid/index" for 127.0.0.1 at 2015-12-10 12:30:07 -0500
|
|
73
|
+
Processing by PlaidController#index as HTML
|
|
74
|
+
Rendered plaid/index.html.erb within layouts/application (4.5ms)
|
|
75
|
+
Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
|
|
76
|
+
|
|
77
|
+
ActionView::Template::Error (undefined method `plaid_src' for #<Hash:0x007fcda30eec50>):
|
|
78
|
+
1: <h1>Plaid#index</h1>
|
|
79
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
80
|
+
3:
|
|
81
|
+
4: <%= plaid_link %>
|
|
82
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__2517357304254402721_70260599237480'
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
|
|
86
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
|
87
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.4ms)
|
|
88
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.1ms)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
Started GET "/plaid/index" for 127.0.0.1 at 2015-12-10 12:30:35 -0500
|
|
92
|
+
Processing by PlaidController#index as HTML
|
|
93
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
94
|
+
Completed 200 OK in 153ms (Views: 153.0ms | ActiveRecord: 0.0ms)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-12-10 12:30:35 -0500
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-12-10 12:30:35 -0500
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-12-10 12:30:35 -0500
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for 127.0.0.1 at 2015-12-10 12:30:35 -0500
|
|
107
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
108
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
109
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
110
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
111
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
112
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
113
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
114
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
115
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
116
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
Started GET "/plaid/index" for ::1 at 2015-12-10 15:12:14 -0500
|
|
120
|
+
Processing by PlaidController#index as HTML
|
|
121
|
+
Rendered plaid/index.html.erb within layouts/application (5.0ms)
|
|
122
|
+
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
|
|
123
|
+
|
|
124
|
+
ActionView::Template::Error (undefined method `argyle' for #<Rails::Application::Configuration:0x007fa72d2d39b8>):
|
|
125
|
+
1: <h1>Plaid#index</h1>
|
|
126
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
127
|
+
3:
|
|
128
|
+
4: <%= plaid_link %>
|
|
129
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1741917392320766703_70177997463120'
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
|
|
133
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
|
134
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.2ms)
|
|
135
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.9ms)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
Started GET "/plaid/index" for ::1 at 2015-12-10 15:39:52 -0500
|
|
139
|
+
Processing by PlaidController#index as HTML
|
|
140
|
+
Rendered plaid/index.html.erb within layouts/application (4.1ms)
|
|
141
|
+
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
|
|
142
|
+
|
|
143
|
+
ActionView::Template::Error (undefined method `plaid_src' for nil:NilClass):
|
|
144
|
+
1: <h1>Plaid#index</h1>
|
|
145
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
146
|
+
3:
|
|
147
|
+
4: <%= plaid_link %>
|
|
148
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1736522781787877012_70243051012540'
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
|
|
152
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
|
153
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms)
|
|
154
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.2ms)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
Started GET "/" for ::1 at 2015-12-11 11:03:07 -0500
|
|
158
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
159
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/railties-4.2.5/lib/rails/templates/rails/welcome/index.html.erb (2.0ms)
|
|
160
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:03:15 -0500
|
|
164
|
+
Processing by PlaidController#index as HTML
|
|
165
|
+
Rendered plaid/index.html.erb within layouts/application (3.4ms)
|
|
166
|
+
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
|
|
167
|
+
|
|
168
|
+
ActionView::Template::Error (wrong number of arguments (0 for 2)):
|
|
169
|
+
1: <h1>Plaid#index</h1>
|
|
170
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
171
|
+
3:
|
|
172
|
+
4: <%= plaid_link %>
|
|
173
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___2844535222692296737_70306963584300'
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms)
|
|
177
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
|
|
178
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.8ms)
|
|
179
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.3ms)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:03:46 -0500
|
|
183
|
+
Processing by PlaidController#index as HTML
|
|
184
|
+
Rendered plaid/index.html.erb within layouts/application (1.7ms)
|
|
185
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
|
186
|
+
|
|
187
|
+
ActionView::Template::Error (undefined method `key' for nil:NilClass):
|
|
188
|
+
1: <h1>Plaid#index</h1>
|
|
189
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
190
|
+
3:
|
|
191
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
192
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___2844535222692296737_70306993135040'
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.7ms)
|
|
196
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
|
|
197
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
|
|
198
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.8ms)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:06:08 -0500
|
|
202
|
+
Processing by PlaidController#index as HTML
|
|
203
|
+
Rendered plaid/index.html.erb within layouts/application (0.8ms)
|
|
204
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
|
|
205
|
+
|
|
206
|
+
ActionView::Template::Error (Create initializers/argyle to use Plaid Link):
|
|
207
|
+
1: <h1>Plaid#index</h1>
|
|
208
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
209
|
+
3:
|
|
210
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
211
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___2844535222692296737_70306993135040'
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
|
|
215
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
|
|
216
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
217
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.7ms)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:06:35 -0500
|
|
221
|
+
Processing by PlaidController#index as HTML
|
|
222
|
+
Rendered plaid/index.html.erb within layouts/application (0.9ms)
|
|
223
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
|
224
|
+
|
|
225
|
+
ActionView::Template::Error (No configuration found. Does initializers/argyle.rb exist?):
|
|
226
|
+
1: <h1>Plaid#index</h1>
|
|
227
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
228
|
+
3:
|
|
229
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
230
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___2844535222692296737_70306993135040'
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
|
|
234
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
|
235
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
236
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.8ms)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:07:16 -0500
|
|
240
|
+
Processing by PlaidController#index as HTML
|
|
241
|
+
Rendered plaid/index.html.erb within layouts/application (4.0ms)
|
|
242
|
+
Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
|
|
243
|
+
|
|
244
|
+
ActionView::Template::Error (No configuration found. Does initializers/argyle.rb exist?):
|
|
245
|
+
1: <h1>Plaid#index</h1>
|
|
246
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
247
|
+
3:
|
|
248
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
249
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__2783914761305358065_70181914247880'
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms)
|
|
253
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
|
|
254
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
|
|
255
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.1ms)
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:11:24 -0500
|
|
259
|
+
Processing by PlaidController#index as HTML
|
|
260
|
+
Rendered plaid/index.html.erb within layouts/application (4.0ms)
|
|
261
|
+
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
|
|
262
|
+
|
|
263
|
+
ActionView::Template::Error (key must be set in initializers/argyle):
|
|
264
|
+
1: <h1>Plaid#index</h1>
|
|
265
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
266
|
+
3:
|
|
267
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
268
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1953050376815608991_70352962454380'
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.8ms)
|
|
272
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
|
|
273
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.8ms)
|
|
274
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.2ms)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:12:23 -0500
|
|
278
|
+
Processing by PlaidController#index as HTML
|
|
279
|
+
Rendered plaid/index.html.erb within layouts/application (0.8ms)
|
|
280
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
|
281
|
+
|
|
282
|
+
ActionView::Template::Error (Public key must be set in Argyle configuration):
|
|
283
|
+
1: <h1>Plaid#index</h1>
|
|
284
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
285
|
+
3:
|
|
286
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
287
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1953050376815608991_70352962454380'
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
|
|
291
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
|
292
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
293
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.9ms)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:13:04 -0500
|
|
297
|
+
Processing by PlaidController#index as HTML
|
|
298
|
+
Rendered plaid/index.html.erb within layouts/application (0.8ms)
|
|
299
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
|
300
|
+
|
|
301
|
+
ActionView::Template::Error (Public key must be set in Argyle configuration):
|
|
302
|
+
1: <h1>Plaid#index</h1>
|
|
303
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
304
|
+
3:
|
|
305
|
+
4: <%= plaid_link('myId', name: 'ohai') %>
|
|
306
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1953050376815608991_70352962454380'
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
|
|
310
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
311
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
312
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.5ms)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:13:15 -0500
|
|
316
|
+
Processing by PlaidController#index as HTML
|
|
317
|
+
Rendered plaid/index.html.erb within layouts/application (0.8ms)
|
|
318
|
+
Completed 200 OK in 167ms (Views: 167.0ms | ActiveRecord: 0.0ms)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:13:16 -0500
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:13:16 -0500
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:13:16 -0500
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:13:16 -0500
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:14:26 -0500
|
|
334
|
+
Processing by PlaidController#index as HTML
|
|
335
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
336
|
+
Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:14:26 -0500
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:14:26 -0500
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:14:26 -0500
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:14:26 -0500
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:14:35 -0500
|
|
352
|
+
Processing by PlaidController#index as HTML
|
|
353
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
354
|
+
Completed 200 OK in 11ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:14:35 -0500
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:14:35 -0500
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:14:35 -0500
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:14:35 -0500
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:15:10 -0500
|
|
370
|
+
Processing by PlaidController#index as HTML
|
|
371
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
372
|
+
Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:15:10 -0500
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:15:10 -0500
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:15:10 -0500
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:15:10 -0500
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:16:59 -0500
|
|
388
|
+
Processing by PlaidController#index as HTML
|
|
389
|
+
Rendered plaid/index.html.erb within layouts/application (2.9ms)
|
|
390
|
+
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
|
|
391
|
+
|
|
392
|
+
ActionView::Template::Error (wrong number of arguments (1 for 2)):
|
|
393
|
+
1: <h1>Plaid#index</h1>
|
|
394
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
395
|
+
3:
|
|
396
|
+
4: <%= plaid_link(name: 'ohai') %>
|
|
397
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___1854824847392393562_70140923739360'
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
|
|
401
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
|
402
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
|
403
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.8ms)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:17:23 -0500
|
|
407
|
+
Processing by PlaidController#index as HTML
|
|
408
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
409
|
+
Completed 200 OK in 40ms (Views: 39.9ms | ActiveRecord: 0.0ms)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:17:23 -0500
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:17:23 -0500
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:17:23 -0500
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:17:23 -0500
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:20:43 -0500
|
|
425
|
+
Processing by PlaidController#index as HTML
|
|
426
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
427
|
+
Completed 200 OK in 19ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:20:43 -0500
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:20:43 -0500
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:20:43 -0500
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:20:43 -0500
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:21:18 -0500
|
|
443
|
+
Processing by PlaidController#index as HTML
|
|
444
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
445
|
+
Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:21:18 -0500
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:21:18 -0500
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:21:18 -0500
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:21:18 -0500
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:21:32 -0500
|
|
461
|
+
Processing by PlaidController#index as HTML
|
|
462
|
+
Rendered plaid/index.html.erb within layouts/application (0.4ms)
|
|
463
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:21:32 -0500
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:21:32 -0500
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:21:32 -0500
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:21:32 -0500
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:21:45 -0500
|
|
479
|
+
Processing by PlaidController#index as HTML
|
|
480
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
481
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:21:45 -0500
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:21:45 -0500
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:21:45 -0500
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:21:45 -0500
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:22:34 -0500
|
|
497
|
+
Processing by PlaidController#index as HTML
|
|
498
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
499
|
+
Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:22:34 -0500
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:22:34 -0500
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:22:34 -0500
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:22:34 -0500
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:22:45 -0500
|
|
515
|
+
Processing by PlaidController#index as HTML
|
|
516
|
+
Rendered plaid/index.html.erb within layouts/application (1.8ms)
|
|
517
|
+
Completed 200 OK in 166ms (Views: 165.8ms | ActiveRecord: 0.0ms)
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:22:45 -0500
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:22:45 -0500
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:22:45 -0500
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:22:45 -0500
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:23:25 -0500
|
|
533
|
+
Processing by PlaidController#index as HTML
|
|
534
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
535
|
+
Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:23:25 -0500
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:23:25 -0500
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:23:25 -0500
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:23:25 -0500
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:27:24 -0500
|
|
551
|
+
|
|
552
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:23: syntax error, unexpected ')', expecting tSTRING_DEND
|
|
553
|
+
data-form-id="#{id)}"
|
|
554
|
+
^
|
|
555
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:26: syntax error, unexpected '<'
|
|
556
|
+
data-env="#{env}"></script>
|
|
557
|
+
^
|
|
558
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:26: unterminated regexp meets end of file):
|
|
559
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
560
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
|
|
564
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
|
|
565
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
566
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.4ms)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:28:09 -0500
|
|
570
|
+
Processing by PlaidController#index as HTML
|
|
571
|
+
Rendered plaid/index.html.erb within layouts/application (1.4ms)
|
|
572
|
+
Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
|
|
573
|
+
|
|
574
|
+
ActionView::Template::Error (options[:action] is required for Plaid Link):
|
|
575
|
+
1: <h1>Plaid#index</h1>
|
|
576
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
577
|
+
3:
|
|
578
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai') %>
|
|
579
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb___496728000885307281_70101995553480'
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms)
|
|
583
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
|
|
584
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
585
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.6ms)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:28:31 -0500
|
|
589
|
+
Processing by PlaidController#index as HTML
|
|
590
|
+
Rendered plaid/index.html.erb within layouts/application (0.5ms)
|
|
591
|
+
Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:28:31 -0500
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:28:31 -0500
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:28:31 -0500
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:28:31 -0500
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:28:42 -0500
|
|
607
|
+
Processing by PlaidController#index as HTML
|
|
608
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
609
|
+
Completed 200 OK in 15ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:28:42 -0500
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:28:42 -0500
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:28:42 -0500
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:28:42 -0500
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:32:13 -0500
|
|
625
|
+
Processing by PlaidController#index as HTML
|
|
626
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
627
|
+
Completed 200 OK in 25ms (Views: 25.1ms | ActiveRecord: 0.0ms)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:32:13 -0500
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:32:13 -0500
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:32:13 -0500
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:32:13 -0500
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
Started GET "/plaid/index" for ::1 at 2015-12-11 11:32:19 -0500
|
|
643
|
+
Processing by PlaidController#index as HTML
|
|
644
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
645
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-11 11:32:19 -0500
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-11 11:32:19 -0500
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-11 11:32:19 -0500
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-11 11:32:19 -0500
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
Started GET "/" for ::1 at 2015-12-16 14:08:16 -0500
|
|
661
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
662
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/railties-4.2.5/lib/rails/templates/rails/welcome/index.html.erb (2.0ms)
|
|
663
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:08:20 -0500
|
|
667
|
+
Processing by PlaidController#index as HTML
|
|
668
|
+
Rendered plaid/index.html.erb within layouts/application (0.5ms)
|
|
669
|
+
Completed 200 OK in 156ms (Views: 155.5ms | ActiveRecord: 0.0ms)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:08:21 -0500
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:08:21 -0500
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:08:21 -0500
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:08:21 -0500
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:10:58 -0500
|
|
685
|
+
Processing by PlaidController#index as HTML
|
|
686
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
687
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:10:58 -0500
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:10:58 -0500
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:10:58 -0500
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:10:58 -0500
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:11:06 -0500
|
|
703
|
+
Processing by PlaidController#index as HTML
|
|
704
|
+
Rendered plaid/index.html.erb within layouts/application (0.1ms)
|
|
705
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:11:06 -0500
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:11:06 -0500
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:11:06 -0500
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:11:06 -0500
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:21:46 -0500
|
|
721
|
+
Processing by PlaidController#index as HTML
|
|
722
|
+
Rendered plaid/index.html.erb within layouts/application (4.0ms)
|
|
723
|
+
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
|
|
724
|
+
|
|
725
|
+
ActionView::Template::Error (wrong number of arguments (1 for 0)):
|
|
726
|
+
1: <h1>Plaid#index</h1>
|
|
727
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
728
|
+
3:
|
|
729
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
730
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
|
|
734
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
735
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
736
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.8ms)
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:26 -0500
|
|
740
|
+
Processing by PlaidController#index as HTML
|
|
741
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
742
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:22:26 -0500
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:22:26 -0500
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:22:26 -0500
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:22:26 -0500
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:40 -0500
|
|
758
|
+
Processing by PlaidController#index as HTML
|
|
759
|
+
Rendered plaid/index.html.erb within layouts/application (1.3ms)
|
|
760
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
|
|
761
|
+
|
|
762
|
+
ActionView::Template::Error (undefined method `escape' for #<ActiveSupport::SafeBuffer:0x007f8348257fb0>):
|
|
763
|
+
1: <h1>Plaid#index</h1>
|
|
764
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
765
|
+
3:
|
|
766
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
767
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms)
|
|
771
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
|
|
772
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
|
773
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.0ms)
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:44 -0500
|
|
777
|
+
Processing by PlaidController#index as HTML
|
|
778
|
+
Rendered plaid/index.html.erb within layouts/application (1.1ms)
|
|
779
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
|
780
|
+
|
|
781
|
+
ActionView::Template::Error (undefined method `escape' for #<ActiveSupport::SafeBuffer:0x007f8343c20240>):
|
|
782
|
+
1: <h1>Plaid#index</h1>
|
|
783
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
784
|
+
3:
|
|
785
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
786
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
|
|
790
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
791
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
792
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.7ms)
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:49 -0500
|
|
796
|
+
Processing by PlaidController#index as HTML
|
|
797
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
798
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:22:49 -0500
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:22:49 -0500
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:22:49 -0500
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:22:49 -0500
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:51 -0500
|
|
814
|
+
Processing by PlaidController#index as HTML
|
|
815
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
816
|
+
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:22:56 -0500
|
|
820
|
+
Processing by PlaidController#index as HTML
|
|
821
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
822
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:27:36 -0500
|
|
826
|
+
Processing by PlaidController#index as HTML
|
|
827
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
828
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:27:45 -0500
|
|
832
|
+
Processing by PlaidController#index as HTML
|
|
833
|
+
Rendered plaid/index.html.erb within layouts/application (1.1ms)
|
|
834
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
|
|
835
|
+
|
|
836
|
+
ActionView::Template::Error (undefined method `each_pair' for "http://google.com":String):
|
|
837
|
+
1: <h1>Plaid#index</h1>
|
|
838
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
839
|
+
3:
|
|
840
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
841
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
|
|
845
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.9ms)
|
|
846
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
847
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.2ms)
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:27:58 -0500
|
|
851
|
+
Processing by PlaidController#index as HTML
|
|
852
|
+
Rendered plaid/index.html.erb within layouts/application (1.1ms)
|
|
853
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
|
854
|
+
|
|
855
|
+
ActionView::Template::Error (undefined method `each_pair' for "http://google.com":String):
|
|
856
|
+
1: <h1>Plaid#index</h1>
|
|
857
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
858
|
+
3:
|
|
859
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
860
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
|
|
864
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
|
865
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
866
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.9ms)
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:28:12 -0500
|
|
870
|
+
Processing by PlaidController#index as HTML
|
|
871
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
872
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:28:12 -0500
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:28:12 -0500
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:28:12 -0500
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:28:12 -0500
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:28:14 -0500
|
|
888
|
+
Processing by PlaidController#index as HTML
|
|
889
|
+
Rendered plaid/index.html.erb within layouts/application (0.2ms)
|
|
890
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:28:34 -0500
|
|
894
|
+
Processing by PlaidController#index as HTML
|
|
895
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
896
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:30:39 -0500
|
|
900
|
+
|
|
901
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected tLABEL
|
|
902
|
+
...on.plaid_src, data-client-name: {options[:name]}, data-form-...
|
|
903
|
+
... ^
|
|
904
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected '}', expecting =>
|
|
905
|
+
...a-client-name: {options[:name]}, data-form-id: {id} data-key...
|
|
906
|
+
... ^
|
|
907
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected tLABEL
|
|
908
|
+
...{options[:name]}, data-form-id: {id} data-key: {Argyle.confi...
|
|
909
|
+
... ^
|
|
910
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected '}', expecting =>
|
|
911
|
+
...key: {Argyle.configuration.key}, data-product: {product}, da...
|
|
912
|
+
... ^):
|
|
913
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
914
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
|
|
918
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
919
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
920
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.7ms)
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:30:42 -0500
|
|
924
|
+
|
|
925
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected tLABEL
|
|
926
|
+
...on.plaid_src, data-client-name: {options[:name]}, data-form-...
|
|
927
|
+
... ^
|
|
928
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected '}', expecting =>
|
|
929
|
+
...a-client-name: {options[:name]}, data-form-id: {id} data-key...
|
|
930
|
+
... ^
|
|
931
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected tLABEL
|
|
932
|
+
...{options[:name]}, data-form-id: {id} data-key: {Argyle.confi...
|
|
933
|
+
... ^
|
|
934
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:31: syntax error, unexpected '}', expecting =>
|
|
935
|
+
...key: {Argyle.configuration.key}, data-product: {product}, da...
|
|
936
|
+
... ^):
|
|
937
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
938
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
|
|
942
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
|
943
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
|
944
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.5ms)
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:33:43 -0500
|
|
948
|
+
|
|
949
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL
|
|
950
|
+
....plaid_src, data: {client-name: options[:name], form-id: id,...
|
|
951
|
+
... ^
|
|
952
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected '-', expecting '='
|
|
953
|
+
...ent-name: options[:name], form-id: id, key: Argyle.configura...
|
|
954
|
+
... ^
|
|
955
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL, expecting '='
|
|
956
|
+
...yle.configuration.key, product: product, env: env}
|
|
957
|
+
... ^):
|
|
958
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
959
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
|
|
963
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
|
964
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
965
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.3ms)
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:34:04 -0500
|
|
969
|
+
|
|
970
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL
|
|
971
|
+
....plaid_src, data: {client-name: options[:name], 'form-id': i...
|
|
972
|
+
... ^
|
|
973
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL_END, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
|
|
974
|
+
...ame: options[:name], 'form-id': id, key: Argyle.configuratio...
|
|
975
|
+
... ^
|
|
976
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL, expecting '='
|
|
977
|
+
...yle.configuration.key, product: product, env: env}
|
|
978
|
+
... ^):
|
|
979
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
980
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
|
|
984
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
|
985
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
986
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.5ms)
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:34:50 -0500
|
|
990
|
+
|
|
991
|
+
SyntaxError (/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL
|
|
992
|
+
....plaid_src, data: {client-name: options[:name], 'form-id': i...
|
|
993
|
+
... ^
|
|
994
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL_END, expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END
|
|
995
|
+
...ame: options[:name], 'form-id': id, key: Argyle.configuratio...
|
|
996
|
+
... ^
|
|
997
|
+
/Users/jbarry/Projects/argyle/app/helpers/argyle_helper.rb:20: syntax error, unexpected tLABEL, expecting '='
|
|
998
|
+
...yle.configuration.key, product: product, env: env}
|
|
999
|
+
... ^):
|
|
1000
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
|
1001
|
+
app/controllers/plaid_controller.rb:1:in `<top (required)>'
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
|
|
1005
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
1006
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
|
1007
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.9ms)
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:35:05 -0500
|
|
1011
|
+
Processing by PlaidController#index as HTML
|
|
1012
|
+
Rendered plaid/index.html.erb within layouts/application (4.9ms)
|
|
1013
|
+
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
|
|
1014
|
+
|
|
1015
|
+
ActionView::Template::Error (undefined local variable or method `options' for #<#<Class:0x007f8343c9a248>:0x007f8343cc25e0>):
|
|
1016
|
+
1: <h1>Plaid#index</h1>
|
|
1017
|
+
2: <p>Find me in app/views/plaid/index.html.erb</p>
|
|
1018
|
+
3:
|
|
1019
|
+
4: <%= plaid_link(form_id: 'ohai', name: 'ohai', action: plaid_index_path) %>
|
|
1020
|
+
app/views/plaid/index.html.erb:4:in `_app_views_plaid_index_html_erb__721134040379624747_70100872444960'
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
|
|
1024
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
1025
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
1026
|
+
Rendered /Users/jbarry/Projects/argyle/.bundle/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.0ms)
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:35:27 -0500
|
|
1030
|
+
Processing by PlaidController#index as HTML
|
|
1031
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
1032
|
+
Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 14:35:27 -0500
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 14:35:27 -0500
|
|
1039
|
+
|
|
1040
|
+
|
|
1041
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 14:35:27 -0500
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 14:35:27 -0500
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 14:35:31 -0500
|
|
1048
|
+
Processing by PlaidController#index as HTML
|
|
1049
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
1050
|
+
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 15:27:50 -0500
|
|
1054
|
+
Processing by PlaidController#index as HTML
|
|
1055
|
+
Rendered plaid/index.html.erb within layouts/application (0.3ms)
|
|
1056
|
+
Completed 200 OK in 14ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
Started GET "/assets/plaid.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-12-16 15:27:50 -0500
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 15:27:50 -0500
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
Started GET "/assets/plaid.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-12-16 15:27:50 -0500
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 15:27:50 -0500
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
Started GET "/plaid/index" for ::1 at 2015-12-16 15:43:12 -0500
|
|
1072
|
+
Processing by PlaidController#index as HTML
|
|
1073
|
+
Rendered plaid/index.html.erb within layouts/application (0.4ms)
|
|
1074
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-12-16 15:43:12 -0500
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-12-16 15:43:12 -0500
|