This is a ruby client to awesome Zemanta app.
Add this line to your application's Gemfile:
gem 'zemanta_client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install zemanta_client
You need to set api_key to use the client. If you won't do that, gem will raise an error. There are 2 ways:
-
Environment variable - Set
ZEMANTA_KEY
key in you environment variables and gem will use it -
Configuration - You can set your api_key in configuration block like this:
Zemanta.configure { |c| c.api_key = 'your_api_key' }
Two use cases are implemented:
- Retrieving suggest_markup data and enhancing the text.
```ruby
Zemanta::Markup.fetch(text, opts = {})
```
It will fetch suggest_markup data for passed text from Zemanta api and wrap it in custom classes.
- Enhancing the text with links:
```ruby
Zemanta::Enhancer.new(text, opts = {}).enhance
```
Options:
* `no_duplicates` (default: false) - ensures links are used once
* `skip` (default: nil) - URL regexp of the links that should be skipped
* `strip_query_string` - removes the query string part of the suggested links urls
It will fetch suggest_markup data for given text and for every returned link it will wrap the keyword with this link.
Then it will return the updated text.
In both relevance and confidence keys can be passes inside opts to filter any links that are below passed values.
There are several configuration options you can set:
Zemanta.configure do |config|
# You can pass a hash of custom options that will be passed into each request. It's empty by default.
config.custom_request_opts = {}
# Zemanta supports various response formats. However, this client works only with json, so changing this would be rather bad idea.
config.format = "json"
# This client supports caching, details below. Default is no caching.
config.cache_store = Zemanta::Configuration::NullStorage
# You can pass api_key to zemanta, as described above.
config.api_key = "yourapikeyhere"
end
By default there is no caching. You can pass any cache store to config.cache_store
in configuration.
The only expectation is that it answers to []
and []=
methods. For example, you can pass ruby hash or Cache::Disk.new
object to use simple file system storage.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
0.0.7 - small fixes 0.0.6 - Added #skip and #strip_query_string options to enhancer 0.0.5 - Added #no_duplicates option to Enhancer 0.0.4 - Fixed yajl require in gemspec 0.0.3 - Added Enhancer class, used yajl for json parsing, changed external gem api. 0.0.2 - Got rid of autoloads. 0.0.1 - Initial release. Support for suggest_markup method and caching.