-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcliptic.gemspec
25 lines (24 loc) · 1.05 KB
/
cliptic.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
require_relative "lib/cliptic/version"
Gem::Specification.new do |spec|
spec.name = "cliptic"
spec.version = Cliptic::VERSION
spec.authors = ["Christian Welham"]
spec.email = ["welhamm@gmail.com"]
spec.summary = "Terminal-based cryptic crossword player"
spec.description = "A terminal user interface to fetch and play cryptic crosswords"
spec.homepage = "https://github.com/apexatoll/cliptic"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/apexatoll/cliptic"
spec.metadata["changelog_uri"] = "https://github.com/apexatoll/cliptic/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.bindir = "bin"
spec.executables << "cliptic"
spec.require_paths = ["lib"]
spec.add_dependency("curses", "~> 1.4.0")
spec.add_dependency("curb", "~> 0.9.11")
spec.add_dependency("sqlite3", "~> 1.4.2")
end