-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmw_dictionary_api.gemspec
More file actions
23 lines (23 loc) · 900 Bytes
/
mw_dictionary_api.gemspec
File metadata and controls
23 lines (23 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'mw_dictionary_api'
s.version = '0.1.2'
s.date = '2013-09-07'
s.summary = "Merriam Webster Dictionary API"
s.description = "A Simple Way to Query Merriam Webster Dictionary API"
s.authors = ["Frank Liu"]
s.email = 'gniquil@gmail.com'
s.files = [
"lib/mw_dictionary_api.rb",
"lib/mw_dictionary_api/client.rb",
"lib/mw_dictionary_api/memory_cache.rb",
"lib/mw_dictionary_api/parsable.rb",
"lib/mw_dictionary_api/result.rb",
"lib/mw_dictionary_api/parsers/result_parser.rb",
"lib/mw_dictionary_api/parsers/entry_parser.rb",
"lib/mw_dictionary_api/parsers/definition_parser.rb"
]
s.homepage = 'https://github.com/gniquil/mw_dictionary_api'
s.license = 'MIT'
s.add_runtime_dependency "nokogiri", "~> 1.6.0"
s.add_development_dependency "rspec", "~> 2.14.1"
end