Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Add missing newline at the end of text files #413

Merged
merged 1 commit into from
Feb 17, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .slugignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/app/tests
/app/tests
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ node_js:
env:
- NODE_ENV=travis
services:
- mongodb
- mongodb
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ ENV NODE_ENV development
# Port 3000 for server
# Port 35729 for livereload
EXPOSE 3000 35729
CMD ["grunt"]
CMD ["grunt"]
2 changes: 1 addition & 1 deletion config/assets/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

module.exports = {
// Development assets
};
};
2 changes: 1 addition & 1 deletion config/assets/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ module.exports = {
server: ['modules/*/tests/server/**/*.js'],
e2e: ['modules/*/tests/e2e/**/*.js']
}
};
};
2 changes: 1 addition & 1 deletion config/env/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ module.exports = {
}
}
}
};
};
2 changes: 1 addition & 1 deletion config/env/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ module.exports = {
}
}
}
};
};
2 changes: 1 addition & 1 deletion config/lib/socket.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ module.exports = function(app, db) {
});

return server;
};
};
2 changes: 1 addition & 1 deletion fig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ web:
db:
image: mongo
ports:
- "27017:27017"
- "27017:27017"
2 changes: 1 addition & 1 deletion modules/articles/client/articles.client.module.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';

// Use Applicaion configuration module to register a new module
ApplicationConfiguration.registerModule('articles');
ApplicationConfiguration.registerModule('articles');
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ angular.module('articles').controller('ArticlesController', ['$scope', '$statePa
});
};
}
]);
]);
2 changes: 1 addition & 1 deletion modules/articles/server/models/article.server.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ var ArticleSchema = new Schema({
}
});

mongoose.model('Article', ArticleSchema);
mongoose.model('Article', ArticleSchema);
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@
expect(scope.articles.length).toBe(0);
}));
});
}());
}());
2 changes: 1 addition & 1 deletion modules/chat/client/config/chat.client.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ angular.module('chat').config(['$stateProvider',
templateUrl: 'modules/chat/views/chat.client.view.html'
});
}
]);
]);
2 changes: 1 addition & 1 deletion modules/chat/tests/client/chat.client.controller.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
describe('ChatController', function() {
// TODO: Add chat client controller tests
});
}());
}());
2 changes: 1 addition & 1 deletion modules/chat/tests/e2e/chat.e2e.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
*/
describe('Chat E2E Tests:', function() {
// TODO: Add chat e2e tests
});
});
2 changes: 1 addition & 1 deletion modules/chat/tests/server/chat.socket.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
*/
describe('Chat Socket Tests:', function() {
// TODO: Add chat socket tests
});
});
2 changes: 1 addition & 1 deletion modules/core/client/config/core.client.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ angular.module('core').config(['$stateProvider', '$urlRouterProvider',
templateUrl: 'modules/core/views/home.client.view.html'
});
}
]);
]);
2 changes: 1 addition & 1 deletion modules/core/client/controllers/home.client.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ angular.module('core').controller('HomeController', ['$scope', 'Authentication',
// This provides Authentication context.
$scope.authentication = Authentication;
}
]);
]);
2 changes: 1 addition & 1 deletion modules/core/client/core.client.module.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';

// Use Applicaion configuration module to register a new module
ApplicationConfiguration.registerModule('core');
ApplicationConfiguration.registerModule('core');
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ exports.getErrorMessage = function(err) {
}

return message;
};
};
2 changes: 1 addition & 1 deletion modules/core/server/views/404.server.view.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ <h1>Page Not Found</h1>
<pre>
{{url}} is not a valid path.
</pre>
{% endblock %}
{% endblock %}
2 changes: 1 addition & 1 deletion modules/core/server/views/500.server.view.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ <h1>Server Error</h1>
<pre>
{{error}}
</pre>
{% endblock %}
{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
expect(scope.authentication).toBeTruthy();
});
});
})();
})();
2 changes: 1 addition & 1 deletion modules/core/tests/client/home.client.controller.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
expect(scope.authentication).toBeTruthy();
});
});
})();
})();
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ angular.module('users').controller('AuthenticationController', ['$scope', '$http
});
};
}
]);
]);
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ angular.module('users').controller('PasswordController', ['$scope', '$stateParam
});
};
}
]);
]);
2 changes: 1 addition & 1 deletion modules/users/client/services/users.client.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ angular.module('users').factory('Users', ['$resource',
}
});
}
]);
]);
2 changes: 1 addition & 1 deletion modules/users/server/config/strategies/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ module.exports = function() {
});
}
));
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ module.exports = _.extend(
require('./users/users.authorization.server.controller'),
require('./users/users.password.server.controller'),
require('./users/users.profile.server.controller')
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ exports.hasAuthorization = function(roles) {
}
});
};
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
<p>The {{appName}} Support Team</p>
</body>

</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
<p>The {{appName}} Support Team</p>
</body>

</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@
expect(scope.error).toBe('Username already exists');
});
});
}());
}());