-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquran-audio.gemspec
39 lines (36 loc) · 1.14 KB
/
quran-audio.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
# frozen_string_literal: true
Gem::Specification.new do |gem|
gem.name = "quran-audio"
gem.authors = ["0x1eef"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/ReflectsLight/quran-audio#readme"
gem.version = File.binread("./share/quran-audio/VERSION")[/[\d.]+/]
gem.licenses = ["GPL-3.0-or-later"]
gem.files = Dir[
"README.md",
"LICENSE",
"libexec/**/*",
"lib/**/*.rb",
"share/**/*",
"bin/*",
"bundle/*/lib/*.rb",
"bundle/*/lib/**/*.rb",
"bundle/*/lib/*/**/*.rb",
]
gem.executables = ["quran-audio"]
gem.require_paths = ["lib"]
gem.summary = "Download recitations of The Noble Quran"
gem.description = gem.summary
##
# runtime dependencies
# (all but "paint" are from the stdlib)
gem.add_runtime_dependency "paint", "~> 2.3"
gem.add_runtime_dependency "json", "~> 2.6"
gem.add_runtime_dependency "optparse", "~> 0.6"
gem.add_runtime_dependency "net-http", "~> 0.5"
gem.add_runtime_dependency "forwardable", "~> 1.3"
##
# development dependencies
gem.add_development_dependency "standard", "~> 1.25"
gem.add_development_dependency "irb", "~> 1.14"
end