some fixes for bad things. i'm sad

This commit is contained in:
John Bintz 2012-02-03 15:12:28 -05:00
parent bad6839760
commit 4f11cba073
4 changed files with 7 additions and 4 deletions

View File

@ -15,7 +15,6 @@ gem 'guard-cucumber'
require 'rbconfig'
case RbConfig::CONFIG['host_os']
when /darwin/
gem 'rb-fsevent'
when /linux/
gem 'libnotify'
end

View File

@ -14,7 +14,7 @@ require 'jasmine/headless/task'
Jasmine::Headless::Task.new
PLATFORMS = %w{1.8.7 1.9.2 ree 1.9.3}
PLATFORMS = %w{1.9.2 1.9.3}
def rvm_bundle(command = '')
Bundler.with_clean_env do

View File

@ -24,5 +24,5 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'coffee-script'
s.add_runtime_dependency 'rainbow'
s.add_runtime_dependency 'multi_json'
s.add_runtime_dependency 'sprockets', '~> 2'
s.add_runtime_dependency 'sprockets', '>= 2'
end

View File

@ -35,13 +35,17 @@
}
}
var location = window.location.href;
var getLastModified = function(callback) {
var http = new XMLHttpRequest();
var header;
http.open('HEAD', window.location.href, false);
http.open('HEAD', location, true);
http.onreadystatechange = function() {
console.log(http);
console.log(http.getResponseHeader('Last-Modified'));
callback(http.getResponseHeader('Last-Modified'));
};
http.send();