Skip to content

Commit

Permalink
Merge pull request #7 from jmendiara/feature/bower
Browse files Browse the repository at this point in the history
ADD bower support
  • Loading branch information
bettiolo committed Jun 12, 2014
2 parents ffb4330 + e59a7f6 commit 707fd08
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@

[![NPM](https://nodei.co/npm/oauth-signature.png?mini=true)](https://nodei.co/npm/oauth-signature/)

## Installation

#### Install with `npm`:

```shell
npm install oauth-signature
```

#### Install with `bower`:

```shell
bower install oauth-signature
```

Add a `<script>` to your `index.html`:

```html
<script src="/bower_components/oauth-signature/dist/oauth-signature.js"></script>
```


## Usage

To generate the OAuth signature call the following method:
Expand Down
13 changes: 13 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "oauth-signature",
"version": "1.1.3",
"main": "dist/oauth-signature.js",
"ignore": [
".jshintrc",
".gitignore",
".travis.yml",
"Gruntfile.js",
"package.json",
"src/"
]
}

0 comments on commit 707fd08

Please sign in to comment.