kaui 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. data/README.rdoc +27 -1
  2. data/app/controllers/kaui/account_tags_controller.rb +24 -9
  3. data/app/controllers/kaui/account_timelines_controller.rb +1 -1
  4. data/app/controllers/kaui/accounts_controller.rb +7 -5
  5. data/app/controllers/kaui/bundles_controller.rb +2 -2
  6. data/app/controllers/kaui/chargebacks_controller.rb +3 -2
  7. data/app/controllers/kaui/charges_controller.rb +32 -0
  8. data/app/controllers/kaui/credits_controller.rb +3 -4
  9. data/app/controllers/kaui/external_payments_controller.rb +0 -2
  10. data/app/controllers/kaui/invoice_items_controller.rb +44 -0
  11. data/app/controllers/kaui/invoices_controller.rb +4 -3
  12. data/app/controllers/kaui/payments_controller.rb +10 -13
  13. data/app/controllers/kaui/refunds_controller.rb +19 -8
  14. data/app/controllers/kaui/subscriptions_controller.rb +5 -1
  15. data/app/controllers/kaui/tag_definitions_controller.rb +85 -0
  16. data/app/helpers/kaui/date_helper.rb +1 -1
  17. data/app/helpers/kaui/killbill_helper.rb +160 -59
  18. data/app/models/kaui/account.rb +7 -1
  19. data/app/models/kaui/account_timeline.rb +0 -4
  20. data/app/models/kaui/audit_log.rb +9 -7
  21. data/app/models/kaui/base.rb +80 -1
  22. data/app/models/kaui/charge.rb +14 -0
  23. data/app/models/kaui/chargeback.rb +2 -10
  24. data/app/models/kaui/event.rb +2 -13
  25. data/app/models/kaui/invoice.rb +6 -7
  26. data/app/models/kaui/invoice_item.rb +9 -17
  27. data/app/models/kaui/payment.rb +6 -21
  28. data/app/models/kaui/payment_method.rb +1 -8
  29. data/app/models/kaui/plugin_info.rb +1 -5
  30. data/app/models/kaui/plugin_info_property.rb +0 -6
  31. data/app/models/kaui/refund.rb +5 -13
  32. data/app/models/kaui/tag.rb +10 -3
  33. data/app/models/kaui/tag_definition.rb +46 -0
  34. data/app/views/kaui/account_tags/edit.html.erb +17 -17
  35. data/app/views/kaui/account_timelines/show.html.erb +61 -39
  36. data/app/views/kaui/accounts/index.html.erb +1 -1
  37. data/app/views/kaui/accounts/show.html.erb +16 -2
  38. data/app/views/kaui/bundles/show.html.erb +2 -1
  39. data/app/views/kaui/chargebacks/new.html.erb +18 -2
  40. data/app/views/kaui/charges/new.html.erb +87 -0
  41. data/app/views/kaui/credits/new.html.erb +1 -1
  42. data/app/views/kaui/invoice_items/edit.html.erb +92 -0
  43. data/app/views/kaui/invoice_items/index.html.erb +20 -0
  44. data/app/views/kaui/invoice_items/show.html.erb +31 -0
  45. data/app/views/kaui/invoices/index.html.erb +1 -1
  46. data/app/views/kaui/invoices/show.html.erb +42 -24
  47. data/app/views/kaui/payments/_payments_table.html.erb +7 -5
  48. data/app/views/kaui/payments/new.html.erb +32 -12
  49. data/app/views/kaui/refunds/index.html.erb +3 -3
  50. data/app/views/kaui/refunds/new.html.erb +3 -3
  51. data/app/views/kaui/refunds/show.html.erb +27 -13
  52. data/app/views/kaui/subscriptions/edit.html.erb +8 -0
  53. data/app/views/kaui/tag_definitions/_form.html.erb +45 -0
  54. data/app/views/kaui/tag_definitions/edit.html.erb +3 -0
  55. data/app/views/kaui/tag_definitions/index.html.erb +34 -0
  56. data/app/views/kaui/tag_definitions/new.html.erb +3 -0
  57. data/app/views/kaui/tag_definitions/show.html.erb +12 -0
  58. data/app/views/kaui/tags/_tags_table.html.erb +3 -3
  59. data/config/locales/en.yml +3 -0
  60. data/config/locales/fr.yml +3 -0
  61. data/config/routes.rb +11 -1
  62. data/lib/kaui/version.rb +1 -1
  63. data/test/dummy/app/controllers/application_controller.rb +10 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +44 -11
  65. data/test/dummy/config/application.rb +1 -0
  66. data/test/dummy/config/database.yml +5 -4
  67. data/test/dummy/config/environments/development.rb +2 -0
  68. data/test/dummy/config/routes.rb +1 -2
  69. data/test/dummy/log/development.log +2419 -0
  70. data/test/dummy/log/test.log +3265 -131
  71. data/test/dummy/test/fixtures/accounts.yml +32 -0
  72. data/test/dummy/test/fixtures/bundles.yml +4 -0
  73. data/test/dummy/test/fixtures/invoice_items.yml +13 -0
  74. data/test/dummy/test/fixtures/invoices.yml +11 -0
  75. data/test/dummy/test/fixtures/payment_methods.yml +5 -0
  76. data/test/dummy/test/fixtures/plugin_info_properties.yml +59 -0
  77. data/test/dummy/test/fixtures/plugin_infos.yml +2 -0
  78. data/test/dummy/test/fixtures/refunds.yml +8 -0
  79. data/test/dummy/test/fixtures/tag_definitions.yml +9 -0
  80. data/test/dummy/tmp/cache/assets/C8D/6D0/sprockets%2F0ce756f49d61795508c543a702955fc2 +0 -0
  81. data/test/dummy/tmp/cache/assets/C94/4E0/sprockets%2Fea1476dc10a3348303f74d111f70441a +0 -0
  82. data/test/dummy/tmp/cache/assets/CD0/9D0/sprockets%2F5c9508c21501c73fbe00473a09b1f5f4 +0 -0
  83. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  84. data/test/dummy/tmp/cache/assets/CEA/300/sprockets%2Fdf2ad5c9d0990441c2bf59883383d652 +0 -0
  85. data/test/dummy/tmp/cache/assets/D0E/370/sprockets%2F27630db2080819f67c8a0ed5e491b7cb +0 -0
  86. data/test/dummy/tmp/cache/assets/D32/200/sprockets%2Ffa467106e01bda5d6246baea72159d64 +0 -0
  87. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  88. data/test/dummy/tmp/cache/assets/D39/5E0/sprockets%2F59fd338be48a81a17a2a785cbd1612b4 +0 -0
  89. data/test/dummy/tmp/cache/assets/D44/170/sprockets%2Fac15571bce3f926a498da7cd09322d97 +0 -0
  90. data/test/dummy/tmp/cache/assets/D4A/DD0/sprockets%2F0f813582283b7f56fd83fe3d52be7e2c +0 -0
  91. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  92. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  93. data/test/dummy/tmp/cache/assets/D6C/710/sprockets%2F1765773caead06c0a6a19ea9de2453f7 +0 -0
  94. data/test/dummy/tmp/cache/assets/D76/910/sprockets%2Ff99b4bdc434e11e8634e6af62fe805e0 +0 -0
  95. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  96. data/test/dummy/tmp/cache/assets/DF1/1A0/sprockets%2F7f6b7bfea83401d3106b7fadac81ea4b +0 -0
  97. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  98. data/test/dummy/tmp/cache/assets/E20/230/sprockets%2F7d3b1348fdf74cf1b6ba2107fbbac5af +0 -0
  99. data/test/dummy/vendor/assets/images/img/glyphicons-halflings-white.png +0 -0
  100. data/test/dummy/vendor/assets/images/img/glyphicons-halflings.png +0 -0
  101. data/test/dummy/vendor/assets/javascripts/bootstrap.v2.0.4.min.js +6 -0
  102. data/test/dummy/vendor/assets/javascripts/jquery.dataTables.v1.9.3.min.js +156 -0
  103. data/test/dummy/vendor/assets/stylesheets/bootstrap.v2.0.4.min.css +9 -0
  104. data/test/functional/kaui/accounts_controller_test.rb +63 -0
  105. data/test/functional/kaui/bundles_controller_test.rb +18 -6
  106. data/test/functional/kaui/invoice_items_controller_test.rb +18 -0
  107. data/test/functional/kaui/invoices_controller_test.rb +18 -6
  108. data/test/functional/kaui/tag_definitions_controller_test.rb +60 -0
  109. data/test/test_helper.rb +143 -0
  110. data/test/unit/helpers/kaui/plugin_infos_helper_test.rb +20 -0
  111. data/test/unit/kaui/account_test.rb +42 -0
  112. data/test/unit/kaui/base_test.rb +39 -0
  113. data/test/unit/kaui/date_helper_test.rb +13 -0
  114. data/test/unit/kaui/invoice_item_test.rb +23 -0
  115. data/test/unit/kaui/invoice_test.rb +20 -0
  116. data/test/unit/kaui/payment_method_test.rb +26 -0
  117. data/test/unit/kaui/plugin_info_property_test.rb +20 -0
  118. data/test/unit/kaui/plugin_info_test.rb +19 -0
  119. data/test/unit/kaui/refund_test.rb +19 -0
  120. data/test/unit/kaui/tag_definition_test.rb +23 -0
  121. data/test/unit/model_test.rb +23 -23
  122. metadata +330 -226
