Skip to content

Instantly share code, notes, and snippets.

View mattd's full-sized avatar

Matt Dawson mattd

  • WillowTree Apps
  • Charlottesville, VA
View GitHub Profile
{
"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",
/*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" : "" %>' +
var App = require('app');
App.BaseModel = DS.Model.extend({
primaryKey: 'key'
});
App.BaseModel.reopenClass({
url: function () {
return '/api';
}
import code;code.interact(local=locals())
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
define([
"spec/helpers/responses",
"collections/section"
],
function (Responses, SectionCollection) {
describe("SectionCollection", function () {
var responses;
$('#position').live('pageshow', function(event, ui) {
google.maps.event.trigger(map, 'resize');
});
$('#map-init').click(function() {
google.maps.event.trigger(map, 'resize');
});
define([
"namespace",
// Libs
"use!backbone",
// Modules
"modules/asset",
// Plugins
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "lucid"
config.vm.customize(["modifyvm", :id, "--nictype1", "Am79C973"])
end