Sha256: ba18b068f2bf44f6a5139fb5ec50b1d92391dbc3f0eba44b0919d1673524c9f9

Contents?: true

Size: 582 Bytes

Versions: 1

Compression:

Stored size: 582 Bytes

Contents

# Yinx

Fetch note metdata with evernote api

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'yinx'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install yinx

## Usage

Put your api key in `$HOME/.yinx`, or `export YINX=yourkey`, then:

```ruby
notes = Yinx.fetch_all
```

To filter out:

```ruby
notes = Yinx.fetch do
  word  'active record'
  tag   'rails'
  book  'ruby'
  stack 'programming language'
end
```

Or you may just get books or tags info:

```ruby
books = Yinx.fetch_all_books
tags = Yinx.fetch_all_tags
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yinx-0.1.7 README.md