-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
6 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 |
---|---|---|
|
@@ -23,13 +23,19 @@ This is a new project, but many people are already using it successfully. If you | |
|
||
## Requirements | ||
|
||
- ember-cli 0.0.46 or higher (untested with earlier versions, but it might work) | ||
- ember-cli-pagination 0.6.1 or higher (to match current docs) | ||
- ember-cli 1.13.0 or higher (For earlier versions use ember-cli-pagination 0.6.6) | ||
- ember-cli-pagination 1.0.0 or higher for current docs. | ||
|
||
## Installation | ||
|
||
``` | ||
npm install ember-cli-pagination --save-dev | ||
ember install ember-cli-pagination | ||
``` | ||
|
||
For ember-cli < 1.13.0: | ||
|
||
``` | ||
npm install [email protected] --save-dev | ||
``` | ||
|
||
<!--- FULL DOC START --> | ||
|
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,6 +1,12 @@ | ||
/* jshint node: true */ | ||
'use strict'; | ||
var VersionChecker = require('ember-cli-version-checker'); | ||
|
||
module.exports = { | ||
name: 'ember-cli-pagination' | ||
name: 'ember-cli-pagination', | ||
init: function() { | ||
var checker = new VersionChecker(this); | ||
|
||
checker.for('ember-cli', 'npm').assertAbove('1.13.0'); | ||
} | ||
}; |
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