updated magent, now using my fork untill bugfix gets pulled

This commit is contained in:
maxwell 2010-11-17 13:49:12 -08:00
parent 387a7628a8
commit 045c8f1aac
3 changed files with 21 additions and 19 deletions

View file

@ -37,7 +37,7 @@ gem 'thin'
#Websocket
gem 'em-websocket', :git => 'git://github.com/igrigorik/em-websocket'
gem 'magent', :git => 'git://github.com/dcu/magent.git'
gem 'magent', :git => 'git://github.com/maxwell/magent.git'
#File uploading
gem 'carrierwave', :git => 'git://github.com/rsofaer/carrierwave.git' , :branch => 'master' #Untested mongomapper branch

View file

@ -13,15 +13,6 @@ GIT
devise-mongo_mapper (0.0.1)
devise (~> 1.1.0)
GIT
remote: git://github.com/dcu/magent.git
revision: 90ee5db241abd2e2b7d7de5c80f0d7c5b4b8db2d
specs:
magent (0.5.1)
em-websocket
mongo
uuidtools
GIT
remote: git://github.com/iain/http_accept_language.git
revision: 0b78aa7849fc90cf9e12586af162fa4c408a795d
@ -55,6 +46,15 @@ GIT
activesupport (~> 3.0.0)
plucky (~> 0.3.6)
GIT
remote: git://github.com/maxwell/magent.git
revision: af5ad4b58e27fc0ca49bea8ab11ec3f746e92f33
specs:
magent (0.5.1)
em-websocket
mongo
uuidtools
GIT
remote: git://github.com/rsofaer/carrierwave.git
revision: c3dfbdda2fa227af91fe383bb126f59b991a318f

View file

@ -36,16 +36,18 @@
= csrf_meta_tag
= yield(:head)
:javascript
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17207587-5']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
-if true#APP_CONFIG[:google_a_site]
:javascript
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '#{APP_CONFIG[:google_a_site]}']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
%body
- flash.each do |name, msg|