This file contains hidden or 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
{ | |
"author": "", | |
"name": "app", | |
"version": "0.1.0", | |
"dependencies": { | |
"grunt": "~0.4.0a", | |
"grunt-contrib-clean": "~0.3.0", | |
"grunt-contrib-concat": "~0.1.0", | |
"grunt-contrib-connect": "~0.1.0", | |
"grunt-contrib-handlebars": "~0.3.0", |
This file contains hidden or 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
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('package.json'), | |
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + | |
'<%= grunt.template.today("yyyy-mm-dd") %>\n' + | |
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + |
This file contains hidden or 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
var App = require('app'); | |
App.BaseModel = DS.Model.extend({ | |
primaryKey: 'key' | |
}); | |
App.BaseModel.reopenClass({ | |
url: function () { | |
return '/api'; | |
} |
This file contains hidden or 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
import code;code.interact(local=locals()) |
This file contains hidden or 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
JULY 27 - desktop alpha -> includes login, logout, view profile, view newsfeed (no posting, salluting or commenting) | |
AUGUST 17 - mobile v1 alpha -> see desktop alpha | |
AUGUST 31 - desktop beta -> includes map, search, posting, salluting, commenting, find follows, profile creation | |
AUGUST 31 - desktop testing begins | |
SEPTEMBER 14 - mobile v1 beta -> includes newsfeed, impact videos, sign in, profile view, resources | |
SEPTEMBER 14 - mobile v1 testing begins | |
SEPTEMBER 21 - desktop official launch | |
SEPTEMBER 28 - mobile v1 official launch | |
OCTOBER 19 - mobile v1.1 beta -> includes check-in, find follows, search, profile creation | |
OCTOBER 19 - mobile v1.1 testing begins |
This file contains hidden or 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
define([ | |
"spec/helpers/responses", | |
"collections/section" | |
], | |
function (Responses, SectionCollection) { | |
describe("SectionCollection", function () { | |
var responses; |
This file contains hidden or 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
$('#position').live('pageshow', function(event, ui) { | |
google.maps.event.trigger(map, 'resize'); | |
}); | |
$('#map-init').click(function() { | |
google.maps.event.trigger(map, 'resize'); | |
}); |
This file contains hidden or 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
define([ | |
"namespace", | |
// Libs | |
"use!backbone", | |
// Modules | |
"modules/asset", | |
// Plugins |
This file contains hidden or 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
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
config.vm.box = "lucid" | |
config.vm.customize(["modifyvm", :id, "--nictype1", "Am79C973"]) | |
end |