-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbing_dictionary.gemspec
27 lines (22 loc) · 1012 Bytes
/
bing_dictionary.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bing_dictionary/version'
Gem::Specification.new do |spec|
spec.name = "bing_dictionary"
spec.version = BingDictionary::VERSION
spec.authors = ["lingceng"]
spec.email = ["lingceng2008@gmail.com"]
spec.licenses = "MIT"
spec.summary = %q{Command line dictionary grabing http://cn.bing.com/}
spec.description = %q{With local cache and can work with vim}
spec.homepage = "https://github.com/lingceng/bing_dictionary"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = 'dict'
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", ">= 2.2.10"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_dependency "nokogiri", "~> 1.6"
end