alexandria-book-collection-manager 0.7.9 → 0.7.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +6 -6
  3. data/.rubocop_todo.yml +13 -26
  4. data/.simplecov +2 -2
  5. data/CHANGELOG.md +8 -0
  6. data/Rakefile +3 -3
  7. data/alexandria-book-collection-manager.gemspec +18 -18
  8. data/lib/alexandria/book_providers/z3950_provider.rb +1 -1
  9. data/lib/alexandria/console.rb +2 -2
  10. data/lib/alexandria/export_library.rb +4 -4
  11. data/lib/alexandria/import_library.rb +1 -1
  12. data/lib/alexandria/library_store.rb +1 -1
  13. data/lib/alexandria/models/library.rb +2 -2
  14. data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +1 -1
  15. data/lib/alexandria/smart_library.rb +2 -2
  16. data/lib/alexandria/ui/alert_dialog.rb +2 -2
  17. data/lib/alexandria/ui/book_properties_dialog_base.rb +3 -3
  18. data/lib/alexandria/ui/icons.rb +2 -2
  19. data/lib/alexandria/ui/init.rb +10 -4
  20. data/lib/alexandria/ui/ui_manager.rb +4 -4
  21. data/lib/alexandria/version.rb +1 -1
  22. data/lib/alexandria/web_themes.rb +1 -1
  23. data/lib/alexandria.rb +6 -5
  24. data/spec/alexandria/book_providers/bl_provider_spec.rb +1 -1
  25. data/spec/alexandria/book_providers/loc_provider_spec.rb +2 -2
  26. data/spec/alexandria/book_providers/sbn_provider_spec.rb +1 -1
  27. data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
  28. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
  29. data/spec/alexandria/book_spec.rb +5 -3
  30. data/spec/alexandria/export_library_spec.rb +8 -8
  31. data/spec/alexandria/library_spec.rb +67 -53
  32. data/spec/alexandria/library_store_spec.rb +1 -1
  33. data/spec/alexandria/preferences_spec.rb +7 -7
  34. data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
  35. data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
  36. data/spec/alexandria/smart_library_spec.rb +7 -5
  37. data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
  38. data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
  39. data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
  40. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
  41. data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
  42. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
  43. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
  44. data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
  45. data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
  46. data/spec/alexandria/ui/iconview_spec.rb +1 -1
  47. data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
  48. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
  49. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
  50. data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
  51. data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
  52. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
  53. data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
  54. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
  55. data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
  56. data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
  57. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
  58. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
  59. data/spec/alexandria/ui/ui_manager_spec.rb +5 -3
  60. data/spec/spec_helper.rb +23 -32
  61. data/util/rake/fileinstall.rb +8 -8
  62. data/util/rake/gettextgenerate.rb +1 -1
  63. metadata +15 -14
@@ -12,6 +12,6 @@ describe Alexandria::UI::KeepBadISBNDialog do
12
12
  book = instance_double(Alexandria::Book,
13
13
  title: "Foo Book",
14
14
  isbn: "98765432")
15
- described_class.new parent, book
15
+ expect { described_class.new parent, book }.not_to raise_error
16
16
  end
17
17
  end
@@ -14,7 +14,7 @@ describe Alexandria::UI::NewBookDialogManual do
14
14
  end
15
15
 
16
16
  it "works" do
17
- described_class.new parent, library
17
+ expect { described_class.new parent, library }.not_to raise_error
18
18
  end
19
19
 
20
20
  describe "#on_change_cover" do
@@ -31,21 +31,21 @@ describe Alexandria::UI::NewBookDialogManual do
31
31
  allow(filechooser)
32
32
  .to receive(:run).and_return(Gtk::ResponseType::ACCEPT)
33
33
 
34
- dialog.on_change_cover
34
+ expect { dialog.on_change_cover }.not_to raise_error
35
35
  end
36
36
 
37
37
  it "works when response is reject" do
38
38
  allow(filechooser)
39
39
  .to receive(:run).and_return(Gtk::ResponseType::REJECT)
40
40
 
41
- dialog.on_change_cover
41
+ expect { dialog.on_change_cover }.not_to raise_error
42
42
  end
43
43
 
44
44
  it "works when response is cancel" do
45
45
  allow(filechooser)
46
46
  .to receive(:run).and_return(Gtk::ResponseType::CANCEL)
47
47
 
