Skip to content

Commit d098d75

Browse files
committed
Initial Commit from Ember CLI v0.2.3
_..., ,:^;,...; -+===;. ,,--++====++-,,, .: /....., :::::~+++++#:,+#++++++++++++++++++#*..: /,...... (,,,,,,::=+++##++++++++++++++++++++++#. :....../ ...,,,,,::++++++++++++++++++++++++++++++*..,...: *..+...,#@@@@@@@@@++++++++++++++++++++++#*....* @#,;##############@@@+*+#@@@@@@@@@@#*++#..< *@##@@+,-*^^^*-+@####@@@######@@@#####@@,,,+ @#@* @#@@@@#@@+--*^^*--#@@@@@@# @#@. @# @##+++@#, .@@#@@ #@# @@ +@@++++#@@ @@ :@@ :@#* @#@++++++@#* #@ @@+ :*+@@#;,.__.+@#@+,-^^.++@# @@++ ;* :*@@@##@@@@;++r._j^.+@##@+,.__,,@@++. /* ........+++++++++++++#@@@@@###@@#++++, ,: ...,@@@#++===----==@@@####,,....+++++ .: ......@@##@\ ; :@####@,,...... +++. ; .........@###, ; ;xx#@;,,..... *;+, | ........,*;xxxx--^--=xxx,........ :+#; ; ......,,;xxxxxxxxxxxxx;,..... *+# ; ......,::xxxx;. ...... +. . *; ......... +### .... / ,. /:| ,. .+: ... ;##++##, . ,#. (..v..;*./ ** ## ###* .:*&&&+. \.,....<, #&+**==-..,,__ ;## ### :,*+&&&&&&&v+#&,,.._/ #&&&&*...,::,,. ##; ,##* .*****;:&&&&&&&&& ,+*+;~*..*** *.* ### ###* ******* *+#&;* ##,;## **** :, ** ##### ## ### ###, ######## .##### ;## ## ####### ;## #### ,###. ########## ######## ### #### ### ### ### ########## #### #### ,## ### #######* ### ,### ##############: ## ### #### ,## :#### ### ##; ########## ########### ## .## ,### ####### ##### :###### ###### .###### #### ## ### ### ######* :##### #### ############# #### ################ ######## ### #####* *#* #: :### *###* *#### #*
0 parents  commit d098d75

39 files changed

+508
-0
lines changed

.bowerrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"directory": "bower_components",
3+
"analytics": false
4+
}

.editorconfig

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.js]
17+
indent_style = space
18+
indent_size = 2
19+
20+
[*.hbs]
21+
insert_final_newline = false
22+
indent_style = space
23+
indent_size = 2
24+
25+
[*.css]
26+
indent_style = space
27+
indent_size = 2
28+
29+
[*.html]
30+
indent_style = space
31+
indent_size = 2
32+
33+
[*.{diff,md}]
34+
trim_trailing_whitespace = false

.ember-cli

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
/**
3+
Ember CLI sends analytics information by default. The data is completely
4+
anonymous, but there are times when you might want to disable this behavior.
5+
6+
Setting `disableAnalytics` to true will prevent any data from being sent.
7+
*/
8+
"disableAnalytics": false
9+
}

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
7+
# dependencies
8+
/node_modules
9+
/bower_components
10+
11+
# misc
12+
/.sass-cache
13+
/connect.lock
14+
/coverage/*
15+
/libpeerconnection.log
16+
npm-debug.log
17+
testem.log

.jshintrc

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"predef": [
3+
"document",
4+
"window",
5+
"-Promise"
6+
],
7+
"browser": true,
8+
"boss": true,
9+
"curly": true,
10+
"debug": false,
11+
"devel": true,
12+
"eqeqeq": true,
13+
"evil": true,
14+
"forin": false,
15+
"immed": false,
16+
"laxbreak": false,
17+
"newcap": true,
18+
"noarg": true,
19+
"noempty": false,
20+
"nonew": false,
21+
"nomen": false,
22+
"onevar": false,
23+
"plusplus": false,
24+
"regexp": false,
25+
"undef": true,
26+
"sub": true,
27+
"strict": false,
28+
"white": false,
29+
"eqnull": true,
30+
"esnext": true,
31+
"unused": true
32+
}

.npmignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
bower_components/
2+
tests/
3+
tmp/
4+
5+
.bowerrc
6+
.editorconfig
7+
.ember-cli
8+
.travis.yml
9+
.npmignore
10+
**/.gitkeep
11+
bower.json
12+
Brocfile.js
13+
testem.json

