Skip to content

Commit

Permalink
Merge pull request #207 from webark/master
Browse files Browse the repository at this point in the history
udpated ember-cli to 2.11
  • Loading branch information
webark authored Jan 25, 2017
2 parents ff88658 + 134adad commit 277b65e
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ cache:

env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1-13
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default

matrix:
fast_finish: true
Expand All @@ -26,10 +27,9 @@ matrix:

before_install:
- npm config set spin false
- npm install -g bower
- npm install -g bower phantomjs-prebuilt
- bower --version
- npm install phantomjs-prebuilt
- node_modules/phantomjs-prebuilt/bin/phantomjs --version
- phantomjs --version

install:
- npm install
Expand All @@ -38,4 +38,4 @@ install:
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016
Copyright (c) 2017

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:

Expand Down
6 changes: 1 addition & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"name": "ember-component-css",
"dependencies": {
"ember": "~2.10.0",
"ember-cli-shims": "0.1.3"
},
"version": "0.2.9"
"dependencies": {}
}
42 changes: 39 additions & 3 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@
module.exports = {
scenarios: [
{
name: 'ember-1-13',
name: 'ember-1.13',
bower: {
dependencies: {
'ember': '~1.13.0'
'ember': 'components/ember#release-1-13'
},
resolutions: {
'ember': '~1.13.0'
'ember': 'release-1-13'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
Expand All @@ -23,6 +28,11 @@ module.exports = {
resolutions: {
'ember': 'lts-2-4'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
Expand All @@ -34,6 +44,11 @@ module.exports = {
resolutions: {
'ember': 'lts-2-8'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
Expand All @@ -45,6 +60,11 @@ module.exports = {
resolutions: {
'ember': 'release'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
Expand All @@ -56,6 +76,11 @@ module.exports = {
resolutions: {
'ember': 'beta'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
Expand All @@ -67,6 +92,17 @@ module.exports = {
resolutions: {
'ember': 'canary'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
name: 'ember-default',
npm: {
devDependencies: {}
}
}
]
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,25 @@
"devDependencies": {
"broccoli-asset-rev": "^2.4.5",
"ember-ajax": "^2.4.1",
"ember-cli": "2.10.0",
"ember-cli": "2.11.0",
"ember-cli-app-version": "^2.0.0",
"ember-cli-css-extensions": "git://github.com/webark/ember-cli-css-extensions.git",
"ember-cli-dependency-checker": "^1.3.0",
"ember-cli-eslint": "^3.0.2",
"ember-cli-htmlbars": "^1.0.10",
"ember-cli-htmlbars": "^1.1.1",
"ember-cli-htmlbars-inline-precompile": "^0.3.3",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^3.0.1",
"ember-cli-release": "^0.2.9",
"ember-cli-shims": "^1.0.2",
"ember-cli-sri": "^2.1.0",
"ember-cli-test-loader": "^1.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-export-application-global": "^1.0.5",
"ember-load-initializers": "^0.5.1",
"ember-load-initializers": "^0.6.0",
"ember-resolver": "^2.0.3",
"ember-source": "^2.11.0",
"eslint": "^3.13.1",
"eslint-plugin-ember-suave": "^1.0.0",
"loader.js": "^4.0.10",
Expand Down
4 changes: 1 addition & 3 deletions tests/helpers/start-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ const {
export default function startApp(attrs) {
let application;

// use defaults, but you can override
// let attributes = Ember.assign({}, config.APP, attrs);
let attributes = merge({}, config.APP);
attributes = merge(attributes, attrs);
attributes = merge(attributes, attrs); // use defaults, but you can override

run(() => {
application = Application.create(attributes);
Expand Down

0 comments on commit 277b65e

Please # to comment.