-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathcalais.gemspec
More file actions
30 lines (23 loc) · 782 Bytes
/
calais.gemspec
File metadata and controls
30 lines (23 loc) · 782 Bytes
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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/calais/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = 'calais'
gem.version = Calais::VERSION
gem.date = Date.today.to_s
gem.summary = 'A Ruby interface to the Calais Web Service'
gem.description = 'A Ruby interface to the Calais Web Service'
gem.authors = ['Abhay Kumar']
gem.email = 'info@opensynapse.net'
gem.homepage = 'http://github.com/abhay/calais'
gem.add_dependency("nokogiri", ">= 1.3.3")
gem.add_dependency("json", ">= 1.1.3")
gem.add_development_dependency("rspec", ">= 2.9.0")
gem.files = Dir[
"CHANGELOG.markdown",
"Gemfile",
"MIT-LICENSE",
"README.markdown",
"Rakefile",
"{bin,lib,man,test,spec}/**/*"
] & `git ls-files`.split("\n")
end