48
- dialog.on_change_cover
48
+ expect { dialog.on_change_cover }.not_to raise_error
49
49
  end
50
50
  end
51
51
  end
@@ -11,12 +11,12 @@ describe Alexandria::UI::NewBookDialog do
11
11
  let(:model) { Gtk::ListStore.new(String, String, GdkPixbuf::Pixbuf) }
12
12
 
13
13
  it "works" do
14
- described_class.new parent
14
+ expect { described_class.new parent }.not_to raise_error
15
15
  end
16
16
 
17
17
  it "can copy search results into result treeview" do
18
18
  results = [[an_artist_of_the_floating_world, "cover-url"]]
19
19
  dialog = described_class.new parent
20
- dialog.copy_results_to_treeview_model results, model
20
+ expect { dialog.copy_results_to_treeview_model results, model }.not_to raise_error
21
21
  end
22
22
  end
@@ -10,7 +10,7 @@ describe Alexandria::UI::NewProviderDialog do
10
10
  let(:parent) { Gtk::Window.new :toplevel }
11
11
 
12
12
  it "can be instantiated" do
13
- described_class.new parent
13
+ expect { described_class.new parent }.not_to raise_error
14
14
  end
15
15
 
16
16
  describe "#acquire" do
@@ -19,12 +19,12 @@ describe Alexandria::UI::NewProviderDialog do
19
19
 
20
20
  it "works when response is cancel" do
21
21
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
22
- provider_dialog.acquire
22
+ expect { provider_dialog.acquire }.not_to raise_error
23
23
  end
24
24
 
25
25
  it "works when response is accept" do
26
26
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::ACCEPT)
27
- provider_dialog.acquire
27
+ expect { provider_dialog.acquire }.not_to raise_error
28
28
  end
29
29
  end
30
30
  end
@@ -10,30 +10,32 @@ describe Alexandria::UI::NewSmartLibraryDialog do
10
10
  let(:parent) { Gtk::Window.new :toplevel }
11
11
 
12
12
  it "can be instantiated" do
13
- described_class.new parent
13
+ expect { described_class.new parent }.not_to raise_error
14
14
  end
15
15
 
16
16
  describe "#acquire" do
17
17
  let(:properties_dialog) { described_class.new parent }
18
18
  let(:gtk_dialog) { properties_dialog.dialog }
19
+ let(:rules_box) { properties_dialog.instance_variable_get(:@rules_box) }
20
+ let(:rule_entry) { rules_box.children.first.children[2] }
19
21
 
20
22
  it "works when response is cancel" do
21
23
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
22
- properties_dialog.acquire
24
+ expect { properties_dialog.acquire }.not_to raise_error
23
25
  end
24
26
 
25
27
  it "returns a smart library that can be saved when response is ok" do
26
28
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::OK)
27
29
 
28
30
  # Make sure entered rule is valid
29
- rules_box = properties_dialog.instance_variable_get(:@rules_box)
30
- entry = rules_box.children.first.children[2]
31
- entry.text = "foo"
31
+ rule_entry.text = "foo"
32
32
 
33
33
  result = properties_dialog.acquire
34
34
 
35
- expect(result).to be_a Alexandria::SmartLibrary
36
- expect { result.save }.not_to raise_error
35
+ aggregate_failures do
36
+ expect(result).to be_a Alexandria::SmartLibrary
37
+ expect { result.save }.not_to raise_error
38
+ end
37
39
  end
38
40
  end
39
41
  end
@@ -9,6 +9,6 @@ require_relative "../../spec_helper"
9
9
  describe Alexandria::UI::PreferencesDialog do
10
10
  it "works" do
11
11
  parent = Gtk::Window.new :toplevel
12
- described_class.new(parent) { nil }
12
+ expect { described_class.new(parent) { nil } }.not_to raise_error
13
13
  end
14
14
  end
@@ -19,7 +19,7 @@ describe Alexandria::UI::ProviderPreferencesDialog do
19
19
  end
20
20
 
21
21
  it "can be instantiated" do
22
- described_class.new parent, provider
22
+ expect { described_class.new parent, provider }.not_to raise_error
23
23
  end
24
24
 
25
25
  describe "#acquire" do
@@ -28,7 +28,7 @@ describe Alexandria::UI::ProviderPreferencesDialog do
28
28
  gtk_dialog = preferences_dialog.dialog
