mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-07-15 16:52:03 +02:00
Merge pull request #413 from berendt/add_newline
Add missing newline at the end of text files
This commit is contained in:
@@ -1 +1 @@
|
||||
/app/tests
|
||||
/app/tests
|
||||
|
||||
@@ -4,4 +4,4 @@ node_js:
|
||||
env:
|
||||
- NODE_ENV=travis
|
||||
services:
|
||||
- mongodb
|
||||
- mongodb
|
||||
|
||||
@@ -26,4 +26,4 @@ ENV NODE_ENV development
|
||||
# Port 3000 for server
|
||||
# Port 35729 for livereload
|
||||
EXPOSE 3000 35729
|
||||
CMD ["grunt"]
|
||||
CMD ["grunt"]
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
module.exports = {
|
||||
// Development assets
|
||||
};
|
||||
};
|
||||
|
||||
@@ -6,4 +6,4 @@ module.exports = {
|
||||
server: ['modules/*/tests/server/**/*.js'],
|
||||
e2e: ['modules/*/tests/e2e/**/*.js']
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
2
config/env/production.js
vendored
2
config/env/production.js
vendored
@@ -37,4 +37,4 @@ module.exports = {
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
2
config/env/test.js
vendored
2
config/env/test.js
vendored
@@ -41,4 +41,4 @@ module.exports = {
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
@@ -58,4 +58,4 @@ module.exports = function(app, db) {
|
||||
});
|
||||
|
||||
return server;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
'use strict';
|
||||
|
||||
// Use Applicaion configuration module to register a new module
|
||||
ApplicationConfiguration.registerModule('articles');
|
||||
ApplicationConfiguration.registerModule('articles');
|
||||
|
||||
@@ -55,4 +55,4 @@ angular.module('articles').controller('ArticlesController', ['$scope', '$statePa
|
||||
});
|
||||
};
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -31,4 +31,4 @@ var ArticleSchema = new Schema({
|
||||
}
|
||||
});
|
||||
|
||||
mongoose.model('Article', ArticleSchema);
|
||||
mongoose.model('Article', ArticleSchema);
|
||||
|
||||
@@ -167,4 +167,4 @@
|
||||
expect(scope.articles.length).toBe(0);
|
||||
}));
|
||||
});
|
||||
}());
|
||||
}());
|
||||
|
||||
@@ -9,4 +9,4 @@ angular.module('chat').config(['$stateProvider',
|
||||
templateUrl: 'modules/chat/views/chat.client.view.html'
|
||||
});
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -7,4 +7,4 @@
|
||||
describe('ChatController', function() {
|
||||
// TODO: Add chat client controller tests
|
||||
});
|
||||
}());
|
||||
}());
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
*/
|
||||
describe('Chat E2E Tests:', function() {
|
||||
// TODO: Add chat e2e tests
|
||||
});
|
||||
});
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
*/
|
||||
describe('Chat Socket Tests:', function() {
|
||||
// TODO: Add chat socket tests
|
||||
});
|
||||
});
|
||||
|
||||
@@ -13,4 +13,4 @@ angular.module('core').config(['$stateProvider', '$urlRouterProvider',
|
||||
templateUrl: 'modules/core/views/home.client.view.html'
|
||||
});
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -5,4 +5,4 @@ angular.module('core').controller('HomeController', ['$scope', 'Authentication',
|
||||
// This provides Authentication context.
|
||||
$scope.authentication = Authentication;
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
'use strict';
|
||||
|
||||
// Use Applicaion configuration module to register a new module
|
||||
ApplicationConfiguration.registerModule('core');
|
||||
ApplicationConfiguration.registerModule('core');
|
||||
|
||||
@@ -39,4 +39,4 @@ exports.getErrorMessage = function(err) {
|
||||
}
|
||||
|
||||
return message;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
<pre>
|
||||
{{url}} is not a valid path.
|
||||
</pre>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
<pre>
|
||||
{{error}}
|
||||
</pre>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
expect(scope.authentication).toBeTruthy();
|
||||
});
|
||||
});
|
||||
})();
|
||||
})();
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
expect(scope.authentication).toBeTruthy();
|
||||
});
|
||||
});
|
||||
})();
|
||||
})();
|
||||
|
||||
@@ -31,4 +31,4 @@ angular.module('users').controller('AuthenticationController', ['$scope', '$http
|
||||
});
|
||||
};
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -41,4 +41,4 @@ angular.module('users').controller('PasswordController', ['$scope', '$stateParam
|
||||
});
|
||||
};
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -9,4 +9,4 @@ angular.module('users').factory('Users', ['$resource',
|
||||
}
|
||||
});
|
||||
}
|
||||
]);
|
||||
]);
|
||||
|
||||
@@ -35,4 +35,4 @@ module.exports = function() {
|
||||
});
|
||||
}
|
||||
));
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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')
|
||||
);
|
||||
);
|
||||
|
||||
@@ -51,4 +51,4 @@ exports.hasAuthorization = function(roles) {
|
||||
}
|
||||
});
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
<p>The {{appName}} Support Team</p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -19,4 +19,4 @@
|
||||
<p>The {{appName}} Support Team</p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -115,4 +115,4 @@
|
||||
expect(scope.error).toBe('Username already exists');
|
||||
});
|
||||
});
|
||||
}());
|
||||
}());
|
||||
|
||||
Reference in New Issue
Block a user