.travis.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
language: node_js
3+
node_js:
4+
- "0.12"
5+
6+
sudo: false
7+
8+
cache:
9+
directories:
10+
- node_modules
11+
12+
before_install:
13+
- "npm config set spin false"
14+
- "npm install -g npm@^2"
15+
16+
install:
17+
- npm install -g bower
18+
- npm install
19+
- bower install
20+
21+
script:
22+
- npm test

Brocfile.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* jshint node: true */
2+
/* global require, module */
3+
4+
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
5+
6+
var app = new EmberAddon();
7+
8+
// Use `app.import` to add additional libraries to the generated
9+
// output files.
10+
//
11+
// If you need to use different assets in different
12+
// environments, specify an object as the first parameter. That
13+
// object's keys should be the environment name and the values
14+
// should be the asset to use in that environment.
15+
//
16+
// If the library that you are including contains AMD or ES6
17+
// modules that you would like to import into your application
18+
// please specify an object with the list of modules as keys
19+
// along with the exports of each module as its value.
20+
21+
module.exports = app.toTree();

LICENSE.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Ember-cli-deploy-redis
2+
3+
This README outlines the details of collaborating on this Ember addon.
4+
5+
## Installation
6+
7+
* `git clone` this repository
8+
* `npm install`
9+
* `bower install`
10+
11+
## Running
12+
13+
* `ember server`
14+
* Visit your app at http://localhost:4200.
15+
16+
## Running Tests
17+
18+
* `ember test`
19+
* `ember test --server`
20+
21+
## Building
22+
23+
* `ember build`
24+
25+
For more information on using ember-cli, visit [http://www.ember-cli.com/](http://www.ember-cli.com/).

addon/.gitkeep

Whitespace-only changes.

app/.gitkeep

Whitespace-only changes.

bower.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "ember-cli-deploy-redis",
3+
"dependencies": {
4+
"ember": "1.11.1",
5+
"ember-cli-shims": "ember-cli/ember-cli-shims#0.0.3",
6+
"ember-cli-test-loader": "ember-cli-test-loader#0.1.3",
7+
"ember-data": "1.0.0-beta.16.1",
8+
"ember-load-initializers": "ember-cli/ember-load-initializers#0.1.4",
9+
"ember-qunit": "0.3.1",
10+
"ember-qunit-notifications": "0.0.7",
11+
"ember-resolver": "~0.1.15",
12+
"jquery": "^1.11.1",
13+
"loader.js": "ember-cli/loader.js#3.2.0",
14+
"qunit": "~1.17.1"
15+
}
16+
}

config/environment.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
module.exports = function(/* environment, appConfig */) {
4+
return { };
5+
};

index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* jshint node: true */
2+
'use strict';
3+
4+
module.exports = {
5+
name: 'ember-cli-deploy-redis'
6+
};

package.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "ember-cli-deploy-redis",
3+
"version": "0.0.0",
4+
"description": "The default blueprint for ember-cli addons.",
5+
"directories": {
6+
"doc": "doc",
7+
"test": "tests"
8+
},
9+
"scripts": {
10+
"start": "ember server",
11+
"build": "ember build",
12+
"test": "ember try:testall"
13+
},
14+
"repository": "",
15+
"engines": {
16+
"node": ">= 0.10.0"
17+
},
18+
"author": "",
19+
"license": "MIT",
20+
"devDependencies": {
21+
"broccoli-asset-rev": "^2.0.2",
22+
"ember-cli": "0.2.3",
23+
"ember-cli-app-version": "0.3.3",
24+
"ember-cli-content-security-policy": "0.4.0",
25+
"ember-cli-dependency-checker": "0.0.8",
26+
"ember-cli-htmlbars": "0.7.4",
27+
"ember-cli-ic-ajax": "0.1.1",
28+
"ember-cli-inject-live-reload": "^1.3.0",
29+
"ember-cli-qunit": "0.3.10",
30+
"ember-cli-uglify": "1.0.1",
31+
"ember-data": "1.0.0-beta.16.1",
32+
"ember-export-application-global": "^1.0.2",
33+
"ember-disable-prototype-extensions": "^1.0.0",
34+
"ember-try": "0.0.4"
35+
},
36+
"keywords": [
37+
"ember-addon"
38+
],
39+
"dependencies": {
40+
"ember-cli-babel": "^5.0.0"
41+
},
42+
"ember-addon": {
43+
"configPath": "tests/dummy/config"
44+
}
45+
}

