Skip to content

Commit

Permalink
ember-cli-pagination 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
broerse committed Aug 18, 2015
1 parent 71a72c3 commit 6781cde
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand Down
8 changes: 7 additions & 1 deletion index.js
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');
}
};
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-cli-pagination",
"version": "0.6.6",
"version": "1.0.0",
"description": "Addon for Ember CLI to do simple pagination. Compatible with the kaminari API in Rails",
"private": false,
"directories": {
Expand Down Expand Up @@ -43,7 +43,8 @@
"ember-addon"
],
"dependencies": {
"ember-cli-babel": "^5.1.3"
"ember-cli-babel": "^5.1.3",
"ember-cli-version-checker": "^1.1.4"
},
"ember-addon": {
"configPath": "tests/dummy/config"
Expand Down

0 comments on commit 6781cde

Please sign in to comment.