forked from glampr/textrazor-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_razor.gemspec
26 lines (22 loc) · 1.1 KB
/
text_razor.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'text_razor/version'
Gem::Specification.new do |s|
s.name = 'text_razor'
s.version = TextRazor::VERSION
s.add_runtime_dependency "httpclient"
s.date = '2016-11-10'
s.summary = "TextRazor Ruby client"
s.description = <<-DESC
TextRazor
=========
Ruby SDK for the TextRazor Text Analytics API (https://textrazor.com).
TextRazor offers a comprehensive suite of state-of-the-art natural language processing functionality, with easy integration into your applications in minutes. TextRazor helps hundreds of applications understand unstructured content across a range of verticals, with use cases including social media monitoring, enterprise search, recommendation systems and ad targetting.
Read more about the TextRazor API at https://www.textrazor.com.
DESC
s.authors = ["George Lamprianidis"]
s.email = '[email protected]'
s.files = ["lib/text_razor.rb"]
s.homepage = 'http://rubygems.org/gems/textrazor_client'
s.license = 'MIT'
end