forked from telus-agcg-archive/alchemy-api-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alchemy-api-rb.gemspec
24 lines (20 loc) · 1.17 KB
/
alchemy-api-rb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/alchemy-api/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Allen"]
gem.email = ["[email protected]"]
gem.description = %q{Provides access to the Alchemy text mining API - http://www.alchemyapi.com/}
gem.summary = %q{This is a ruby client library that provides access to the Alechemy text mining API. The initial version targets the keyword extraction api specificaly, with other implementations to follow.}
gem.homepage = "https://github.com/technekes/alchemy-api-rb"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "alchemy-api-rb"
gem.require_paths = ["lib"]
gem.version = AlchemyAPI::VERSION
gem.add_dependency 'faraday', '~> 0.8.1'
gem.add_development_dependency 'rake', '~> 0.9.2'
gem.add_development_dependency 'turn', '~> 0.9.5'
gem.add_development_dependency 'vcr', '~> 2.2.0'
gem.add_development_dependency 'fakeweb', '~> 1.3.0'
end