Skip to content

Commit fd112a1

Browse files
ember-tomstervenkateshg5887
authored andcommitted
Initial Commit from Ember CLI v2.16.2
_..., ,:^;,...; -+===;. ,,--++====++-,,, .: /....., :::::~+++++#:,+#++++++++++++++++++#*..: /,...... (,,,,,,::=+++##++++++++++++++++++++++#. :....../ ...,,,,,::++++++++++++++++++++++++++++++*..,...: *..+...,#@@@@@@@@@++++++++++++++++++++++#*....* @#,;##############@@@+*+#@@@@@@@@@@#*++#..< *@##@@+,-*^^^*-+@####@@@######@@@#####@@,,,+ @#@* @#@@@@#@@+--*^^*--#@@@@@@# @#@. @# @##+++@#, .@@#@@ #@# @@ +@@++++#@@ @@ :@@ :@#* @#@++++++@#* #@ @@+ :*+@@#;,.__.+@#@+,-^^.++@# @@++ ;* :*@@@##@@@@;++r._j^.+@##@+,.__,,@@++. /* ........+++++++++++++#@@@@@###@@#++++, ,: ...,@@@#++===----==@@@####,,....+++++ .: ......@@##@\ ; :@####@,,...... +++. ; .........@###, ; ;xx#@;,,..... *;+, | ........,*;xxxx--^--=xxx,........ :+#; ; ......,,;xxxxxxxxxxxxx;,..... *+# ; ......,::xxxx;. ...... +. . *; ......... +### .... / ,. /:| ,. .+: ... ;##++##, . ,#. (..v..;*./ ** ## ###* .:*&&&+. \.,....<, #&+**==-..,,__ ;## ### :,*+&&&&&&&v+#&,,.._/ #&&&&*...,::,,. ##; ,##* .*****;:&&&&&&&&& ,+*+;~*..*** *.* ### ###* ******* *+#&;* ##,;## **** :, ** ##### ## ### ###, ######## .##### ;## ## ####### ;## #### ,###. ########## ######## ### #### ### ### ### ########## #### #### ,## ### #######* ### ,### ##############: ## ### #### ,## :#### ### ##; ########## ########### ## .## ,### ####### ##### :###### ###### .###### #### ## ### ### ######* :##### #### ############# #### ################ ######## ### #####* *#* #: :### *###* *#### #*
0 parents  commit fd112a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+583
-0
lines changed

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
[*.hbs]
17+
insert_final_newline = false
18+
19+
[*.{diff,md}]
20+
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+
}

.eslintrc.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
ecmaVersion: 2017,
5+
sourceType: 'module'
6+
},
7+
extends: 'eslint:recommended',
8+
env: {
9+
browser: true
10+
},
11+
rules: {
12+
}
13+
};

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://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+
yarn-error.log
18+
testem.log
19+
20+
# ember-try
21+
.node_modules.ember-try/
22+
bower.json.ember-try
23+
package.json.ember-try

.npmignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/bower_components
2+
/config/ember-try.js
3+
/dist
4+
/tests
5+
/tmp
6+
**/.gitkeep
7+
.bowerrc
8+
.editorconfig
9+
.ember-cli
10+
.gitignore
11+
.eslintrc.js
12+
.watchmanconfig
13+
.travis.yml
14+
bower.json
15+
ember-cli-build.js
16+
testem.js

.travis.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
language: node_js
3+
node_js:
4+
# we recommend testing addons with the same minimum supported node version as Ember CLI
5+
# so that your addon works for all apps
6+
- "4"
7+
8+
sudo: false
9+
dist: trusty
10+
11+
addons:
12+
chrome: stable
13+
14+
cache:
15+
directories:
16+
- $HOME/.npm
17+
18+
env:
19+
global:
20+
# See https://git.io/vdao3 for details.
21+
- JOBS=1
22+
matrix:
23+
# we recommend new addons test the current and previous LTS
24+
# as well as latest stable release (bonus points to beta/canary)
25+
- EMBER_TRY_SCENARIO=ember-lts-2.8
26+
- EMBER_TRY_SCENARIO=ember-lts-2.12
27+
- EMBER_TRY_SCENARIO=ember-release
28+
- EMBER_TRY_SCENARIO=ember-beta
29+
- EMBER_TRY_SCENARIO=ember-canary
30+
- EMBER_TRY_SCENARIO=ember-default
31+
32+
matrix:
33+
fast_finish: true
34+
allow_failures:
35+
- env: EMBER_TRY_SCENARIO=ember-canary
36+
37+
before_install:
38+
- npm config set spin false
39+
- npm install -g npm@4
40+
- npm --version
41+
42+
script:
43+
# Usually, it's ok to finish the test scenario without reverting
44+
# to the addon's original dependency state, skipping "cleanup".
45+
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup

.watchmanconfig

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ignore_dirs": ["tmp", "dist"]
3+
}

