forked from PRX/open_calais
-
Notifications
You must be signed in to change notification settings - Fork 4
/
open_calais.gemspec
33 lines (29 loc) · 1.38 KB
/
open_calais.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
25
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'open_calais/version'
Gem::Specification.new do |gem|
gem.name = "open_calais"
gem.version = OpenCalais::VERSION
gem.authors = ["Andrew Kuklewicz"]
gem.email = ["andrew@prx.org"]
gem.summary = %q{This is a gem to call the OpenCalais improved REST API.}
gem.description = %q{This is a gem to call the OpenCalais improved REST API. http://www.opencalais.com/ http://www.opencalais.com/documentation/calais-web-service-api/api-invocation/rest}
gem.homepage = "https://github.com/PRX/open_calais"
gem.license = 'MIT'
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.require_paths = ["lib"]
gem.add_runtime_dependency('faraday')
gem.add_runtime_dependency('faraday_middleware')
gem.add_runtime_dependency('multi_json')
gem.add_runtime_dependency('multi_xml')
gem.add_runtime_dependency('excon')
gem.add_runtime_dependency('hashie')
gem.add_runtime_dependency('activesupport')
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest')
gem.add_development_dependency('simplecov')
gem.add_development_dependency('coveralls')
end