inst_lti_twitter 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/inst_lti_twitter/banner.png +0 -0
  5. data/app/assets/images/inst_lti_twitter/icon.png +0 -0
  6. data/app/assets/images/inst_lti_twitter/icon_large.png +0 -0
  7. data/app/assets/images/inst_lti_twitter/logo.png +0 -0
  8. data/app/assets/javascripts/inst_lti_twitter/angular_extras/eat_click.js +7 -0
  9. data/app/assets/javascripts/inst_lti_twitter/application.js +4 -0
  10. data/app/assets/javascripts/inst_lti_twitter/lti.js +99 -0
  11. data/app/assets/javascripts/inst_lti_twitter/vendor/angular.min.js +163 -0
  12. data/app/assets/javascripts/inst_lti_twitter/vendor/moment.min.js +6 -0
  13. data/app/assets/stylesheets/inst_lti_twitter/application.css +3 -0
  14. data/app/assets/stylesheets/inst_lti_twitter/lti.css.erb +59 -0
  15. data/app/controllers/inst_lti_twitter/api_controller.rb +77 -0
  16. data/app/controllers/inst_lti_twitter/application_controller.rb +9 -0
  17. data/app/controllers/inst_lti_twitter/lti_controller.rb +11 -0
  18. data/app/views/inst_lti_twitter/lti/index.html.erb +125 -0
  19. data/app/views/layouts/inst_lti_twitter/application.html.erb +16 -0
  20. data/config/inst_lti_twitter_config.yml.example +14 -0
  21. data/config/routes.rb +6 -0
  22. data/lib/inst_lti_twitter.rb +17 -0
  23. data/lib/inst_lti_twitter/config.rb +1 -0
  24. data/lib/inst_lti_twitter/engine.rb +15 -0
  25. data/lib/inst_lti_twitter/inst_lti_twitter_config.rb +21 -0
  26. data/lib/inst_lti_twitter/version.rb +3 -0
  27. data/lib/tasks/inst_lti_twitter_tasks.rake +4 -0
  28. data/test/controllers/inst_lti_twitter/api_controller_test.rb +9 -0
  29. data/test/controllers/inst_lti_twitter/lti_controller_test.rb +9 -0
  30. data/test/dummy/README.rdoc +28 -0
  31. data/test/dummy/Rakefile +6 -0
  32. data/test/dummy/app/assets/javascripts/application.js +13 -0
  33. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  34. data/test/dummy/app/controllers/application_controller.rb +5 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  37. data/test/dummy/bin/bundle +3 -0
  38. data/test/dummy/bin/rails +4 -0
  39. data/test/dummy/bin/rake +4 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/config/application.rb +23 -0
  42. data/test/dummy/config/boot.rb +5 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +29 -0
  46. data/test/dummy/config/environments/production.rb +80 -0
  47. data/test/dummy/config/environments/test.rb +36 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/test/dummy/config/initializers/inflections.rb +16 -0
  51. data/test/dummy/config/initializers/mime_types.rb +5 -0
  52. data/test/dummy/config/initializers/secret_token.rb +12 -0
  53. data/test/dummy/config/initializers/session_store.rb +3 -0
  54. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/test/dummy/config/inst_lti_twitter_config.yml +14 -0
  56. data/test/dummy/config/locales/en.yml +23 -0
  57. data/test/dummy/config/routes.rb +3 -0
  58. data/test/dummy/db/development.sqlite3 +0 -0
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +1513 -0
  61. data/test/dummy/log/test.log +19 -0
  62. data/test/dummy/public/404.html +58 -0
  63. data/test/dummy/public/422.html +58 -0
  64. data/test/dummy/public/500.html +57 -0
  65. data/test/dummy/public/favicon.ico +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/14d5c76c0ffab343293cde8a31b82bff +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/1eadd30db7bb0837651d58bfa901a39c +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/269e6fdfa6104cb9932d4642fd3d1524 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/26fc69fc10099a90e0d2479ff4377fb2 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/2a0861953abc215ea3711e3ec40a4cc7 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/326bc27a540abbcb94f6b178c1cda9f0 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/32f4192f26c0e69ad53bd73c22648f94 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/3ee1677c335eec80c456b17de8d5268a +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/4f9679ef7615b5a227c0a91afe1bb0bb +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/6093229732fa51d75c00e5790d99808c +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/646bce92bb3bf8aa3189b09aa1717ec5 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/6cbe236f39f9f64d63588bbd1e768dea +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/75feb2df5e26bf52b4fceaaec9facae9 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/7a7f93cf5bab226b1bf488f71eeb52eb +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/863667247bb93c6a93698b72085199d7 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/86aab3116ac7cdfd986e9961785d13b6 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/897923ab25815c1d13f5c555ea481f5f +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/9ab549426bdacfb3fdad9975782a5a44 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/aec575b8e90823794acf087f1a2d57ee +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/b378dada0c9ae9c33f83d538d78dc7de +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/b37916ab6aca04e448443f3558594a03 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/b4d0970587f347dbccff5556d69b9773 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/bdc03eab7ae1465d2c341d1d98752155 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/ce5fb2afc0ad9a22df32042646e74565 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/d0ca809791e5063fd247dddef937e122 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/ed6c59b5f4e49dcbe4f7ad6be23ef703 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/edac3e7f91748a43e8a8148e396a9de8 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/f2000047965568db87b4ee9d2cdcedab +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/f990465950914b019e26288631883774 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/fa9569f3fe10be8b5b1939b4b2c916a7 +0 -0
  96. data/test/inst_lti_twitter_test.rb +7 -0
  97. data/test/integration/navigation_test.rb +10 -0
  98. data/test/test_helper.rb +15 -0
  99. metadata +283 -0
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,29 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '1b035d0a93a30138715853c03f7581ad507b8fe6971332fbda6adffd2cca6b02bdf0304e88e1eb119921b32e95127b9b1212f26019be25ad79abe1e1f993ef2d'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,14 @@
1
+ default: &default
2
+ inst_lti_twitter_consumer_key: "INST_LTI_TWITTER_CONSUMER_KEY"
3
+ inst_lti_twitter_consumer_secret: "INST_LTI_TWITTER_CONSUMER_SECRET"
4
+ inst_lti_twitter_access_token: "INST_LTI_TWITTER_ACCESS_TOKEN"
5
+ inst_lti_twitter_access_token_secret: "INST_LTI_TWITTER_ACCESS_TOKEN_SECRET"
6
+
7
+ development:
8
+ <<: *default
9
+
10
+ test:
11
+ <<: *default
12
+
13
+ production:
14
+ <<: *default
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount InstLtiTwitter::Engine => "/twitter"
3
+ end
File without changes
File without changes
@@ -0,0 +1,1513 @@
1
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
2
+
3
+
4
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:43:30 -0600
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/twitter"):
7
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
10
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
11
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
12
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
13
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
14
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
15
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
16
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
18
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
19
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
21
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
23
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
24
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
25
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
26
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
27
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
28
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
29
+
30
+
31
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
32
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
33
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
34
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms)
35
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.7ms)
36
+
37
+
38
+ Started GET "/inst_lti_twitter" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
39
+ Processing by InstLtiTwitter::LtiController#index as HTML
40
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.4ms)
41
+ Completed 200 OK in 61ms (Views: 60.7ms | ActiveRecord: 0.0ms)
42
+
43
+
44
+ Started GET "/assets/inst_lti_twitter/vendor/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
45
+
46
+
47
+ Started GET "/assets/inst_lti_twitter/api.css?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
48
+
49
+
50
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
51
+
52
+
53
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
54
+
55
+
56
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
57
+
58
+
59
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
60
+
61
+
62
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
63
+
64
+
65
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
66
+
67
+
68
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
69
+
70
+
71
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:43:39 -0600
72
+
73
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
74
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
75
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
76
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
77
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
78
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
79
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
80
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
81
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
82
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
83
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
84
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
85
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
86
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
87
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
88
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
89
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
90
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
91
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
92
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
93
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
94
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
95
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
96
+
97
+
98
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
99
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
100
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
101
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
102
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.7ms)
103
+
104
+
105
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:43:48 -0600
106
+ Processing by InstLtiTwitter::LtiController#index as HTML
107
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.1ms)
108
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
109
+
110
+
111
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:43:48 -0600
112
+
113
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
114
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
115
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
116
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
117
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
118
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
119
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
120
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
121
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
122
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
123
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
124
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
125
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
126
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
127
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
128
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
129
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
130
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
131
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
132
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
133
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
134
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
135
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
136
+
137
+
138
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
139
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
140
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
141
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
142
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms)
143
+
144
+
145
+ Started GET "/twitter/api/tweets.json?hashtag=cerebus&username=&max=10" for 127.0.0.1 at 2013-10-15 08:43:57 -0600
146
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
147
+ Parameters: {"hashtag"=>"cerebus", "username"=>"", "max"=>"10"}
148
+ Completed 500 Internal Server Error in 255ms
149
+
150
+ Twitter::Error::Unauthorized (Invalid or expired token):
151
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
152
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
153
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
154
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
155
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
156
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
157
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
158
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
159
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
160
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
161
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
162
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:103:in `object_from_response'
163
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/search.rb:31:in `search'
164
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:18:in `tweets'
165
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
166
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
167
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
168
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
169
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2683242981139909533__process_action__callbacks'
170
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
171
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
172
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
173
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
174
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
175
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
176
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
177
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
178
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
179
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
180
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
181
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
182
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
183
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
184
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
185
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
186
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
187
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
188
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
189
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
190
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
191
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
192
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
193
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
194
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
195
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
196
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
197
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
198
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
199
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
200
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
201
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
202
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
203
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
204
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
205
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
206
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
207
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
208
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
209
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
210
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4270556925544860931__call__callbacks'
211
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
212
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
213
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
214
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
215
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
216
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
217
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
218
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
219
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
220
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
221
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
222
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
223
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
224
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
225
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
226
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
227
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
228
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
229
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
230
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
231
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
232
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
233
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
234
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
235
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
236
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
237
+
238
+
239
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
240
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
241
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (14.5ms)
242
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms)
243
+
244
+
245
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
246
+ Processing by InstLtiTwitter::LtiController#index as HTML
247
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.0ms)
248
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
249
+
250
+
251
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
252
+
253
+
254
+ Started GET "/assets/inst_lti_twitter/vendor/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
255
+
256
+
257
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
258
+
259
+
260
+ Started GET "/assets/inst_lti_twitter/api.css?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
261
+
262
+
263
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
264
+
265
+
266
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
267
+
268
+
269
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
270
+
271
+
272
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
273
+
274
+
275
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
276
+
277
+
278
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
279
+
280
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
281
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
282
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
283
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
284
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
285
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
286
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
287
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
288
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
289
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
290
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
291
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
292
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
293
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
294
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
295
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
296
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
298
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
299
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
300
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
301
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
302
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
303
+
304
+
305
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
306
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
307
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
308
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
309
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.9ms)
310
+
311
+
312
+ Started GET "/twitter_lti/icon_large.png" for 127.0.0.1 at 2013-10-15 08:44:48 -0600
313
+
314
+ ActionController::RoutingError (No route matches [GET] "/twitter_lti/icon_large.png"):
315
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
316
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
317
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
318
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
319
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
320
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
321
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
322
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
323
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
324
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
325
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
326
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
327
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
328
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
329
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
330
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
331
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
332
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
333
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
334
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
335
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
336
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
337
+
338
+
339
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
340
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (26.3ms)
341
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
342
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
343
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (39.4ms)
344
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
345
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
346
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
347
+
348
+
349
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
350
+ Processing by InstLtiTwitter::LtiController#index as HTML
351
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.9ms)
352
+ Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.0ms)
353
+
354
+
355
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
356
+
357
+
358
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
359
+
360
+
361
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
362
+
363
+
364
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
365
+
366
+
367
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
368
+
369
+
370
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
371
+
372
+
373
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
374
+
375
+
376
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
377
+
378
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
379
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
380
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
381
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
382
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
383
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
384
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
385
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
386
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
387
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
388
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
389
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
390
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
391
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
392
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
393
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
394
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
395
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
396
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
397
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
398
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
399
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
400
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
401
+
402
+
403
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
404
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
405
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
406
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
407
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.3ms)
408
+
409
+
410
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:51:47 -0600
411
+
412
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
413
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
414
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
415
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
416
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
417
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
418
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
419
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
420
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
421
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
422
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
423
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
424
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
425
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
426
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
427
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
428
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
429
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
430
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
431
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
432
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
433
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
434
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
435
+
436
+
437
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
438
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
439
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
440
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
441
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.9ms)
442
+
443
+
444
+ Started GET "/twitter/api/tweets.json?hashtag=cerebus&username=&max=10" for 127.0.0.1 at 2013-10-15 08:51:51 -0600
445
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
446
+ Parameters: {"hashtag"=>"cerebus", "username"=>"", "max"=>"10"}
447
+ Completed 500 Internal Server Error in 243ms
448
+
449
+ Twitter::Error::Unauthorized (Invalid or expired token):
450
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
451
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
452
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
453
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
454
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
455
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
456
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
457
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
458
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
459
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
460
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
461
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:103:in `object_from_response'
462
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/search.rb:31:in `search'
463
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:18:in `tweets'
464
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
465
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
466
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
467
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
468
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__1523808359715962666__process_action__callbacks'
469
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
470
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
471
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
472
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
473
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
474
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
475
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
476
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
477
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
478
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
479
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
480
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
481
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
482
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
483
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
484
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
485
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
486
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
487
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
488
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
489
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
490
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
491
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
492
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
493
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
494
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
495
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
496
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
497
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
498
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
499
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
500
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
501
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
502
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
503
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
504
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
505
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
506
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
507
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
508
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
509
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2881321166689855474__call__callbacks'
510
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
511
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
512
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
513
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
514
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
515
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
516
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
517
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
518
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
519
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
520
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
521
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
522
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
523
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
524
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
525
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
526
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
527
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
528
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
529
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
530
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
531
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
532
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
533
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
534
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
535
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
536
+
537
+
538
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
539
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
540
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.7ms)
541
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.8ms)
542
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
543
+
544
+
545
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
546
+ Processing by InstLtiTwitter::LtiController#index as HTML
547
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.9ms)
548
+ Completed 200 OK in 43ms (Views: 42.8ms | ActiveRecord: 0.0ms)
549
+
550
+
551
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
552
+
553
+
554
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
555
+
556
+
557
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
558
+
559
+
560
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
561
+
562
+
563
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
564
+
565
+
566
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
567
+
568
+
569
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
570
+
571
+
572
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
573
+
574
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
575
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
576
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
577
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
578
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
579
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
580
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
581
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
582
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
583
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
584
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
585
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
586
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
587
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
588
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
589
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
590
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
591
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
592
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
593
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
594
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
595
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
596
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
597
+
598
+
599
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
600
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
601
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
602
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
603
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.2ms)
604
+
605
+
606
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:00 -0600
607
+
608
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
609
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
610
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
611
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
612
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
613
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
614
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
615
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
616
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
617
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
618
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
619
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
620
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
621
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
622
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
623
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
624
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
625
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
626
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
627
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
628
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
629
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
630
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
631
+
632
+
633
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
634
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
635
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
636
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
637
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.1ms)
638
+
639
+
640
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:53:10 -0600
641
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
642
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
643
+ Completed 500 Internal Server Error in 267ms
644
+
645
+ Twitter::Error::Unauthorized (Invalid or expired token):
646
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
647
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
648
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
649
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
650
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
651
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
652
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
653
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
654
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
655
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
656
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
657
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:71:in `objects_from_response'
658
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:62:in `objects_from_response_with_user'
659
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/timelines.rb:50:in `user_timeline'
660
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:28:in `tweets'
661
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
662
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
663
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
664
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
665
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__3070539664934378385__process_action__callbacks'
666
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
667
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
668
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
669
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
670
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
671
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
672
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
673
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
674
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
675
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
676
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
677
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
678
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
679
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
680
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
681
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
682
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
683
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
684
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
685
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
686
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
687
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
688
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
689
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
690
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
691
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
692
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
693
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
694
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
695
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
696
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
697
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
698
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
699
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
700
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
701
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
702
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
703
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
704
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
705
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
706
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3983889523651716772__call__callbacks'
707
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
708
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
709
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
710
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
711
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
712
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
713
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
714
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
715
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
716
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
717
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
718
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
719
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
720
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
721
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
722
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
723
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
724
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
725
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
726
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
727
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
728
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
729
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
730
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
731
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
732
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
733
+
734
+
735
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
736
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
737
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (14.5ms)
738
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms)
739
+
740
+
741
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
742
+ Processing by InstLtiTwitter::LtiController#index as HTML
743
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.0ms)
744
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
745
+
746
+
747
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
748
+
749
+
750
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
751
+
752
+
753
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
754
+
755
+
756
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
757
+
758
+
759
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
760
+
761
+
762
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
763
+
764
+
765
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
766
+
767
+
768
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
769
+
770
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
771
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
772
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
773
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
774
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
775
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
776
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
777
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
778
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
779
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
780
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
781
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
782
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
783
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
784
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
785
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
786
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
787
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
788
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
789
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
790
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
791
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
792
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
793
+
794
+
795
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
796
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
797
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
798
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
799
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.0ms)
800
+
801
+
802
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:26 -0600
803
+
804
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
805
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
806
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
807
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
808
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
809
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
810
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
811
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
812
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
813
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
814
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
815
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
816
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
817
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
818
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
819
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
820
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
821
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
822
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
823
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
824
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
825
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
826
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
827
+
828
+
829
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
830
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
831
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
832
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
833
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.8ms)
834
+
835
+
836
+ Started GET "/twitter" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
837
+ Processing by InstLtiTwitter::LtiController#index as HTML
838
+ Rendered /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/views/inst_lti_twitter/lti/index.html.erb within layouts/inst_lti_twitter/application (0.0ms)
839
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
840
+
841
+
842
+ Started GET "/assets/inst_lti_twitter/lti.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
843
+
844
+
845
+ Started GET "/assets/inst_lti_twitter/vendor/moment.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
846
+
847
+
848
+ Started GET "/assets/inst_lti_twitter/vendor/angular.min.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
849
+
850
+
851
+ Started GET "/assets/inst_lti_twitter/application.css?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
852
+
853
+
854
+ Started GET "/assets/inst_lti_twitter/lti.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
855
+
856
+
857
+ Started GET "/assets/inst_lti_twitter/angular_extras/eat_click.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
858
+
859
+
860
+ Started GET "/assets/inst_lti_twitter/application.js?body=1" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
861
+
862
+
863
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
864
+
865
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
866
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
867
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
868
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
869
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
870
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
871
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
872
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
873
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
874
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
875
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
876
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
877
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
878
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
879
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
880
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
881
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
882
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
883
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
884
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
885
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
886
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
887
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
888
+
889
+
890
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
891
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
892
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
893
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
894
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.2ms)
895
+
896
+
897
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:53:35 -0600
898
+
899
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
900
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
901
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
902
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
903
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
904
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
905
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
906
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
907
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
908
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
909
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
910
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
911
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
912
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
913
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
914
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
915
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
916
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
917
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
918
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
919
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
920
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
921
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
922
+
923
+
924
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
925
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
926
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
927
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
928
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.9ms)
929
+
930
+
931
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:53:41 -0600
932
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
933
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
934
+ Completed 500 Internal Server Error in 227ms
935
+
936
+ Twitter::Error::Unauthorized (Invalid or expired token):
937
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
938
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
939
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
940
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
941
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
942
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
943
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
944
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
945
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
946
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
947
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
948
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:71:in `objects_from_response'
949
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:62:in `objects_from_response_with_user'
950
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/timelines.rb:50:in `user_timeline'
951
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:28:in `tweets'
952
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
953
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
954
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
955
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
956
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__3070539664934378385__process_action__callbacks'
957
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
958
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
959
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
960
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
961
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
962
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
963
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
964
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
965
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
966
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
967
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
968
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
969
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
970
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
971
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
972
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
973
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
974
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
975
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
976
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
977
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
978
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
979
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
980
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
981
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
982
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
983
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
984
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
985
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
986
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
987
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
988
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
989
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
990
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
991
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
992
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
993
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
994
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
995
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
996
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
997
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3983889523651716772__call__callbacks'
998
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
999
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1000
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1001
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1002
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1003
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1004
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1005
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1006
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1007
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1008
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1009
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1010
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1011
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1012
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1013
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1014
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1015
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1016
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1017
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1018
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1019
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1020
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1021
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1022
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1023
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1024
+
1025
+
1026
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1027
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1028
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1029
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
1030
+
1031
+
1032
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:54:23 -0600
1033
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1034
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1035
+ Completed 500 Internal Server Error in 1595ms
1036
+
1037
+ Twitter::Error::Unauthorized (Invalid or expired token):
1038
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
1039
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
1040
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
1041
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
1042
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
1043
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
1044
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
1045
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
1046
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
1047
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
1048
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
1049
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:71:in `objects_from_response'
1050
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:62:in `objects_from_response_with_user'
1051
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/timelines.rb:50:in `user_timeline'
1052
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:28:in `tweets'
1053
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1054
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1055
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1056
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1057
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__3070539664934378385__process_action__callbacks'
1058
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1059
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1060
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1061
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1062
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1063
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1064
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1065
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1066
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1067
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1068
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1069
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1070
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1071
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1072
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1073
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1074
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1075
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1076
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1077
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1078
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1079
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1080
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1081
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
1082
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1083
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1084
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1085
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1086
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1087
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1088
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1089
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1090
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1091
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1092
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1093
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1094
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1095
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1096
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1097
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1098
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3983889523651716772__call__callbacks'
1099
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1100
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1101
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1102
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1103
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1104
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1105
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1106
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1107
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1108
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1109
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1110
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1111
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1112
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1113
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1114
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1115
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1116
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1117
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1118
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1119
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1120
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1121
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1122
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1123
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1124
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1125
+
1126
+
1127
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1128
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1129
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1130
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
1131
+
1132
+
1133
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:54:39 -0600
1134
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1135
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1136
+ Completed 500 Internal Server Error in 223ms
1137
+
1138
+ Twitter::Error::Unauthorized (Invalid or expired token):
1139
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
1140
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
1141
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
1142
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
1143
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
1144
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
1145
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
1146
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
1147
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
1148
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
1149
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
1150
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:71:in `objects_from_response'
1151
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:62:in `objects_from_response_with_user'
1152
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/timelines.rb:50:in `user_timeline'
1153
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:28:in `tweets'
1154
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1155
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1156
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1157
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1158
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__3070539664934378385__process_action__callbacks'
1159
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1160
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1161
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1162
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1163
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1164
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1165
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1166
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1167
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1168
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1169
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1170
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1171
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1172
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1173
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1174
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1175
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1176
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1177
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1178
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1179
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1180
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1181
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1182
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
1183
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1184
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1185
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1186
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1187
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1188
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1189
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1190
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1191
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1192
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1193
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1194
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1195
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1196
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1197
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1198
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1199
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3983889523651716772__call__callbacks'
1200
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1201
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1202
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1203
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1204
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1205
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1206
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1207
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1208
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1209
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1210
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1211
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1212
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1213
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1214
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1215
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1216
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1217
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1218
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1219
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1220
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1221
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1222
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1223
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1224
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1225
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1226
+
1227
+
1228
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1229
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1230
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1231
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
1232
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
1233
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
1234
+
1235
+
1236
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:55:34 -0600
1237
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1238
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1239
+ Completed 500 Internal Server Error in 1ms
1240
+
1241
+ LoadError (cannot load such file -- pry):
1242
+ activesupport (4.0.0) lib/active_support/dependencies.rb:228:in `require'
1243
+ activesupport (4.0.0) lib/active_support/dependencies.rb:228:in `block in require'
1244
+ activesupport (4.0.0) lib/active_support/dependencies.rb:213:in `load_dependency'
1245
+ activesupport (4.0.0) lib/active_support/dependencies.rb:228:in `require'
1246
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:9:in `tweets'
1247
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1248
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1249
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1250
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1251
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__790754627130141926__process_action__callbacks'
1252
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1253
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1254
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1255
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1256
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1257
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1258
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1259
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1260
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1261
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1262
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1263
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1264
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1265
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1266
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1267
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1268
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1269
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1270
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1271
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1272
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1273
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1274
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1275
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
1276
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1277
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1278
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1279
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1280
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1281
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1282
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1283
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1284
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1285
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1286
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1287
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1288
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1289
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1290
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1291
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1292
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1647694795804681408__call__callbacks'
1293
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1294
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1295
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1296
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1297
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1298
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1299
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1300
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1301
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1302
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1303
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1304
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1305
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1306
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1307
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1308
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1309
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1310
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1311
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1312
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1313
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1314
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1315
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1316
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1317
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1318
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1319
+
1320
+
1321
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1322
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1323
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.9ms)
1324
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.6ms)
1325
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
1326
+
1327
+
1328
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:56:14 -0600
1329
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1330
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1331
+ Completed 500 Internal Server Error in 34166ms
1332
+
1333
+ Twitter::Error::Unauthorized (Invalid or expired token):
1334
+ twitter (5.0.0.rc.1) lib/twitter/rest/response/raise_error.rb:22:in `on_complete'
1335
+ faraday (0.8.8) lib/faraday/response.rb:9:in `block in call'
1336
+ faraday (0.8.8) lib/faraday/response.rb:63:in `on_complete'
1337
+ faraday (0.8.8) lib/faraday/response.rb:8:in `call'
1338
+ faraday (0.8.8) lib/faraday/request/url_encoded.rb:14:in `call'
1339
+ faraday (0.8.8) lib/faraday/request/multipart.rb:13:in `call'
1340
+ twitter (5.0.0.rc.1) lib/twitter/rest/request/multipart_with_file.rb:15:in `call'
1341
+ faraday (0.8.8) lib/faraday/connection.rb:253:in `run_request'
1342
+ faraday (0.8.8) lib/faraday/connection.rb:106:in `get'
1343
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:156:in `request'
1344
+ twitter (5.0.0.rc.1) lib/twitter/rest/client.rb:107:in `get'
1345
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:71:in `objects_from_response'
1346
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/utils.rb:62:in `objects_from_response_with_user'
1347
+ twitter (5.0.0.rc.1) lib/twitter/rest/api/timelines.rb:50:in `user_timeline'
1348
+ /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/app/controllers/inst_lti_twitter/api_controller.rb:31:in `tweets'
1349
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1350
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1351
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1352
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1353
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2295190105628500453__process_action__callbacks'
1354
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1355
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1356
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1357
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1358
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1359
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1360
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1361
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1362
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1363
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1364
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1365
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1366
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1367
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1368
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1369
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1370
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1371
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1372
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1373
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1374
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1375
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1376
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1377
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
1378
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1379
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1380
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1381
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1382
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1383
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1384
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1385
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1386
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1387
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1388
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1389
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1390
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1391
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1392
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1393
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1394
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__900465914650586192__call__callbacks'
1395
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1396
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1397
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1398
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1399
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1400
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1401
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1402
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1403
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1404
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1405
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1406
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1407
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1408
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1409
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1410
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1411
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1412
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1413
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1414
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1415
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1416
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1417
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1418
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1419
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1420
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1421
+
1422
+
1423
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1424
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (30.7ms)
1425
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (14.8ms)
1426
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (54.6ms)
1427
+ Loading environment variables in /Users/eberry/Projects/Instructure/lti_engines/inst_lti_twitter/test/dummy/config/inst_lti_twitter_config.yml
1428
+
1429
+
1430
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:57:46 -0600
1431
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1432
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1433
+ Completed 200 OK in 313ms (Views: 14.2ms | ActiveRecord: 0.0ms)
1434
+
1435
+
1436
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:57:47 -0600
1437
+
1438
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
1439
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1440
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1441
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1442
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1443
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1444
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1445
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1446
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1447
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1448
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1449
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1450
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1451
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1452
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1453
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1454
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1455
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1456
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1457
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1458
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1459
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1460
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1461
+
1462
+
1463
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1464
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1465
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1466
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms)
1467
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.5ms)
1468
+
1469
+
1470
+ Started POST "/twitter/api/embed.json" for 127.0.0.1 at 2013-10-15 08:57:50 -0600
1471
+ Processing by InstLtiTwitter::ApiController#embed as JSON
1472
+ Parameters: {"launch_params"=>{}, "hashtag"=>"", "username"=>"cavneb", "max"=>10, "api"=>{"launch_params"=>{}, "hashtag"=>"", "username"=>"cavneb", "max"=>10}}
1473
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1474
+
1475
+
1476
+ Started GET "/twitter/api/tweets.json?hashtag=&username=cavneb&max=10" for 127.0.0.1 at 2013-10-15 08:57:52 -0600
1477
+ Processing by InstLtiTwitter::ApiController#tweets as JSON
1478
+ Parameters: {"hashtag"=>"", "username"=>"cavneb", "max"=>"10"}
1479
+ Completed 200 OK in 275ms (Views: 13.5ms | ActiveRecord: 0.0ms)
1480
+
1481
+
1482
+ Started GET "/%7B%7Btweet.user.profile_image_url%7D%7D" for 127.0.0.1 at 2013-10-15 08:57:52 -0600
1483
+
1484
+ ActionController::RoutingError (No route matches [GET] "/%7B%7Btweet.user.profile_image_url%7D%7D"):
1485
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1486
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1487
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1488
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1489
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1490
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1491
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1492
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1493
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1494
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1495
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1496
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1497
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1498
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1499
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1500
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1501
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1502
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1503
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1504
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1505
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1506
+ /Users/eberry/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1507
+
1508
+
1509
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1510
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1511
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1512
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1513
+ Rendered /Users/eberry/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.9ms)