This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Ramblurr/master
Update ember-cli and keen.js, and some new goodies
- Loading branch information
Showing
30 changed files
with
512 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
bower_components/ | ||
tests/ | ||
tmp/ | ||
|
||
/bower_components | ||
/config/ember-try.js | ||
/dist | ||
/tests | ||
/tmp | ||
**/.gitkeep | ||
.bowerrc | ||
.editorconfig | ||
.ember-cli | ||
.gitignore | ||
.jshintrc | ||
.watchmanconfig | ||
.travis.yml | ||
.npmignore | ||
**/.gitkeep | ||
Brocfile.js | ||
bower.json | ||
ember-cli-build.js | ||
testem.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"ignore_dirs": ["tmp", "dist"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Ember Keen Querying Changelog | ||
|
||
## \[Unreleased\] | ||
|
||
**Update Notes**: none | ||
|
||
### Added | ||
- This [CHANGELOG.md](CHANGELOG.md) | ||
- Documentation to the KeenQueryingService | ||
- `.collectionsAll()` method to fetch all event collections | ||
- `.collection()` method to fetch a single event collections | ||
|
||
### Changed | ||
- Added tmp dir to `.npmignore` (thanks @odoe) | ||
- Updated to keen.ks 3.4.0 | ||
- Updated to ember-cli 2.3.0 | ||
|
||
## [0.0.7] - 2015-05-14 | ||
### Changed | ||
- Using bower to import keen.js | ||
- Other things, lost to time. | ||
|
||
## [0.0.1] - 2015-05-12 | ||
- initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
import KeenQueryingService from 'ember-keen-querying/services/keen-querying'; | ||
export default KeenQueryingService.extend(); | ||
export { default } from 'ember-keen-querying/services/keen-querying'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
|
||
'use strict'; | ||
|
||
module.exports = { | ||
normalizeEntityName: function() {}, | ||
|
||
afterInstall: function() { | ||
return this.addBowerPackagesToProject([{ name: 'keen-js', target: '3.2.4'}]); | ||
return this.addBowerPackagesToProject([{ name: 'keen-js', target: '~3.4.0'}]); | ||
} | ||
}; |
Oops, something went wrong.