Skip to content

Instantly share code, notes, and snippets.

2013-03-21T15:37:01+00:00 app[web.1]: Started GET "/users/auth/doorkeeper/callback?code=2aa9e5dc43234da02445f54b23d095ed829e281c56130c5e801783bbdd931550&state=ce2bf44d60a697534cc16fa2f4288d4d78411bcdcbbe363a" for 108.178.120.144 at 2013-03-21 15:37:01 +0000
2013-03-21T15:37:01+00:00 app[web.1]: (doorkeeper) Callback phase initiated.
2013-03-21T15:37:01+00:00 app[web.1]:
2013-03-21T15:37:01+00:00 app[web.1]: Faraday::Error::ConnectionFailed (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed):
2013-03-21T15:37:01+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/net/http.rb:678:in `connect'
2013-03-21T15:37:01+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/net/http.rb:678:in `block in connect'
2013-03-21T15:37:01+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
2013-03-21T15:37:01+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/timeout.rb:89:in `timeout'
2013-03-21T15:37:01+00:00 app[web.1]: /usr/local/lib/ruby/1.9.1/net/http.rb:678:in `connect'
@olds22
olds22 / rspec-syntax-cheat-sheet.rb
Created April 18, 2012 20:33 — forked from dnagir/rspec-syntax-cheat-sheet.rb
RSpec 2 syntax cheat sheet by example
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below)
module Player
describe MovieList, "with optional description" do
it "is pending example, so that you can write ones quickly"
it "is already working example that we want to suspend from failing temporarily" do
pending("working on another feature that temporarily breaks this one")