testem.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"framework": "qunit",
3+
"test_page": "tests/index.html?hidepassed",
4+
"launch_in_ci": [
5+
"PhantomJS"
6+
],
7+
"launch_in_dev": [
8+
"PhantomJS",
9+
"Chrome"
10+
]
11+
}

tests/.jshintrc

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"predef": [
3+
"document",
4+
"window",
5+
"location",
6+
"setTimeout",
7+
"$",
8+
"-Promise",
9+
"define",
10+
"console",
11+
"visit",
12+
"exists",
13+
"fillIn",
14+
"click",
15+
"keyEvent",
16+
"triggerEvent",
17+
"find",
18+
"findWithAssert",
19+
"wait",
20+
"DS",
21+
"andThen",
22+
"currentURL",
23+
"currentPath",
24+
"currentRouteName"
25+
],
26+
"node": false,
27+
"browser": false,
28+
"boss": true,
29+
"curly": false,
30+
"debug": false,
31+
"devel": false,
32+
"eqeqeq": true,
33+
"evil": true,
34+
"forin": false,
35+
"immed": false,
36+
"laxbreak": false,
37+
"newcap": true,
38+
"noarg": true,
39+
"noempty": false,
40+
"nonew": false,
41+
"nomen": false,
42+
"onevar": false,
43+
"plusplus": false,
44+
"regexp": false,
45+
"undef": true,
46+
"sub": true,
47+
"strict": false,
48+
"white": false,
49+
"eqnull": true,
50+
"esnext": true
51+
}

tests/dummy/app/app.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import Ember from 'ember';
2+
import Resolver from 'ember/resolver';
3+
import loadInitializers from 'ember/load-initializers';
4+
import config from './config/environment';
5+
6+
var App;
7+
8+
Ember.MODEL_FACTORY_INJECTIONS = true;
9+
10+
App = Ember.Application.extend({
11+
modulePrefix: config.modulePrefix,
12+
podModulePrefix: config.podModulePrefix,
13+
Resolver: Resolver
14+
});
15+
16+
loadInitializers(App, config.modulePrefix);
17+
18+
export default App;

tests/dummy/app/components/.gitkeep

Whitespace-only changes.

tests/dummy/app/controllers/.gitkeep

Whitespace-only changes.

tests/dummy/app/helpers/.gitkeep

Whitespace-only changes.

tests/dummy/app/index.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title>Dummy</title>
7+
<meta name="description" content="">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
10+
{{content-for 'head'}}
11+
12+
<link rel="stylesheet" href="assets/vendor.css">
13+
<link rel="stylesheet" href="assets/dummy.css">
14+
15+
{{content-for 'head-footer'}}
16+
</head>
17+
<body>
18+
{{content-for 'body'}}
19+
20+
<script src="assets/vendor.js"></script>
21+
<script src="assets/dummy.js"></script>
22+
23+
{{content-for 'body-footer'}}
24+
</body>
25+
</html>

tests/dummy/app/models/.gitkeep

Whitespace-only changes.

tests/dummy/app/router.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import Ember from 'ember';
2+
import config from './config/environment';
3+
4+
var Router = Ember.Router.extend({
5+
location: config.locationType
6+
});
7+
8+
export default Router.map(function() {
9+
});

tests/dummy/app/routes/.gitkeep

Whitespace-only changes.

tests/dummy/app/styles/app.css

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<h2 id="title">Welcome to Ember.js</h2>
2+
3+
{{outlet}}

tests/dummy/app/templates/components/.gitkeep

Whitespace-only changes.

tests/dummy/app/views/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)