29
29
  allow(gtk_dialog).to receive(:run)
30
30
 
31
- preferences_dialog.acquire
31
+ expect { preferences_dialog.acquire }.not_to raise_error
32
32
  end
33
33
  end
34
34
  end
@@ -11,6 +11,6 @@ describe Alexandria::UI::ReallyDeleteDialog do
11
11
  library = instance_double(Alexandria::Library,
12
12
  name: "Bar Library", empty?: false, size: 12)
13
13
  parent = Gtk::Window.new :toplevel
14
- described_class.new parent, library
14
+ expect { described_class.new parent, library }.not_to raise_error
15
15
  end
16
16
  end
@@ -10,6 +10,6 @@ describe Alexandria::UI::SidepaneManager do
10
10
  it "works" do
11
11
  library_listview = instance_double(Gtk::TreeView).as_null_object
12
12
  parent = instance_double(Alexandria::UI::UIManager, main_app: nil, append_library: nil)
13
- described_class.new library_listview, parent
13
+ expect { described_class.new library_listview, parent }.not_to raise_error
14
14
  end
15
15
  end
@@ -7,8 +7,24 @@
7
7
  require_relative "../../spec_helper"
8
8
 
9
9
  describe Alexandria::UI::SkipEntryDialog do
10
+ let(:parent) { Gtk::Window.new :toplevel }
11
+
10
12
  it "works" do
11
- parent = Gtk::Window.new :toplevel
12
- described_class.new parent, "Foo"
13
+ expect { described_class.new parent, "Foo" }.not_to raise_error
14
+ end
15
+
16
+ describe "continue?" do
17
+ let(:instance) { described_class.new parent, "Foo" }
18
+ let(:dialog) { instance.dialog }
19
+
20
+ it "returns false when response is cancel" do
21
+ allow(dialog).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
22
+ expect(instance.continue?).to be false
23
+ end
24
+
25
+ it "returns true when response is OK" do
26
+ allow(dialog).to receive(:run).and_return(Gtk::ResponseType::OK)
27
+ expect(instance.continue?).to be true
28
+ end
13
29
  end
14
30
  end
@@ -18,12 +18,12 @@ describe Alexandria::UI::SmartLibraryPropertiesDialog do
18
18
  describe "#acquire" do
19
19
  it "works when response is cancel" do
20
20
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::CANCEL)
21
- properties_dialog.acquire
21
+ expect { properties_dialog.acquire }.not_to raise_error
22
22
  end
23
23
 
24
24
  it "works when response is ok" do
25
25
  allow(gtk_dialog).to receive(:run).and_return(Gtk::ResponseType::OK)
26
- properties_dialog.acquire
26
+ expect { properties_dialog.acquire }.not_to raise_error
27
27
  end
28
28
  end
29
29
 
@@ -10,7 +10,7 @@ describe Alexandria::UI::UIManager do
10
10
  let(:main_app) { instance_double(Alexandria::UI::MainApp) }
11
11
 
12
12
  it "works" do
13
- described_class.new main_app
13
+ expect { described_class.new main_app }.not_to raise_error
14
14
  end
15
15
 
16
16
  describe "#on_new" do
@@ -41,12 +41,14 @@ describe Alexandria::UI::UIManager do
41
41
  regular_library.each { |book| ui.append_book book }
42
42
  # This makes the iconview model re-appear
43
43
  ui.iconview.unfreeze
44
- expect(ui.model.iter_n_children).to eq regular_library.count
45
44
 
46
45
  # This triggers the #on_books_selection_changed callback
47
46
  ui.select_a_book regular_library.first
48
47
 
49
- expect(ui.iconview.selected_items).not_to be_empty
48
+ aggregate_failures do
49
+ expect(ui.model.iter_n_children).to eq regular_library.count
50
+ expect(ui.iconview.selected_items).not_to be_empty
51
+ end
50
52
  end
51
53
  end
52
54
 
data/spec/spec_helper.rb CHANGED
@@ -20,45 +20,36 @@ def an_artist_of_the_floating_world
20
20
  "Paperback")
21
21
  end
22
22
 
