Skip to content

Commit

Permalink
📝 Change API/description
Browse files Browse the repository at this point in the history
  • Loading branch information
59naga committed Jun 29, 2015
1 parent a037fe8 commit 90ec5da
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -32,7 +32,7 @@ deploy:
secure: XsuWBuptDkzpFGmcgst/QEFJQe1qmqlqWC1n81H7+l1MKid6Pt+7hJ8qJFt8bJ6gW/DgPkyFgvzOMnM4foZqiLvWJDq3GwecXGufLbJVhDoCKS/94bOgqWdKPM3mPEz9L+sACySGABgih1ZEMGcLUZekDqBpYCpyFvLMEsKaIQWLGxWUt4n45WmYDsFNQ+/i8loLvD1/WJbojjtaYsXPbNoO1aqsq3we0ObhI+Oh5VEf+68iBCqoRSwis16mImhQM9cVvNnwHo4/bKYAFp/hWkyLfMY+UB8yz86ycANSHU1z/j+iD3Z2wzAe4Ln/7uiESxjQIUcUKnS/GThJJWRe3A2hjUA8M9Rk+uFkMxdzTJRZq9NwgiuZDPDhjZho9T0eYyc4H8xt46Pixdo0jxRwHRHChMYH2pk7b4U5bSUQp2NqUr3x8KHlOtO5Hz/P3X2NNkw0Zl8j2BPlvGf6OSB5Lp8nXQXkOwaqd6dyQB9BPBRDLtMY0ky2zKKyLxvZjNXfxBs17shaooBkC9VfAryfZ4OnKNN0uYKTj/i7q5hnkpWf+AOEiLjNe7JUxTo3DROUVxdDdvZFsLl6t+1qrLBoZL5mxOzFI7+y87MMGy8z32NxP+W9wN4x73DvGz/ZwVnQWmWPpV/TJ+Ub9BO/aqqgB1kIPdUyXl7cuhOKSoqLtsY=

# Cloud testing
after_deploy:
- npm install
# - npm install zuul --global
# - npm run test-cloud
# after_deploy:
# - npm install
# - npm install zuul --global
# - npm run test-cloud
10 changes: 4 additions & 6 deletions README.md
@@ -1,8 +1,6 @@
# NpmFetchAvatar [![NPM version][npm-image]][npm] [![Build Status][travis-image]][travis] [![Coverage Status][coveralls-image]][coveralls]

[![Sauce Test Status][sauce-image]][sauce]

> Fetch the gravatar image url via profile page
> Fetch the avatar url via profile page
## Installation

Expand All @@ -12,15 +10,15 @@ $ npm install npm-fetch-avatar --save

# API

## npmFetchAvatar -> (error,url)
## npmFetchAvatar(user) -> (error,avatarUrl)

description

```js
npmFetchAvatar('substack',function(error,url){
npmFetchAvatar('substack',function(error,avatarUrl){
if(error) throw error

console.log(url);
console.log(avatarUrl);
// https://secure.gravatar.com/avatar/d4a2f12ceae3b7f211b661576d22bfb9?size=496&default=retro
});
```
Expand Down

0 comments on commit 90ec5da

Please sign in to comment.