@@ -4,6 +4,7 @@ require 'rails/all'
4
4
 
5
5
  Bundler.require
6
6
  require "kaui"
7
+ require "jquery-rails"
7
8
 
8
9
  module Dummy
9
10
  class Application < Rails::Application
@@ -15,21 +15,22 @@ development:
15
15
  database: dummy_development
16
16
  pool: 5
17
17
  username: root
18
- password:
19
- socket: /tmp/mysql.sock
18
+ password: root
19
+ # socket: /tmp/mysql.sock
20
+ host: 127.0.0.1
20
21
 
21
22
  # Warning: The database defined as "test" will be erased and
22
23
  # re-generated from your development database when you run "rake".
23
24
  # Do not set this db to the same as development or production.
24
25
  test:
25
26
  adapter: mysql2
27
+ host: 127.0.0.1
26
28
  encoding: utf8
27
29
  reconnect: false
28
30
  database: kaui_test
29
31
  pool: 5
30
32
  username: root
31
- password:
32
- socket: /tmp/mysql.sock
33
+ password: root
33
34
 
34
35
  production:
35
36
  adapter: mysql2
@@ -1,6 +1,8 @@
1
1
  Dummy::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
+ config.killbill_url = ENV["KILLBILL_URL"] || "http://127.0.0.1:8080"
5
+
4
6
  # In the development environment your application's code is reloaded on
5
7
  # every request. This slows down response time but is perfect for development
6
8
  # since you don't have to restart the web server when you make code changes.
@@ -1,4 +1,3 @@
1
1
  Rails.application.routes.draw do
2
-
3
- mount Kaui::Engine => "/kaui"
2
+ mount Kaui::Engine => "/kaui", :as => "kaui_engine"
4
3
  end