23
- def assert_correct_search_result(provider, query,
24
- search_type = Alexandria::BookProviders::SEARCH_BY_ISBN)
25
- begin
26
- results = provider.instance.search(query, search_type)
27
- rescue SocketError
28
- skip "Service is offline"
29
- end
30
-
31
- expect(results).to be_instance_of(Array), "Results are not an array for #{provider}"
32
- expect(results).not_to be_empty, "Results are empty for #{provider}"
23
+ RSpec::Matchers.define :have_correct_search_result_for do |query|
24
+ match(notify_expectation_failures: true) do |provider|
25
+ begin
26
+ results = provider.instance.search(query, Alexandria::BookProviders::SEARCH_BY_ISBN)
27
+ rescue SocketError
28
+ skip "Service is offline"
29
+ end
33
30
 
34
- if search_type == Alexandria::BookProviders::SEARCH_BY_ISBN
35
- expect(results.length).to be <= 2, "Results are greater than 2 for #{provider}"
31
+ expect(results).to be_instance_of(Array)
32
+ expect(results).not_to be_empty
33
+ expect(results.length).to be <= 2
36
34
 
37
- book = results.first
35
+ book, cover_url = *results
38
36
 
39
- expect(book).to be_instance_of(Alexandria::Book),
40
- "Result is not a Book for #{provider}"
37
+ expect(book).to be_instance_of(Alexandria::Book)
41
38
 
42
39
  canonical_query = Alexandria::Library.canonicalise_ean(query)
43
40
  canonical_result = Alexandria::Library.canonicalise_ean(book.isbn)
44
- expect(canonical_query)
45
- .to eq(canonical_result),
46
- "Result's isbn #{book.isbn} is not equivalent" \
47
- " to the requested isbn #{query} for #{provider}"
48
-
49
- if results.length == 2
50
- cover_url = results.last
51
- if cover_url
52
- expect(cover_url)
53
- .to be_instance_of(String),
54
- "Unexpected cover_url #{cover_url.inspect} for #{provider}"
55
- end
56
- end
57
- else
58
- expect(results.first.first)
59
- .to be_instance_of(Alexandria::Book), "Result item is not a Book for #{provider}"
41
+ expect(canonical_query).to eq(canonical_result)
42
+
43
+ expect(cover_url).to be_instance_of(String) if cover_url
44
+
45
+ true
46
+ end
47
+ end
48
+
49
+ RSpec::Matchers.define :be_an_existing_file do
50
+ match do |filename|
51
+ File.exist? filename
60
52
  end
61
- results
62
53
  end
63
54
 
64
55
  Alexandria::UI::Icons.init
@@ -171,14 +171,14 @@ class FileInstallTask < Rake::TaskLib
171
171
  def calculate_ruby_dir
172
172
  ruby_prefix = RbConfig::CONFIG["prefix"]
173
173
 
174
- ruby_libdir = if @install_to_rubylibdir
175
- RbConfig::CONFIG["rubylibdir"]
176
- else
177
- RbConfig::CONFIG["sitelibdir"]
178
- end
179
- ruby_libdir = ENV["RUBYLIBDIR"] if ENV.key?("RUBYLIBDIR")
180
-
181
- @prefix = ENV["PREFIX"] || ruby_prefix
174
+ ruby_libdir = ENV.fetch("RUBYLIBDIR", nil)
175
+ ruby_libdir ||= if @install_to_rubylibdir
176
+ RbConfig::CONFIG["rubylibdir"]
177
+ else
178
+ RbConfig::CONFIG["sitelibdir"]
179
+ end
180
+
181
+ @prefix = ENV.fetch("PREFIX", ruby_prefix)
182
182
  if @prefix == ruby_prefix
183
183
  @rubylib = ruby_libdir
184
184
  elsif ruby_libdir.index(ruby_prefix).zero?
@@ -54,7 +54,7 @@ class GettextGenerateTask < Rake::TaskLib
54
54
  # create MO files
55
55
  rule(/\.mo$/ => [->(dest) { source_file(dest) }]) do |t|
56
56
  dest_dir = File.dirname(t.name)
57
- FileUtils.makedirs(dest_dir) unless FileTest.exists?(dest_dir)
57
+ FileUtils.makedirs(dest_dir)
58
58
  puts "Generating #{t.name}"
59
59
  result = system("msgfmt #{t.source} -o #{t.name}")
60
60
  raise "msgfmt failed for #{t.source}" unless result
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alexandria-book-collection-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.9
4
+ version: 0.7.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander McCormmach
@@ -28,7 +28,7 @@ authors:
28
28
  autorequire:
29
29
  bindir: bin
