-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlyracyst.gemspec
40 lines (36 loc) · 1.77 KB
/
lyracyst.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
# coding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'lyracyst/version'
Gem::Specification.new do |s|
s.name = "lyracyst"
s.version = Lyracyst::VERSION
s.platform = Gem::Platform::RUBY
s.authors = "Drew Prentice"
s.email = "[email protected]"
s.homepage = "http://github.com/weirdpercent/lyracyst"
s.summary = %q{DEPRECATED: A powerful word search tool.}
s.description = %q{See Leximaven https://github.com/drawnepicenter/leximaven.}
s.license = "MIT"
s.post_install_message = "**NOTICE** Lyracyst is deprecated, please see https://github.com/drawnepicenter/leximaven for its successor.\nThanks for using lyracyst!\nPlease get necessary API keys as shown in:\nhttp://github.com/weirdpercent/lyracyst"
# If you have other dependencies, add them here
s.add_runtime_dependency "gli", "~> 2.14"
s.add_runtime_dependency "httpi", "~> 2.4"
s.add_runtime_dependency "metainspector", "~> 4.7"
s.add_runtime_dependency "multi_json", "~> 1.12"
s.add_runtime_dependency "multi_xml", "~> 0.5"
s.add_runtime_dependency "nokogiri", "~> 1.6"
s.add_runtime_dependency "rainbow", "~> 2.1"
s.add_runtime_dependency "rubyntlm", "~> 0.6"
s.add_runtime_dependency "xml-fu", "~> 0.2"
s.add_development_dependency "aruba", "~> 0.14"
s.add_development_dependency "bundler", "~> 1.13"
s.add_development_dependency "coveralls", "~> 0.8"
s.add_development_dependency "rake", "~> 11.3"
s.add_development_dependency "spinach", "~> 0.9"
s.add_development_dependency "yard", "~> 0.9"
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "json/*","CHANGELOG.md"]
s.require_path = 'lib'
# If you need an executable, add it here
s.executables = ["lyracyst"]
end