@@ -0,0 +1,2419 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-08-15 14:43:20 -0700
4
+
5
+ Mysql2::Error (Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)):
6
+ mysql2 (0.3.11) lib/mysql2/client.rb:44:in `connect'
7
+ mysql2 (0.3.11) lib/mysql2/client.rb:44:in `initialize'
8
+ activerecord (3.2.3) lib/active_record/connection_adapters/mysql2_adapter.rb:16:in `new'
9
+ activerecord (3.2.3) lib/active_record/connection_adapters/mysql2_adapter.rb:16:in `mysql2_connection'
10
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:303:in `new_connection'
11
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:313:in `checkout_new_connection'
12
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:237:in `block (2 levels) in checkout'
13
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `loop'
14
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `block in checkout'
15
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
16
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:229:in `checkout'
17
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:95:in `connection'
18
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:398:in `retrieve_connection'
19
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
20
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
21
+ activerecord (3.2.3) lib/active_record/query_cache.rb:67:in `rescue in call'
22
+ activerecord (3.2.3) lib/active_record/query_cache.rb:61:in `call'
23
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
24
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
25
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__612671291980816164__call__4218869061147717016__callbacks'
26
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
27
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
28
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
29
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
30
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
31
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
32
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
33
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
35
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
36
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
38
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
39
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
40
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
41
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
42
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
43
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
44
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
45
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
46
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
47
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
48
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
49
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
50
+
51
+
52
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
53
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
54
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
55
+
56
+
57
+ Started GET "/" for 127.0.0.1 at 2012-08-15 14:44:33 -0700
58
+
59
+ ActionController::RoutingError (No route matches [GET] "/"):
60
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
61
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
62
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
63
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
64
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
65
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
66
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
67
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
68
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
69
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
70
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
71
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
72
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
73
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
74
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
75
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
76
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
77
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
78
+
79
+
80
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
81
+
82
+
83
+ Started GET "/kaui/" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
84
+ Processing by Kaui::HomeController#index as HTML
85
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/home/index.html.erb within layouts/application (0.3ms)
86
+ Compiled application.css (1ms) (pid 44408)
87
+ Compiled bootstrap.v2.0.4.min.css (0ms) (pid 44408)
88
+ Compiled jquery.js (1ms) (pid 44408)
89
+ Compiled jquery_ujs.js (0ms) (pid 44408)
90
+ Compiled application.js (37ms) (pid 44408)
91
+ Compiled bootstrap.v2.0.4.min.js (0ms) (pid 44408)
92
+ Compiled jquery.dataTables.v1.9.3.min.js (0ms) (pid 44408)
93
+ Completed 200 OK in 183ms (Views: 182.2ms | ActiveRecord: 0.0ms)
94
+
95
+
96
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
97
+ Served asset /application.css - 200 OK (20ms)
98
+
99
+
100
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
101
+ Served asset /bootstrap.v2.0.4.min.css - 200 OK (4ms)
102
+
103
+
104
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
105
+ Served asset /jquery.js - 200 OK (2ms)
106
+
107
+
108
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
109
+ Served asset /jquery_ujs.js - 200 OK (1ms)
110
+
111
+
112
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
113
+ Served asset /application.js - 200 OK (3ms)
114
+
115
+
116
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
117
+ Served asset /bootstrap.v2.0.4.min.js - 200 OK (1ms)
118
+
119
+
120
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 14:44:42 -0700
121
+ Served asset /jquery.dataTables.v1.9.3.min.js - 200 OK (1ms)
122
+
123
+
124
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 14:44:48 -0700
125
+ Processing by Kaui::AccountsController#index as HTML
126
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (21.3ms)
127
+ Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms)
128
+
129
+
130
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=4545&button=" for 127.0.0.1 at 2012-08-15 14:44:59 -0700
131
+ Processing by Kaui::AccountsController#index as HTML
132
+ Parameters: {"utf8"=>"✓", "account_id"=>"4545", "button"=>""}
133
+ Redirected to http://0.0.0.0:3000/kaui/accounts/4545
134
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
135
+
136
+
137
+ Started GET "/kaui/accounts/4545" for 127.0.0.1 at 2012-08-15 14:44:59 -0700
138
+ Processing by Kaui::AccountsController#show as HTML
139
+ Parameters: {"id"=>"4545"}
140
+ Performing get request to http://127.0.0.1:8080/1.0/kb/accounts?externalKey=4545
141
+ Completed in 19200ms
142
+
143
+
144
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 14:46:37 -0700
145
+ Processing by Kaui::AccountsController#index as HTML
146
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
147
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
148
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
149
+
150
+
151
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 14:46:38 -0700
152
+ Processing by Kaui::AccountsController#show as HTML
153
+ Parameters: {"id"=>"1by5ihjan8v51"}
154
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
155
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
156
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
157
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
158
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
159
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.6ms)
160
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.8ms)
161
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (6.2ms)
162
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.6ms)
163
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (39.6ms)
164
+ Completed 200 OK in 1154ms (Views: 83.8ms | ActiveRecord: 0.0ms)
165
+
166
+
167
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
168
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (8ms)
169
+
170
+
171
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
172
+ Served asset /jquery.js - 304 Not Modified (2ms)
173
+
174
+
175
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
176
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
177
+
178
+
179
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
180
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (1ms)
181
+
182
+
183
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
184
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (1ms)
185
+
186
+
187
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 14:46:39 -0700
188
+
189
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
190
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
191
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
192
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
193
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
194
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
195
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
196
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
197
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
198
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
199
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
200
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
201
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
202
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
203
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
204
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
205
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
206
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
207
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
208
+
209
+
210
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
211
+
212
+
213
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
214
+ Processing by Kaui::AccountsController#index as HTML
215
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (65.9ms)
216
+ Completed 200 OK in 72ms (Views: 71.5ms | ActiveRecord: 0.0ms)
217
+
218
+
219
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
220
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
221
+
222
+
223
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
224
+ Served asset /jquery.js - 304 Not Modified (0ms)
225
+
226
+
227
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
228
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
229
+
230
+
231
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
232
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
233
+
234
+
235
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 15:02:47 -0700
236
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
237
+
238
+
239
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=3idweqjtrwgij&button=" for 127.0.0.1 at 2012-08-15 15:03:06 -0700
240
+ Processing by Kaui::AccountsController#index as HTML
241
+ Parameters: {"utf8"=>"✓", "account_id"=>"3idweqjtrwgij", "button"=>""}
242
+ Redirected to http://0.0.0.0:3000/kaui/accounts/3idweqjtrwgij
243
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
244
+
245
+
246
+ Started GET "/kaui/accounts/3idweqjtrwgij" for 127.0.0.1 at 2012-08-15 15:03:06 -0700
247
+ Processing by Kaui::AccountsController#show as HTML
248
+ Parameters: {"id"=>"3idweqjtrwgij"}
249
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3idweqjtrwgij
250
+ Completed 500 Internal Server Error in 424ms
251
+
252
+ NoMethodError (undefined method `account_id' for #<String:0x00000102bf6cf8>):
253
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/controllers/kaui/accounts_controller.rb:22:in `show'
254
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
255
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
256
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
257
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
258
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
259
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
260
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
261
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
262
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
263
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
264
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
265
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
266
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
267
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
268
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
269
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
270
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
271
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
272
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
273
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
274
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
275
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
276
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
277
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
278
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
279
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
280
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
281
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
282
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
283
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
284
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
285
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
286
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
287
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
288
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
289
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
290
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
291
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
292
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
293
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
294
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
295
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
296
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
297
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
298
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
299
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
300
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
301
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
302
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
303
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
304
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
305
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
306
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
307
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
308
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
309
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
310
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
311
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
312
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
313
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
314
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
315
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
316
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
317
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
318
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
319
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
320
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
321
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
322
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
323
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
324
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
325
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
326
+
327
+
328
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
329
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.9ms)
330
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.5ms)
331
+
332
+
333
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
334
+ Processing by Kaui::AccountsController#index as HTML
335
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
336
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
337
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
338
+
339
+
340
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
341
+ Processing by Kaui::AccountsController#show as HTML
342
+ Parameters: {"id"=>"1by5ihjan8v51"}
343
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
344
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
345
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
346
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
347
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
348
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.2ms)
349
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.2ms)
350
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (2.0ms)
351
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.1ms)
352
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (23.8ms)
353
+ Completed 200 OK in 713ms (Views: 31.0ms | ActiveRecord: 0.0ms)
354
+
355
+
356
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
357
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
358
+
359
+
360
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
361
+ Served asset /jquery.js - 304 Not Modified (0ms)
362
+
363
+
364
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
365
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
366
+
367
+
368
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
369
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
370
+
371
+
372
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 15:03:31 -0700
373
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
374
+
375
+
376
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 15:28:18 -0700
377
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
378
+
379
+
380
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 15:56:51 -0700
381
+
382
+ SyntaxError (/Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/models/kaui/account.rb:37: syntax error, unexpected tSYMBEG, expecting ')'
383
+ :balance => data['accountBalance'])
384
+ ^
385
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/models/kaui/account.rb:37: syntax error, unexpected ')', expecting keyword_end):
386
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `load'
387
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `block in load_file'
388
+ activesupport (3.2.3) lib/active_support/dependencies.rb:639:in `new_constants_in'
389
+ activesupport (3.2.3) lib/active_support/dependencies.rb:468:in `load_file'
390
+ activesupport (3.2.3) lib/active_support/dependencies.rb:353:in `require_or_load'
391
+ activesupport (3.2.3) lib/active_support/dependencies.rb:502:in `load_missing_constant'
392
+ activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing'
393
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each'
394
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing'
395
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
396
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
397
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
398
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:259:in `safe_constantize'
399
+ activesupport (3.2.3) lib/active_support/core_ext/string/inflections.rb:66:in `safe_constantize'
400
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:152:in `_default_wrap_model'
401
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:169:in `_set_wrapper_defaults'
402
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:133:in `inherited'
403
+ actionpack (3.2.3) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
404
+ actionpack (3.2.3) lib/action_controller/railties/paths.rb:7:in `block (2 levels) in with'
405
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/controllers/kaui/accounts_controller.rb:4:in `<top (required)>'
406
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `load'
407
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `block in load_file'
408
+ activesupport (3.2.3) lib/active_support/dependencies.rb:639:in `new_constants_in'
409
+ activesupport (3.2.3) lib/active_support/dependencies.rb:468:in `load_file'
410
+ activesupport (3.2.3) lib/active_support/dependencies.rb:353:in `require_or_load'
411
+ activesupport (3.2.3) lib/active_support/dependencies.rb:502:in `load_missing_constant'
412
+ activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing'
413
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each'
414
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing'
415
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
416
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
417
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
418
+ activesupport (3.2.3) lib/active_support/dependencies.rb:554:in `get'
419
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
420
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
421
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
422
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
423
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
424
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
425
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
426
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
427
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
428
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
429
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
430
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
431
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
432
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
433
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
434
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
435
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
436
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
437
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
438
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
439
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
440
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
441
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
442
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
443
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
444
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
445
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
446
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
447
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
448
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
449
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
450
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
451
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
452
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
453
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
454
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
455
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
456
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
457
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
458
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
459
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
460
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
461
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
462
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
463
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
464
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
465
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
466
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
467
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
468
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
469
+
470
+
471
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
472
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
473
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
474
+
475
+
476
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 15:57:13 -0700
477
+ Processing by Kaui::AccountsController#show as HTML
478
+ Parameters: {"id"=>"1by5ihjan8v51"}
479
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
480
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
481
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
482
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
483
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
484
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (5.9ms)
485
+ Completed 500 Internal Server Error in 1730ms
486
+
487
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
488
+ 31: <dt>External key:</dt>
489
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
490
+ 33: <dt>Account balance:</dt>
491
+ 34: <% if @account.balance <= 0 %>
492
+ 35: <dd class="label label-success"><%= @account.balance %>&nbsp;</dd>
493
+ 36: <% else %>
494
+ 37: <dd class="label label-important"><%= @account.balance %>&nbsp;</dd>
495
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2170526560'
496
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
497
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
498
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
499
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
500
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
501
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
502
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
503
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
504
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
505
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
506
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
507
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
508
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
509
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
510
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
511
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
512
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
513
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
514
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
515
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
516
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
517
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
518
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
519
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
520
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
521
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
522
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
523
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
524
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
525
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
526
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
527
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
528
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
529
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
530
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
531
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
532
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
533
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
534
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
535
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
536
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
537
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
538
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
539
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
540
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
541
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
542
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
543
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
544
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
545
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
546
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
547
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
548
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
549
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
550
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
551
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
552
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
553
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
554
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
555
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
556
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
557
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
558
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
559
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
560
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
561
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
562
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
563
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
564
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
565
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
566
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
567
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
568
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
569
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
570
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
571
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
572
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
573
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
574
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
575
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
576
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
577
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
578
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
579
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
580
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
581
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
582
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
583
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
584
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
585
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
586
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
587
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
588
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
589
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
590
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
591
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
592
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
593
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
594
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
595
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
596
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
597
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
598
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
599
+
600
+
601
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (15.3ms)
602
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
603
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.0ms)
604
+
605
+
606
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 15:59:38 -0700
607
+ Processing by Kaui::AccountsController#index as HTML
608
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (0.8ms)
609
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
610
+
611
+
612
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 16:03:13 -0700
613
+ Processing by Kaui::AccountsController#index as HTML
614
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
615
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
616
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
617
+
618
+
619
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:03:13 -0700
620
+ Processing by Kaui::AccountsController#show as HTML
621
+ Parameters: {"id"=>"1by5ihjan8v51"}
622
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
623
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
624
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
625
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
626
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
627
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
628
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
629
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.6ms)
630
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.2ms)
631
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (7.6ms)
632
+ Completed 200 OK in 1361ms (Views: 33.3ms | ActiveRecord: 0.0ms)
633
+
634
+
635
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:03:14 -0700
636
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
637
+
638
+
639
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:03:14 -0700
640
+ Served asset /jquery.js - 304 Not Modified (0ms)
641
+
642
+
643
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:03:14 -0700
644
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
645
+
646
+
647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:03:14 -0700
648
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
649
+
650
+
651
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:03:14 -0700
652
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
653
+
654
+
655
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:03:26 -0700
656
+ Processing by Kaui::AccountsController#show as HTML
657
+ Parameters: {"id"=>"1by5ihjan8v51"}
658
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
659
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
660
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
661
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
662
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
663
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (2.3ms)
664
+ Completed 500 Internal Server Error in 582ms
665
+
666
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
667
+ 31: <dt>External key:</dt>
668
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
669
+ 33: <dt>Account balance:</dt>
670
+ 34: <% if @account.balance <= 0 %>
671
+ 35: <dd class="label label-success"><%= @account.balance %>&nbsp;</dd>
672
+ 36: <% else %>
673
+ 37: <dd class="label label-important"><%= @account.balance %>&nbsp;</dd>
674
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2159501720'
675
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
676
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
677
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
678
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
679
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
680
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
681
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
682
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
683
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
684
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
685
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
686
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
687
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
688
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
689
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
690
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
691
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
692
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
693
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
694
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
695
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
696
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
697
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
698
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
699
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
700
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
701
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
702
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
703
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
704
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
705
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
706
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
707
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
708
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
709
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
710
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
711
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
712
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
713
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
714
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
715
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
716
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
717
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
718
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
719
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
720
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
721
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
722
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
723
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
724
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
725
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
726
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
727
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
728
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
729
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
730
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
731
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
732
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
733
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
734
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
735
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
736
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
737
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
738
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
739
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
740
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
741
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
742
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
743
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
744
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
745
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
746
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
747
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
748
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
749
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
750
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
751
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
752
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
753
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
754
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
755
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
756
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
757
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
758
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
759
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
760
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
761
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
762
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
763
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
764
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
765
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
766
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
767
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
768
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
769
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
770
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
771
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
772
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
773
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
774
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
775
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
776
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
777
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
778
+
779
+
780
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
781
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
782
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
783
+
784
+
785
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:04:43 -0700
786
+ Processing by Kaui::AccountsController#show as HTML
787
+ Parameters: {"id"=>"1by5ihjan8v51"}
788
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
789
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
790
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
791
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
792
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
793
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (1.1ms)
794
+ Completed 500 Internal Server Error in 1092ms
795
+
796
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
797
+ 31: <dt>External key:</dt>
798
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
799
+ 33: <dt>Account balance:</dt>
800
+ 34: <% if @account.balance <= 0 %>
801
+ 35: <dd class="label label-success"><%= @account.balance %>&nbsp;</dd>
802
+ 36: <% else %>
803
+ 37: <dd class="label label-important"><%= @account.balance %>&nbsp;</dd>
804
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2159501720'
805
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
806
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
807
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
808
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
809
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
810
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
811
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
812
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
813
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
814
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
815
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
816
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
817
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
818
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
819
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
820
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
821
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
822
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
823
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
824
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
825
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
826
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
827
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
828
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
829
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
830
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
831
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
832
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
833
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
834
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
835
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
836
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
837
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
838
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
839
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
840
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
841
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
842
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
843
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
844
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
845
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
846
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
847
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
848
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
849
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
850
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
851
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
852
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
853
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
854
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
855
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
856
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
857
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
858
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
859
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
860
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
861
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
862
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
863
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
864
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
865
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
866
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
867
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
868
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
869
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
870
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
871
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
872
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
873
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
874
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
875
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
876
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
877
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
878
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
879
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
880
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
881
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
882
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
883
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
884
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
885
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
886
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
887
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
888
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
889
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
890
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
891
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
892
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
893
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
894
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
895
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
896
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
897
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
898
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
899
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
900
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
901
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
902
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
903
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
904
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
905
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
906
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
907
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
908
+
909
+
910
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
911
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
912
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
913
+
914
+
915
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:04:47 -0700
916
+ Processing by Kaui::AccountsController#show as HTML
917
+ Parameters: {"id"=>"1by5ihjan8v51"}
918
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
919
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
920
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
921
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
922
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
923
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (1.0ms)
924
+ Completed 500 Internal Server Error in 649ms
925
+
926
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
927
+ 31: <dt>External key:</dt>
928
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
929
+ 33: <dt>Account balance:</dt>
930
+ 34: <% if @account.balance <= 0 %>
931
+ 35: <dd class="label label-success"><%= @account.balance %>&nbsp;</dd>
932
+ 36: <% else %>
933
+ 37: <dd class="label label-important"><%= @account.balance %>&nbsp;</dd>
934
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2159501720'
935
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
936
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
937
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
938
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
939
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
940
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
941
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
942
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
943
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
944
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
945
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
946
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
947
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
948
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
949
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
950
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
951
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
952
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
953
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
954
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
955
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
956
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
957
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
958
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
959
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
960
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
961
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
962
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
963
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
964
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
965
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
966
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
967
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
968
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
969
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
970
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
971
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
972
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
973
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
974
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
975
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
976
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
977
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
978
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
979
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
980
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
981
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
982
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
983
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
984
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
985
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
986
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
987
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
988
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
989
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
990
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
991
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
992
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
993
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
994
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
995
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
996
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
997
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
998
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
999
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1000
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1001
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1002
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1003
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1004
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1005
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1006
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1007
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1008
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1009
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1010
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1011
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1012
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1013
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1014
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1015
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1016
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1017
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1018
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1019
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1020
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1021
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1022
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1023
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1024
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1025
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1026
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1027
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1028
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1029
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1030
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1031
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1032
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1033
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1034
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1035
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1036
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1037
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1038
+
1039
+
1040
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
1041
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1042
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms)
1043
+
1044
+
1045
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:05:46 -0700
1046
+ Processing by Kaui::AccountsController#show as HTML
1047
+ Parameters: {"id"=>"1by5ihjan8v51"}
1048
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51
1049
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1050
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1051
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1052
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1053
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.2ms)
1054
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.2ms)
1055
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.8ms)
1056
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.0ms)
1057
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (8.5ms)
1058
+ Completed 200 OK in 2073ms (Views: 34.8ms | ActiveRecord: 0.0ms)
1059
+
1060
+
1061
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1062
+ Served asset /application.css - 200 OK (3ms)
1063
+
1064
+
1065
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1066
+ Served asset /bootstrap.v2.0.4.min.css - 200 OK (0ms)
1067
+
1068
+
1069
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1070
+ Served asset /jquery.js - 200 OK (0ms)
1071
+
1072
+
1073
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1074
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1075
+
1076
+
1077
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1078
+ Served asset /application.js - 200 OK (3ms)
1079
+
1080
+
1081
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1082
+ Served asset /bootstrap.v2.0.4.min.js - 200 OK (0ms)
1083
+
1084
+
1085
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1086
+ Served asset /jquery.dataTables.v1.9.3.min.js - 200 OK (0ms)
1087
+
1088
+
1089
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:05:48 -0700
1090
+
1091
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
1092
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1093
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1094
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1095
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1096
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1097
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1098
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1099
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1100
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1101
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1102
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1103
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1104
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1105
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1106
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1107
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1108
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1109
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1110
+
1111
+
1112
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1113
+
1114
+
1115
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=502afd37-ae1b-432e-950f-9b4053a4ce0d&button=" for 127.0.0.1 at 2012-08-15 16:07:00 -0700
1116
+ Processing by Kaui::AccountsController#index as HTML
1117
+ Parameters: {"utf8"=>"✓", "account_id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d", "button"=>""}
1118
+ Redirected to http://0.0.0.0:3000/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d
1119
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
1120
+
1121
+
1122
+ Started GET "/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d" for 127.0.0.1 at 2012-08-15 16:07:00 -0700
1123
+ Processing by Kaui::AccountsController#show as HTML
1124
+ Parameters: {"id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d"}
1125
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d?accountWithBalance=true
1126
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1127
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1128
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1129
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1130
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.2ms)
1131
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.2ms)
1132
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (2.5ms)
1133
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.0ms)
1134
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (8.6ms)
1135
+ Completed 200 OK in 960ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1136
+
1137
+
1138
+ Started GET "/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d" for 127.0.0.1 at 2012-08-15 16:07:34 -0700
1139
+ Processing by Kaui::AccountsController#show as HTML
1140
+ Parameters: {"id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d"}
1141
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d?accountWithBalance=true
1142
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1143
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1144
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1145
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1146
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
1147
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
1148
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.6ms)
1149
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.9ms)
1150
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (6.8ms)
1151
+ Completed 200 OK in 531ms (Views: 13.3ms | ActiveRecord: 0.0ms)
1152
+
1153
+
1154
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1155
+ Served asset /application.css - 304 Not Modified (0ms)
1156
+
1157
+
1158
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1159
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
1160
+
1161
+
1162
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1163
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1164
+
1165
+
1166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1167
+ Served asset /application.js - 304 Not Modified (0ms)
1168
+
1169
+
1170
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1171
+ Served asset /jquery.js - 304 Not Modified (0ms)
1172
+
1173
+
1174
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1175
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
1176
+
1177
+
1178
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1179
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
1180
+
1181
+
1182
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:07:35 -0700
1183
+
1184
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
1185
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1186
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1187
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1188
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1189
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1190
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1191
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1192
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1193
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1194
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1195
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1196
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1197
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1198
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1199
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1200
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1201
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1202
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1203
+
1204
+
1205
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1206
+
1207
+
1208
+ Started GET "/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d" for 127.0.0.1 at 2012-08-15 16:09:07 -0700
1209
+ Processing by Kaui::AccountsController#show as HTML
1210
+ Parameters: {"id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d"}
1211
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d?accountWithBalance=true
1212
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1213
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1214
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1215
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1216
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
1217
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
1218
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.7ms)
1219
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.0ms)
1220
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (26.9ms)
1221
+ Completed 200 OK in 933ms (Views: 33.8ms | ActiveRecord: 0.0ms)
1222
+
1223
+
1224
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1225
+ Served asset /application.css - 200 OK (0ms)
1226
+
1227
+
1228
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1229
+ Served asset /bootstrap.v2.0.4.min.css - 200 OK (0ms)
1230
+
1231
+
1232
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1233
+ Served asset /jquery.js - 200 OK (0ms)
1234
+
1235
+
1236
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1237
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1238
+
1239
+
1240
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1241
+ Served asset /jquery.dataTables.v1.9.3.min.js - 200 OK (0ms)
1242
+
1243
+
1244
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1245
+ Served asset /bootstrap.v2.0.4.min.js - 200 OK (0ms)
1246
+
1247
+
1248
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1249
+ Served asset /application.js - 200 OK (0ms)
1250
+
1251
+
1252
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:09:08 -0700
1253
+
1254
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
1255
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1256
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1257
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1258
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1259
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1260
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1261
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1262
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1263
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1264
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1265
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1266
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1267
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1268
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1269
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1270
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1271
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1272
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1273
+
1274
+
1275
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1276
+
1277
+
1278
+ Started GET "/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d" for 127.0.0.1 at 2012-08-15 16:21:14 -0700
1279
+ Processing by Kaui::AccountsController#show as HTML
1280
+ Parameters: {"id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d"}
1281
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d?accountWithBalance=true
1282
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1283
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1284
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1285
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1286
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
1287
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
1288
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.6ms)
1289
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.9ms)
1290
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (7.1ms)
1291
+ Completed 200 OK in 1966ms (Views: 27.1ms | ActiveRecord: 0.0ms)
1292
+
1293
+
1294
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1295
+ Served asset /application.css - 200 OK (0ms)
1296
+
1297
+
1298
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1299
+ Served asset /bootstrap.v2.0.4.min.css - 200 OK (0ms)
1300
+
1301
+
1302
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1303
+ Served asset /jquery.js - 200 OK (0ms)
1304
+
1305
+
1306
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1307
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1308
+
1309
+
1310
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1311
+ Served asset /jquery.dataTables.v1.9.3.min.js - 200 OK (0ms)
1312
+
1313
+
1314
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1315
+ Served asset /bootstrap.v2.0.4.min.js - 200 OK (0ms)
1316
+
1317
+
1318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1319
+ Served asset /application.js - 200 OK (0ms)
1320
+
1321
+
1322
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:21:16 -0700
1323
+
1324
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
1325
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1326
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1327
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1328
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1329
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1330
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1331
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1332
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1333
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1334
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1335
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1336
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1337
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1338
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1339
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1340
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1341
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1342
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1343
+
1344
+
1345
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1346
+
1347
+
1348
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 16:21:22 -0700
1349
+ Processing by Kaui::AccountsController#index as HTML
1350
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (18.7ms)
1351
+ Completed 200 OK in 25ms (Views: 25.2ms | ActiveRecord: 0.0ms)
1352
+
1353
+
1354
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 16:21:24 -0700
1355
+ Processing by Kaui::AccountsController#index as HTML
1356
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
1357
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
1358
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1359
+
1360
+
1361
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:21:24 -0700
1362
+ Processing by Kaui::AccountsController#show as HTML
1363
+ Parameters: {"id"=>"1by5ihjan8v51"}
1364
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51?accountWithBalance=false
1365
+ Completed 500 Internal Server Error in 103ms
1366
+
1367
+ NoMethodError (undefined method `account_id' for #<String:0x00000102a762e8>):
1368
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/controllers/kaui/accounts_controller.rb:22:in `show'
1369
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1370
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1371
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1372
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1373
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
1374
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1375
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1376
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1377
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1378
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1379
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1380
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1381
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1382
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1383
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1384
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1385
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1386
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1387
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1388
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1389
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1390
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1391
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1392
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1393
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1394
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1395
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1396
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1397
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1398
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1399
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1400
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1401
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1402
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1403
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1404
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1405
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1406
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1407
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1408
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1409
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1410
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1411
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1412
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1413
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1414
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1415
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1416
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1417
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1418
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1419
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1420
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1421
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1422
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1423
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1424
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1425
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1426
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1427
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1428
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1429
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1430
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1431
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1432
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1433
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1434
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1435
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1436
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1437
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1438
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1439
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1440
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1441
+
1442
+
1443
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1444
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1445
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
1446
+
1447
+
1448
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 16:21:37 -0700
1449
+ Processing by Kaui::AccountsController#index as HTML
1450
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
1451
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
1452
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1453
+
1454
+
1455
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:21:37 -0700
1456
+ Processing by Kaui::AccountsController#show as HTML
1457
+ Parameters: {"id"=>"1by5ihjan8v51"}
1458
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51?accountWithBalance=false
1459
+ Completed 500 Internal Server Error in 63ms
1460
+
1461
+ NoMethodError (undefined method `account_id' for #<String:0x0000010179d518>):
1462
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/controllers/kaui/accounts_controller.rb:22:in `show'
1463
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1464
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1465
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1466
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1467
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
1468
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1469
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1470
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1471
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1472
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1473
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1474
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1475
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1476
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1477
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1478
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1479
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1480
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1481
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1482
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1483
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1484
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1485
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1486
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1487
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1488
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1489
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1490
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1491
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1492
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1493
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1494
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1495
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1496
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1497
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1498
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1499
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1500
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1501
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1502
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1503
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1504
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1505
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1506
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1507
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1508
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1509
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1510
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1511
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1512
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1513
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1514
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1515
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1516
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1517
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1518
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1519
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1520
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1521
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1522
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1523
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1524
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1525
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1526
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1527
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1528
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1529
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1530
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1531
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1532
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1533
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1534
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1535
+
1536
+
1537
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1538
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1539
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
1540
+
1541
+
1542
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=502afd37-ae1b-432e-950f-9b4053a4ce0d&button=" for 127.0.0.1 at 2012-08-15 16:22:06 -0700
1543
+ Processing by Kaui::AccountsController#index as HTML
1544
+ Parameters: {"utf8"=>"✓", "account_id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d", "button"=>""}
1545
+ Redirected to http://0.0.0.0:3000/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d
1546
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1547
+
1548
+
1549
+ Started GET "/kaui/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d" for 127.0.0.1 at 2012-08-15 16:22:06 -0700
1550
+ Processing by Kaui::AccountsController#show as HTML
1551
+ Parameters: {"id"=>"502afd37-ae1b-432e-950f-9b4053a4ce0d"}
1552
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d?accountWithBalance=true
1553
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1554
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1555
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1556
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1557
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
1558
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
1559
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.7ms)
1560
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.1ms)
1561
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (5.9ms)
1562
+ Completed 200 OK in 620ms (Views: 11.9ms | ActiveRecord: 0.0ms)
1563
+
1564
+
1565
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 16:22:16 -0700
1566
+ Processing by Kaui::AccountsController#index as HTML
1567
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
1568
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
1569
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1570
+
1571
+
1572
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:22:16 -0700
1573
+ Processing by Kaui::AccountsController#show as HTML
1574
+ Parameters: {"id"=>"1by5ihjan8v51"}
1575
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51?accountWithBalance=false
1576
+ Completed 500 Internal Server Error in 94ms
1577
+
1578
+ NoMethodError (undefined method `account_id' for #<String:0x00000102b78d08>):
1579
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/controllers/kaui/accounts_controller.rb:22:in `show'
1580
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1581
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1582
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1583
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1584
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
1585
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1586
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1587
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1588
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1589
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1590
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1591
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1592
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1593
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1594
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1595
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1596
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1597
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1598
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1599
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1600
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1601
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1602
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1603
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1604
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1605
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1606
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1607
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1608
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1609
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1610
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1611
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1612
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1613
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1614
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1615
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1616
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1617
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1618
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1619
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1620
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1621
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1622
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1623
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1624
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1625
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1626
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1627
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1628
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1629
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1630
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1631
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1632
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1633
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1634
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1635
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1636
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1637
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1638
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1639
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1640
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1641
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1642
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1643
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1644
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1645
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1646
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1647
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1648
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1649
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1650
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1651
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1652
+
1653
+
1654
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1655
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1656
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
1657
+
1658
+
1659
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:23:45 -0700
1660
+ Processing by Kaui::AccountsController#show as HTML
1661
+ Parameters: {"id"=>"1by5ihjan8v51"}
1662
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51&accountWithBalance=false
1663
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1664
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1665
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1666
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1667
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (1.3ms)
1668
+ Completed 500 Internal Server Error in 1243ms
1669
+
1670
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
1671
+ 31: <dt>External key:</dt>
1672
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
1673
+ 33: <dt>Account balance:</dt>
1674
+ 34: <% if @account.balance <= 0 %>
1675
+ 35: <dd><span class="label label-success" ><%= @account.balance %></span> &nbsp;</dd>
1676
+ 36: <% else %>
1677
+ 37: <dd><span class="label label-success" ><%= @account.balance %></span>&nbsp;</dd>
1678
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2170898600'
1679
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
1680
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
1681
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
1682
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1683
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1684
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1685
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1686
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1687
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1688
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1689
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1690
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1691
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
1692
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
1693
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
1694
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
1695
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1696
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1697
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1698
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1699
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
1700
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
1701
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1702
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1703
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1704
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1705
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1706
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1707
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1708
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
1709
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1710
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1711
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1712
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1713
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1714
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
1715
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1716
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1717
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1718
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1719
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1720
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1721
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1722
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1723
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1724
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1725
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1726
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1727
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1728
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1729
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1730
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1731
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1732
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1733
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1734
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1735
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1736
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1737
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1738
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1739
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1740
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1741
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1742
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1743
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1744
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1745
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1746
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1747
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1748
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1749
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1750
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1751
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1752
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1753
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1754
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1755
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1756
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1757
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1758
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1759
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1760
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1761
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1762
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1763
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1764
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1765
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1766
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1767
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1768
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1769
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1770
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1771
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1772
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1773
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1774
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1775
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1776
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1777
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1778
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1779
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1780
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1781
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1782
+
1783
+
1784
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
1785
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1786
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
1787
+
1788
+
1789
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 16:24:19 -0700
1790
+ Processing by Kaui::AccountsController#index as HTML
1791
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (0.8ms)
1792
+ Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
1793
+
1794
+
1795
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=1by5ihjan8v51&button=" for 127.0.0.1 at 2012-08-15 16:25:34 -0700
1796
+ Processing by Kaui::AccountsController#index as HTML
1797
+ Parameters: {"utf8"=>"✓", "account_id"=>"1by5ihjan8v51", "button"=>""}
1798
+ Redirected to http://0.0.0.0:3000/kaui/accounts/1by5ihjan8v51
1799
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1800
+
1801
+
1802
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:25:34 -0700
1803
+ Processing by Kaui::AccountsController#show as HTML
1804
+ Parameters: {"id"=>"1by5ihjan8v51"}
1805
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51&accountWithBalance=false
1806
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1807
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1808
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1809
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1810
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (1.2ms)
1811
+ Completed 500 Internal Server Error in 997ms
1812
+
1813
+ ActionView::Template::Error (undefined method `<=' for nil:NilClass):
1814
+ 31: <dt>External key:</dt>
1815
+ 32: <dd><%= @account.external_key %>&nbsp;</dd>
1816
+ 33: <dt>Account balance:</dt>
1817
+ 34: <% if @account.balance <= 0 %>
1818
+ 35: <dd><span class="label label-success" ><%= @account.balance %></span> &nbsp;</dd>
1819
+ 36: <% else %>
1820
+ 37: <dd><span class="label label-success" ><%= @account.balance %></span>&nbsp;</dd>
1821
+ /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb:34:in `___sers_stephane__ork__ing____new_billing_killbill_admin_ui_app_views_kaui_accounts_show_html_erb___4320741309688929593_2170898600'
1822
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
1823
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
1824
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
1825
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1826
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1827
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1828
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1829
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1830
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1831
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1832
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1833
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1834
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
1835
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
1836
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
1837
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
1838
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1839
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1840
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1841
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1842
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
1843
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
1844
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1845
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1846
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1847
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1848
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1849
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1850
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1851
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
1852
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1853
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1854
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1855
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1856
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1857
+ activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3952221813715914029__process_action__3594078986690569223__callbacks'
1858
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1859
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1860
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1861
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1862
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1863
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1864
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1865
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1866
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1867
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1868
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1869
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1870
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1871
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1872
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1873
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1874
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1875
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1876
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1877
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1878
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1879
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1880
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1881
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1882
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1883
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1884
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1885
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1886
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1887
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1888
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1889
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1890
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1891
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1892
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1893
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1894
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1895
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1896
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1897
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1898
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1899
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1900
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4386624111443788316__call__1388049988643347349__callbacks'
1901
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1902
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1903
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1904
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1905
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1906
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1907
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1908
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1909
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1910
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1911
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1912
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1913
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1914
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1915
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1916
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1917
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1918
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1919
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1920
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1921
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1922
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1923
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1924
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1925
+
1926
+
1927
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
1928
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1929
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
1930
+
1931
+
1932
+ Started GET "/kaui/accounts/1by5ihjan8v51" for 127.0.0.1 at 2012-08-15 16:26:14 -0700
1933
+ Processing by Kaui::AccountsController#show as HTML
1934
+ Parameters: {"id"=>"1by5ihjan8v51"}
1935
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=1by5ihjan8v51&accountWithBalance=true
1936
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/paymentMethods?withPluginInfo=true
1937
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/502afd37-ae1b-432e-950f-9b4053a4ce0d/bundles
1938
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/b36c4158-5dbf-44c2-ac3a-0b49afedf2e6/subscriptions
1939
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/a5ea69b3-c201-4a88-b562-9666f50ae2e7/subscriptions
1940
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
1941
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
1942
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.6ms)
1943
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.9ms)
1944
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (5.4ms)
1945
+ Completed 200 OK in 748ms (Views: 12.1ms | ActiveRecord: 0.0ms)
1946
+
1947
+
1948
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1949
+ Served asset /application.css - 304 Not Modified (0ms)
1950
+
1951
+
1952
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1953
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
1954
+
1955
+
1956
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1957
+ Served asset /jquery.js - 304 Not Modified (0ms)
1958
+
1959
+
1960
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1961
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1962
+
1963
+
1964
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1965
+ Served asset /application.js - 304 Not Modified (0ms)
1966
+
1967
+
1968
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1969
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
1970
+
1971
+
1972
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1973
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
1974
+
1975
+
1976
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:26:15 -0700
1977
+
1978
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
1979
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1980
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1981
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1982
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1983
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1984
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1985
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1986
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1987
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1988
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1989
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1990
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1991
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1992
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1993
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1994
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1995
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1996
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1997
+
1998
+
1999
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
2000
+
2001
+
2002
+ Started GET "/kaui/accounts/3t7unqnnkg4vy" for 127.0.0.1 at 2012-08-15 16:26:51 -0700
2003
+ Processing by Kaui::AccountsController#show as HTML
2004
+ Parameters: {"id"=>"3t7unqnnkg4vy"}
2005
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3t7unqnnkg4vy&accountWithBalance=true
2006
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/9cb07dfb-f272-4c06-888e-94efbd56ef57/paymentMethods?withPluginInfo=true
2007
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/9cb07dfb-f272-4c06-888e-94efbd56ef57/bundles
2008
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/c9b9c38e-3aa9-4ccf-a17a-7e88d4aac8f5/subscriptions
2009
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2010
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
2011
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.1ms)
2012
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (4.4ms)
2013
+ Completed 200 OK in 957ms (Views: 24.1ms | ActiveRecord: 0.0ms)
2014
+
2015
+
2016
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2017
+ Served asset /application.css - 304 Not Modified (0ms)
2018
+
2019
+
2020
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2021
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2022
+
2023
+
2024
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2025
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2026
+
2027
+
2028
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2029
+ Served asset /jquery.js - 304 Not Modified (0ms)
2030
+
2031
+
2032
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2033
+ Served asset /application.js - 304 Not Modified (0ms)
2034
+
2035
+
2036
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2037
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2038
+
2039
+
2040
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:52 -0700
2041
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2042
+
2043
+
2044
+ Started GET "/kaui/accounts/3sbc7zski1sg2" for 127.0.0.1 at 2012-08-15 16:26:58 -0700
2045
+ Processing by Kaui::AccountsController#show as HTML
2046
+ Parameters: {"id"=>"3sbc7zski1sg2"}
2047
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3sbc7zski1sg2&accountWithBalance=true
2048
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/3c3fcc49-1f7a-4cbe-9dfc-78c4d3047753/paymentMethods?withPluginInfo=true
2049
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/3c3fcc49-1f7a-4cbe-9dfc-78c4d3047753/bundles
2050
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/584f63ea-0076-4844-bb27-cae5e55ae218/subscriptions
2051
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/411f54bb-803f-4bc6-a822-fff059f7ddb0/subscriptions
2052
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/c8d1ebfc-21a0-4b73-8c30-922d8508199d/subscriptions
2053
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/1d7cc94a-bc7a-4202-8362-cc5f17a23d5a/subscriptions
2054
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2055
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (19.2ms)
2056
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.1ms)
2057
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.9ms)
2058
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.9ms)
2059
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (0.8ms)
2060
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (28.5ms)
2061
+ Completed 200 OK in 967ms (Views: 34.9ms | ActiveRecord: 0.0ms)
2062
+
2063
+
2064
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2065
+ Served asset /application.css - 304 Not Modified (0ms)
2066
+
2067
+
2068
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2069
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2070
+
2071
+
2072
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2073
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2074
+
2075
+
2076
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2077
+ Served asset /jquery.js - 304 Not Modified (0ms)
2078
+
2079
+
2080
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2081
+ Served asset /application.js - 304 Not Modified (0ms)
2082
+
2083
+
2084
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2085
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2086
+
2087
+
2088
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:26:59 -0700
2089
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2090
+
2091
+
2092
+ Started GET "/kaui/accounts/3gmvem320fgqn" for 127.0.0.1 at 2012-08-15 16:27:05 -0700
2093
+ Processing by Kaui::AccountsController#show as HTML
2094
+ Parameters: {"id"=>"3gmvem320fgqn"}
2095
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3gmvem320fgqn&accountWithBalance=true
2096
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/2c9fbadd-2d33-4c56-93c8-02e59ed532d3/paymentMethods?withPluginInfo=true
2097
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/2c9fbadd-2d33-4c56-93c8-02e59ed532d3/bundles
2098
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/8ed498f5-fcb4-4aec-9959-901fa366570d/subscriptions
2099
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.2ms)
2100
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.2ms)
2101
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (2.5ms)
2102
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (6.6ms)
2103
+ Completed 200 OK in 576ms (Views: 13.4ms | ActiveRecord: 0.0ms)
2104
+
2105
+
2106
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2107
+ Served asset /application.css - 304 Not Modified (0ms)
2108
+
2109
+
2110
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2111
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2112
+
2113
+
2114
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2115
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2116
+
2117
+
2118
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2119
+ Served asset /jquery.js - 304 Not Modified (0ms)
2120
+
2121
+
2122
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2123
+ Served asset /application.js - 304 Not Modified (0ms)
2124
+
2125
+
2126
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2127
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2128
+
2129
+
2130
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:06 -0700
2131
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2132
+
2133
+
2134
+ Started GET "/kaui/accounts/3c0rmh4yv469u" for 127.0.0.1 at 2012-08-15 16:27:46 -0700
2135
+ Processing by Kaui::AccountsController#show as HTML
2136
+ Parameters: {"id"=>"3c0rmh4yv469u"}
2137
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3c0rmh4yv469u&accountWithBalance=true
2138
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/paymentMethods?withPluginInfo=true
2139
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/bundles
2140
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/8bac80f8-ff1c-42ec-bb1e-8a52f7cc5b71/subscriptions
2141
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/825ac071-a49f-4263-9be6-f91a6fc6794f/subscriptions
2142
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/7a30b62b-e63d-4212-a2c9-61ea4f51c153/subscriptions
2143
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2144
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.7ms)
2145
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (2.1ms)
2146
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (21.0ms)
2147
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.8ms)
2148
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (30.4ms)
2149
+ Completed 200 OK in 1669ms (Views: 36.4ms | ActiveRecord: 0.0ms)
2150
+
2151
+
2152
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2153
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2154
+
2155
+
2156
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2157
+ Served asset /application.css - 304 Not Modified (0ms)
2158
+
2159
+
2160
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2161
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2162
+
2163
+
2164
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2165
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2166
+
2167
+
2168
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2169
+ Served asset /jquery.js - 304 Not Modified (0ms)
2170
+
2171
+
2172
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2173
+ Served asset /application.js - 304 Not Modified (0ms)
2174
+
2175
+
2176
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:27:48 -0700
2177
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2178
+
2179
+
2180
+ Started GET "/kaui/accounts/3c0rmh4yv469u" for 127.0.0.1 at 2012-08-15 16:28:36 -0700
2181
+ Processing by Kaui::AccountsController#show as HTML
2182
+ Parameters: {"id"=>"3c0rmh4yv469u"}
2183
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3c0rmh4yv469u&accountWithBalance=true
2184
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/paymentMethods?withPluginInfo=true
2185
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/bundles
2186
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/8bac80f8-ff1c-42ec-bb1e-8a52f7cc5b71/subscriptions
2187
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/825ac071-a49f-4263-9be6-f91a6fc6794f/subscriptions
2188
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/7a30b62b-e63d-4212-a2c9-61ea4f51c153/subscriptions
2189
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2190
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.7ms)
2191
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.8ms)
2192
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.9ms)
2193
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.8ms)
2194
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (12.2ms)
2195
+ Completed 200 OK in 1622ms (Views: 32.2ms | ActiveRecord: 0.0ms)
2196
+
2197
+
2198
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2199
+ Served asset /application.css - 304 Not Modified (0ms)
2200
+
2201
+
2202
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2203
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2204
+
2205
+
2206
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2207
+ Served asset /jquery.js - 304 Not Modified (0ms)
2208
+
2209
+
2210
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2211
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2212
+
2213
+
2214
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2215
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2216
+
2217
+
2218
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2219
+ Served asset /application.js - 304 Not Modified (0ms)
2220
+
2221
+
2222
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2223
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2224
+
2225
+
2226
+ Started GET "/img/glyphicons-halflings.png" for 127.0.0.1 at 2012-08-15 16:28:37 -0700
2227
+
2228
+ ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
2229
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2230
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2231
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
2232
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
2233
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2234
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2235
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2236
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2237
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2238
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
2239
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2240
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
2241
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2242
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
2243
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2244
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2245
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2246
+ /Users/stephane/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2247
+
2248
+
2249
+ Rendered /Users/stephane/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
2250
+
2251
+
2252
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2253
+ Processing by Kaui::AccountsController#index as HTML
2254
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (0.8ms)
2255
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2256
+
2257
+
2258
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2259
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2260
+
2261
+
2262
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2263
+ Served asset /jquery.js - 304 Not Modified (0ms)
2264
+
2265
+
2266
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2267
+ Served asset /application.css - 304 Not Modified (0ms)
2268
+
2269
+
2270
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2271
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2272
+
2273
+
2274
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2275
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2276
+
2277
+
2278
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2279
+ Served asset /application.js - 304 Not Modified (0ms)
2280
+
2281
+
2282
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:06 -0700
2283
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2284
+
2285
+
2286
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=3c0rmh4yv469u&button=" for 127.0.0.1 at 2012-08-15 16:29:11 -0700
2287
+ Processing by Kaui::AccountsController#index as HTML
2288
+ Parameters: {"utf8"=>"✓", "account_id"=>"3c0rmh4yv469u", "button"=>""}
2289
+ Redirected to http://0.0.0.0:3000/kaui/accounts/3c0rmh4yv469u
2290
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2291
+
2292
+
2293
+ Started GET "/kaui/accounts/3c0rmh4yv469u" for 127.0.0.1 at 2012-08-15 16:29:11 -0700
2294
+ Processing by Kaui::AccountsController#show as HTML
2295
+ Parameters: {"id"=>"3c0rmh4yv469u"}
2296
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3c0rmh4yv469u&accountWithBalance=true
2297
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/paymentMethods?withPluginInfo=true
2298
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/73ad2b1e-0086-46ef-a3a0-8206814ee07e/bundles
2299
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/8bac80f8-ff1c-42ec-bb1e-8a52f7cc5b71/subscriptions
2300
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/825ac071-a49f-4263-9be6-f91a6fc6794f/subscriptions
2301
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/7a30b62b-e63d-4212-a2c9-61ea4f51c153/subscriptions
2302
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2303
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.9ms)
2304
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.7ms)
2305
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.7ms)
2306
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.8ms)
2307
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (11.0ms)
2308
+ Completed 200 OK in 1052ms (Views: 17.5ms | ActiveRecord: 0.0ms)
2309
+
2310
+
2311
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2312
+ Served asset /application.css - 304 Not Modified (0ms)
2313
+
2314
+
2315
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2316
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2317
+
2318
+
2319
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2320
+ Served asset /jquery.js - 304 Not Modified (0ms)
2321
+
2322
+
2323
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2324
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2325
+
2326
+
2327
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2328
+ Served asset /application.js - 304 Not Modified (0ms)
2329
+
2330
+
2331
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2332
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2333
+
2334
+
2335
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:12 -0700
2336
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2337
+
2338
+
2339
+ Started GET "/kaui/accounts" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2340
+ Processing by Kaui::AccountsController#index as HTML
2341
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/index.html.erb within layouts/application (0.8ms)
2342
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
2343
+
2344
+
2345
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2346
+ Served asset /application.css - 304 Not Modified (0ms)
2347
+
2348
+
2349
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2350
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2351
+
2352
+
2353
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2354
+ Served asset /jquery.js - 304 Not Modified (0ms)
2355
+
2356
+
2357
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2358
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2359
+
2360
+
2361
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2362
+ Served asset /application.js - 304 Not Modified (0ms)
2363
+
2364
+
2365
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2366
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)
2367
+
2368
+
2369
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:19 -0700
2370
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2371
+
2372
+
2373
+ Started GET "/kaui/accounts?utf8=%E2%9C%93&account_id=3gmvem320fgqn&button=" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2374
+ Processing by Kaui::AccountsController#index as HTML
2375
+ Parameters: {"utf8"=>"✓", "account_id"=>"3gmvem320fgqn", "button"=>""}
2376
+ Redirected to http://0.0.0.0:3000/kaui/accounts/3gmvem320fgqn
2377
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2378
+
2379
+
2380
+ Started GET "/kaui/accounts/3gmvem320fgqn" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2381
+ Processing by Kaui::AccountsController#show as HTML
2382
+ Parameters: {"id"=>"3gmvem320fgqn"}
2383
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts?externalKey=3gmvem320fgqn&accountWithBalance=true
2384
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/2c9fbadd-2d33-4c56-93c8-02e59ed532d3/paymentMethods?withPluginInfo=true
2385
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/accounts/2c9fbadd-2d33-4c56-93c8-02e59ed532d3/bundles
2386
+ Performing get request to http://z20046c.ningops.com:8080/1.0/kb/bundles/8ed498f5-fcb4-4aec-9959-901fa366570d/subscriptions
2387
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/tags/_tags_table.html.erb (0.1ms)
2388
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/payment_methods/_payment_methods_table.html.erb (0.1ms)
2389
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/subscriptions/_subscriptions_table.html.erb (1.9ms)
2390
+ Rendered /Users/stephane/Work/Ning/WS/new-billing/killbill-admin-ui/app/views/kaui/accounts/show.html.erb within layouts/application (4.7ms)
2391
+ Completed 200 OK in 625ms (Views: 10.3ms | ActiveRecord: 0.0ms)
2392
+
2393
+
2394
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2395
+ Served asset /application.css - 304 Not Modified (0ms)
2396
+
2397
+
2398
+ Started GET "/assets/bootstrap.v2.0.4.min.css?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2399
+ Served asset /bootstrap.v2.0.4.min.css - 304 Not Modified (0ms)
2400
+
2401
+
2402
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2403
+ Served asset /jquery.js - 304 Not Modified (0ms)
2404
+
2405
+
2406
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2407
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2408
+
2409
+
2410
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2411
+ Served asset /application.js - 304 Not Modified (0ms)
2412
+
2413
+
2414
+ Started GET "/assets/bootstrap.v2.0.4.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2415
+ Served asset /bootstrap.v2.0.4.min.js - 304 Not Modified (0ms)
2416
+
2417
+
2418
+ Started GET "/assets/jquery.dataTables.v1.9.3.min.js?body=1" for 127.0.0.1 at 2012-08-15 16:29:22 -0700
2419
+ Served asset /jquery.dataTables.v1.9.3.min.js - 304 Not Modified (0ms)