30
30
  cert_chain: []
31
- date: 2022-02-04 00:00:00.000000000 Z
31
+ date: 2022-10-14 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: gettext
@@ -50,28 +50,28 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: 3.5.0
53
+ version: 4.0.2
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: 3.5.0
60
+ version: 4.0.2
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: gtk3
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: 3.5.0
67
+ version: 4.0.2
68
68
  type: :runtime
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: 3.5.0
74
+ version: 4.0.2
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: htmlentities
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -109,7 +109,7 @@ dependencies:
109
109
  version: '1.0'
110
110
  - - "<"
111
111
  - !ruby/object:Gem::Version
112
- version: '1.2'
112
+ version: '1.3'
113
113
  type: :runtime
114
114
  prerelease: false
115
115
  version_requirements: !ruby/object:Gem::Requirement
@@ -119,7 +119,7 @@ dependencies:
119
119
  version: '1.0'
120
120
  - - "<"
121
121
  - !ruby/object:Gem::Version
122
- version: '1.2'
122
+ version: '1.3'
123
123
  - !ruby/object:Gem::Dependency
124
124
  name: nokogiri
125
125
  requirement: !ruby/object:Gem::Requirement
@@ -174,14 +174,14 @@ dependencies:
174
174
  requirements:
175
175
  - - "~>"
176
176
  - !ruby/object:Gem::Version
177
- version: 0.3.0
177
+ version: 0.3.2
178
178
  type: :development
179
179
  prerelease: false
180
180
  version_requirements: !ruby/object:Gem::Requirement
181
181
  requirements:
182
182
  - - "~>"
183
183
  - !ruby/object:Gem::Version
184
- version: 0.3.0
184
+ version: 0.3.2
185
185
  - !ruby/object:Gem::Dependency
186
186
  name: rake
187
187
  requirement: !ruby/object:Gem::Requirement
@@ -216,14 +216,14 @@ dependencies:
216
216
  requirements:
217
217
  - - "~>"
218
218
  - !ruby/object:Gem::Version
219
- version: '1.25'
219
+ version: '1.32'
220
220
  type: :development
221
221
  prerelease: false
222
222
  version_requirements: !ruby/object:Gem::Requirement
223
223
  requirements:
224
224
  - - "~>"
225
225
  - !ruby/object:Gem::Version
226
- version: '1.25'
226
+ version: '1.32'
227
227
  - !ruby/object:Gem::Dependency
228
228
  name: rubocop-i18n
229
229
  requirement: !ruby/object:Gem::Requirement
@@ -338,7 +338,6 @@ files:
338
338
  - lib/alexandria/book_providers/bl_provider.rb
339
339
  - lib/alexandria/book_providers/douban.rb
340
340
  - lib/alexandria/book_providers/loc_provider.rb
341
- - lib/alexandria/book_providers/pseudomarc.rb
342
341
  - lib/alexandria/book_providers/sbn_provider.rb
343
342
  - lib/alexandria/book_providers/thalia_provider.rb
344
343
  - lib/alexandria/book_providers/web.rb
@@ -361,6 +360,7 @@ files:
361
360
  - lib/alexandria/models/library.rb
362
361
  - lib/alexandria/net.rb
363
362
  - lib/alexandria/preferences.rb
363
+ - lib/alexandria/pseudo_marc_parser.rb
364
364
  - lib/alexandria/scanners.rb
365
365
  - lib/alexandria/scanners/cue_cat.rb
366
366
  - lib/alexandria/scanners/keyboard.rb
@@ -577,6 +577,7 @@ files:
577
577
  - spec/alexandria/library_spec.rb
578
578
  - spec/alexandria/library_store_spec.rb
579
579
  - spec/alexandria/preferences_spec.rb
580
+ - spec/alexandria/pseudo_marc_parser_spec.rb
580
581
  - spec/alexandria/scanners/cue_cat_spec.rb
581
582
  - spec/alexandria/smart_library_spec.rb
582
583
  - spec/alexandria/ui/about_dialog_spec.rb
@@ -652,7 +653,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
652
653
  - !ruby/object:Gem::Version
653
654
  version: '0'
654
655
  requirements: []
655
- rubygems_version: 3.3.3
656
+ rubygems_version: 3.3.7
656
657
  signing_key:
657
658
  specification_version: 4
658
659
  summary: GNOME application for managing collections of books