LICENSE.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019
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

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# ember-drag-drop-sort
2+
3+
This README outlines the details of collaborating on this Ember addon.
4+
5+
## Installation
6+
7+
* `git clone <repository-url>` this repository
8+
* `cd ember-drag-drop-sort`
9+
* `npm install`
10+
11+
## Running
12+
13+
* `ember serve`
14+
* Visit your app at [http://localhost:4200](http://localhost:4200).
15+
16+
## Running Tests
17+
18+
* `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions)
19+
* `ember test`
20+
* `ember test --server`
21+
22+
## Building
23+
24+
* `ember build`
25+
26+
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).

addon/.gitkeep

Whitespace-only changes.

app/.gitkeep

Whitespace-only changes.

config/ember-try.js

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
scenarios: [
4+
{
5+
name: 'ember-lts-2.8',
6+
bower: {
7+
dependencies: {
8+
'ember': 'components/ember#lts-2-8'
9+
},
10+
resolutions: {
11+
'ember': 'lts-2-8'
12+
}
13+
},
14+
npm: {
15+
devDependencies: {
16+
'ember-source': null
17+
}
18+
}
19+
},
20+
{
21+
name: 'ember-lts-2.12',
22+
npm: {
23+
devDependencies: {
24+
'ember-source': '~2.12.0'
25+
}
26+
}
27+
},
28+
{
29+
name: 'ember-release',
30+
bower: {
31+
dependencies: {
32+
'ember': 'components/ember#release'
33+
},
34+
resolutions: {
35+
'ember': 'release'
36+
}
37+
},
38+
npm: {
39+
devDependencies: {
40+
'ember-source': null
41+
}
42+
}
43+
},
44+
{
45+
name: 'ember-beta',
46+
bower: {
47+
dependencies: {
48+
'ember': 'components/ember#beta'
49+
},
50+
resolutions: {
51+
'ember': 'beta'
52+
}
53+
},
54+
npm: {
55+
devDependencies: {
56+
'ember-source': null
57+
}
58+
}
59+
},
60+
{
61+
name: 'ember-canary',
62+
bower: {
63+
dependencies: {
64+
'ember': 'components/ember#canary'
65+
},
66+
resolutions: {
67+
'ember': 'canary'
68+
}
69+
},
70+
npm: {
71+
devDependencies: {
72+
'ember-source': null
73+
}
74+
}
75+
},
76+
{
77+
name: 'ember-default',
78+
npm: {
79+
devDependencies: {}
80+
}
81+
}
82+
]
83+
};

config/environment.js

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

ember-cli-build.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/* eslint-env node */
2+
'use strict';
3+
4+
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
5+
6+
module.exports = function(defaults) {
7+
let app = new EmberAddon(defaults, {
8+
// Add options here
9+
});
10+
11+
/*
12+
This build file specifies the options for the dummy test app of this
13+
addon, located in `/tests/dummy`
14+
This build file does *not* influence how the addon or the app using it
15+
behave. You most likely want to be modifying `./index.js` or app's build file
16+
*/
17+
18+
return app.toTree();
19+
};

index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* eslint-env node */
2+
'use strict';
3+
4+
module.exports = {
5+
name: 'ember-drag-drop-sort'
6+
};

package.json

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "ember-drag-drop-sort",
3+
"version": "0.0.0",
4+
"description": "The default blueprint for ember-cli addons.",
5+
"keywords": [
6+
"ember-addon"
7+
],
8+
"license": "MIT",
9+
"author": "",
10+
"directories": {
11+
"doc": "doc",
12+
"test": "tests"
13+
},
14+
"repository": "",
15+
"scripts": {
16+
"build": "ember build",
17+
"start": "ember server",
18+
"test": "ember try:each"
19+
},
20+
"dependencies": {
21+
"ember-cli-babel": "^6.6.0"
22+
},
23+
"devDependencies": {
24+
"broccoli-asset-rev": "^2.4.5",
25+
"ember-ajax": "^3.0.0",
26+
"ember-cli": "~2.16.2",
27+
"ember-cli-dependency-checker": "^2.0.0",
28+
"ember-cli-eslint": "^4.0.0",
29+
"ember-cli-htmlbars": "^2.0.1",
30+
"ember-cli-htmlbars-inline-precompile": "^1.0.0",
31+
"ember-cli-inject-live-reload": "^1.4.1",
32+
"ember-cli-qunit": "^4.0.0",
33+
"ember-cli-shims": "^1.1.0",
34+
"ember-cli-sri": "^2.1.0",
35+
"ember-cli-uglify": "^2.0.0",
36+
"ember-disable-prototype-extensions": "^1.1.2",
37+
"ember-export-application-global": "^2.0.0",
38+
"ember-load-initializers": "^1.0.0",
39+
"ember-resolver": "^4.0.0",
40+
"ember-source": "~2.16.0",
41+
"loader.js": "^4.2.3"
42+
},
43+
"engines": {
44+
"node": "^4.5 || 6.* || >= 7.*"
45+
},
46+
"ember-addon": {
47+
"configPath": "tests/dummy/config"
48+
}
49+
}

testem.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
test_page: 'tests/index.html?hidepassed',
4+
disable_watching: true,
5+
launch_in_ci: [
6+
'Chrome'
7+
],
8+
launch_in_dev: [
9+
'Chrome'
10+
],
11+
browser_args: {
12+
Chrome: {
13+
mode: 'ci',
14+
args: [
15+
'--disable-gpu',
16+
'--headless',
17+
'--remote-debugging-port=9222',
18+
'--window-size=1440,900'
19+
]
20+
},
21+
}
22+
};

tests/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
env: {
3+
embertest: true
4+
}
5+
};

tests/dummy/app/app.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Application from '@ember/application';
2+
import Resolver from './resolver';
3+
import loadInitializers from 'ember-load-initializers';
4+
import config from './config/environment';
5+
6+
const App = Application.extend({
7+
modulePrefix: config.modulePrefix,
8+
podModulePrefix: config.podModulePrefix,
9+
Resolver
10+
});
11+
12+
loadInitializers(App, config.modulePrefix);
13+
14+
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.

0 commit comments

Comments
 (0)