This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra/base' | |
module Sinatra | |
module FragmentCache | |
def fragment_cache(name, age, &block) | |
if cache = read_fragment(name, age) | |
@_out_buf << cache | |
else | |
pos = @_out_buf.length | |
tmp = block.call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repo initialized in /Users/carloslopes/Projects/B2G | |
remote: Counting objects: 21614, done. | |
remote: Counting objects: 618498, done. | |
remote: Compressing objects: 100% (168650/168650), done. | |
remote: Compressing objects: 100% (7443/7443), done. | |
fatal: read error: Connection reset by peer82 MiB | 380 KiB/s | |
fatal: early EOF | |
fatal: index-pack failed | |
remote: Counting objects: 21614, done. | |
fatal: read error: Connection reset by peer3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...................................................................................................................................................................................................Finished "EnableLogging" with response "Success()" | |
Wrote response true "" | |
Received "Visit" | |
Started "Visit" | |
Load started | |
"Visit" started page load | |
Started request to "http://127.0.0.1:53196/sign_in" | |
Finished "Visit" with response "Success()" | |
Started request to "http://127.0.0.1:53196/assets/application.css" | |
Started request to "http://127.0.0.1:53196/assets/application.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/854622 | |
(function(window,undefined){ | |
// Prepare our Variables | |
var | |
History = window.History, | |
$ = window.jQuery, | |
document = window.document; | |
// Check to see if History.js is enabled for our Browser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Failures: | |
1) RegistrationsController GET show content should have the personal informations | |
Failure/Error: expect(response.body).to have_selector('dd#email', :text => @user.email.html_safe) | |
expected css "dd#email" with text "<a href=\"mailto:[email protected]\">[email protected]</a>" to return something |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
set :threads, [] | |
get '/' do | |
settings.threads << Thread.new { sleep 10 } | |
'New thread created' | |
end | |
get '/threads' do |
NewerOlder