Skip to content

Commit

Permalink
Merge pull request #13 from radify/first-release-fixes
Browse files Browse the repository at this point in the history
First release fixes
  • Loading branch information
nateabele committed Nov 30, 2015
2 parents 118e2cf + 4da63cc commit 17b203b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 23 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.3.1] - 2015-11-30
### Fixed
- `README`
- `CHANGELOG`

## [0.3.0] - 2015-11-30
### Added
- Thorough documentation
- A sample project
Expand Down Expand Up @@ -46,6 +53,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.0] - 2015-08-11
- Initial Release

[Unreleased]: https://github.com/radify/angular-scaffold/compare/0.2.0...HEAD
[Unreleased]: https://github.com/radify/angular-scaffold/compare/0.3.1...HEAD
[0.3.1]: https://github.com/radify/angular-scaffold/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/radify/angular-scaffold/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/radify/angular-scaffold/compare/0.1.1...0.2.0
[0.1.1]: https://github.com/radify/angular-scaffold/compare/0.1.0...0.1.1
32 changes: 11 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,18 @@
[![devDependency Status](https://david-dm.org/radify/angular-scaffold/dev-status.svg)](https://david-dm.org/radify/angular-scaffold#info=devDependencies)
[![Code Climate](https://codeclimate.com/github/radify/angular-scaffold/badges/gpa.svg)](https://codeclimate.com/github/radify/angular-scaffold)

Angular Scaffold
==
# Angular Scaffold

Description
--
## Simple scaffolding for AngularJS

Angular Scaffold is a collection of convenience wrappers around angular-model collections.
**Angular Scaffold** is a collection of convenience wrappers around angular-model collections.

Dependencies
--
## Dependencies

* [AngularJS](https://angularjs.org/)
* [Angular Model](https://www.npmjs.com/package/angular-model)

Running unit tests
--
## Running unit tests

Install the test runner with npm:

Expand All @@ -39,13 +35,11 @@ You can run coverage with:
gulp coverage
```

angular-scaffold API docs
--
## angular-scaffold API docs

See [/docs/api.md](/docs/api.md) in this project for detailed documentation of all angular-scaffold's functions.

Supporting angular-scaffold in your API
--
## Supporting angular-scaffold in your API

Your API must:

Expand All @@ -68,8 +62,7 @@ Your API must:
]
```

Basic Usage
--
## Basic Usage

In your AngularJS application, include the JavaScript:

Expand Down Expand Up @@ -98,8 +91,7 @@ Example controller using Angular Scaffold:
})
```

Basic CRUD example project
--
## Basic CRUD example project

An [example application is included in this repository](/sample-project/). It has a very simple API that illustrates a basic use case for angular-scaffold.

Expand All @@ -113,8 +105,7 @@ node server.js

You can then browse to http://localhost:4730/ and add/remove Post objects from a list. angular-scaffold takes care of talking to the API for you.

Pagination
--
## Pagination

angular-scaffold can paginate your model. Your API will need to support the `Range: resources=n-n` header to take advantage of this. For example, `Range: resources=10-20` would return resources 10 through 20.

Expand All @@ -124,8 +115,7 @@ paginate: { size: 20, page: 1, strategy: 'paged' }
});
```

Querying
--
## Querying

You can pass a specific query in, which will be sent through to the API. Your API will have to know how to respond to this.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "angular-scaffold",
"description:": "Angular Scaffold is a collection of convenience wrappers around angular-model collections.",
"license": "BSD-3-Clause",
"version": "0.3.0",
"version": "0.3.1",
"homepage": "https://github.com/radify/angular-scaffold/",
"repository": {
"type": "git",
Expand Down

0 comments on commit 17b203b

Please sign in to comment.