-
Notifications
You must be signed in to change notification settings - Fork 15
/
alexandria-book-collection-manager.gemspec
73 lines (62 loc) · 2.31 KB
/
alexandria-book-collection-manager.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# frozen_string_literal: true
require_relative "lib/alexandria/version"
Gem::Specification.new do |spec|
spec.name = "alexandria-book-collection-manager"
spec.version = Alexandria::VERSION
spec.authors = [
"Alexander McCormmach",
"Aymeric Nys",
"Cathal Mc Ginley",
"Claudio Belotti",
"Constantine Evans",
"Dafydd Harries",
"Javier Fernandez-Sanguino Pena",
"Joseph Method",
"Kevin Schultz",
"Laurent Sansonetti",
"Marco Costantini",
"Mathieu Leduc-Hamel",
"Matijs van Zuijlen",
"Owain Evans",
"Pascal Terjan",
"Rene Samselnig",
"Robby Stephenson",
"Sun Ning",
"Takayuki Kusano",
"Timothy Malone",
"Zachary P. Landau"
]
spec.email = ["[email protected]"]
spec.summary = "GNOME application for managing collections of books"
spec.homepage = "http://www.github.com/mvz/alexandria-book-collection-manager"
spec.license = "GPL-2.0-or-later"
spec.required_ruby_version = ">= 3.0"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = `git ls-files -z`.split("\0") |
["lib/alexandria/default_preferences.rb"]
spec.bindir = "exe"
spec.executables = ["alexandria"]
spec.require_paths = ["lib"]
spec.rdoc_options = ["--main", "README.md"]
spec.add_dependency "alexandria-zoom", ["~> 0.6.0"]
spec.add_dependency "csv", "~> 3.2"
spec.add_dependency "gettext", ["~> 3.1"]
spec.add_dependency "gstreamer", "~> 4.2.0"
spec.add_dependency "gtk3", "~> 4.2.0"
spec.add_dependency "htmlentities", ["~> 4.3"]
spec.add_dependency "image_size", ["~> 3.0"]
spec.add_dependency "marc", ">= 1.0", "< 1.3"
spec.add_dependency "nokogiri", ["~> 1.11"]
spec.add_dependency "observer", "~> 0.1.2"
spec.add_development_dependency "base64", "~> 0.2.0"
spec.add_development_dependency "gnome_app_driver", "~> 0.3.2"
spec.add_development_dependency "rake", ["~> 13.0"]
spec.add_development_dependency "rspec", ["~> 3.0"]
spec.add_development_dependency "rubocop", "~> 1.56"
spec.add_development_dependency "rubocop-i18n", "~> 3.0"
spec.add_development_dependency "rubocop-performance", "~> 1.19"
spec.add_development_dependency "rubocop-rake", "~> 0.6.0"
spec.add_development_dependency "rubocop-rspec", "~> 3.0"
spec.add_development_dependency "simplecov", "~> 0.22.0"
spec.add_development_dependency "webmock", "~> 3.9"
end