-
Notifications
You must be signed in to change notification settings - Fork 10
/
wordnik.gemspec
40 lines (35 loc) · 1.61 KB
/
wordnik.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
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "wordnik/version"
Gem::Specification.new do |s|
s.name = "wordnik"
s.version = Wordnik::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Zeke Sikelianos", "John McGrath"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://developer.wordnik.com"
s.summary = %q{A ruby wrapper for the Wordnik API}
s.description = %q{This gem provides a simple interface to the entire Wordnik API. Its methods are defined by the documentation that comes from the API itself, so it's guaranteed to be up to date.}
s.rubyforge_project = "wordnik"
s.add_dependency 'typhoeus', '>=0.2.1'
s.add_dependency 'htmlentities', '>=4.2.4'
s.add_dependency 'addressable', '>=2.2.4'
s.add_dependency 'nokogiri', '>=1.4.4'
s.add_dependency 'activemodel', '>=3.0.3'
s.add_dependency 'json', '>=1.4.6'
s.add_development_dependency 'rspec', '~> 2.8.0'
s.add_development_dependency 'vcr', '~> 1.11.3'
s.add_development_dependency 'webmock', '>=1.6.2'
s.add_development_dependency 'autotest'
s.add_development_dependency 'autotest-rails-pure'
s.add_development_dependency 'rake'
s.add_development_dependency 'ruby-prof'
s.files = [
`git ls-files`,
`find api_docs -name '*.json'`,
`find lib/wordnik/resource_modules -name '*.rb'`,
].flatten.join("\n").split("\n").uniq.select{|f| !f.empty? }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end