forked from markburns/ldoce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathldoce.gemspec
23 lines (20 loc) · 953 Bytes
/
ldoce.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ldoce/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Mark Burns"]
gem.email = ["[email protected]"]
gem.description = %q{API for the Longman Dictionary of Contemporary English}
gem.summary = %q{So far covers playing mp3 media files and fetching definitions}
gem.homepage = "https://github.com/markburns/ldoce"
gem.add_dependency 'httparty'
gem.add_development_dependency 'ruby-debug19'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'vcr'
gem.add_development_dependency 'webmock'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "ldoce"
gem.require_paths = ["lib"]
gem.version = Ldoce::VERSION
end