alexandria-book-collection-manager 0.7.1 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/dependabot.yml +9 -0
- data/.gitignore +5 -2
- data/.hound.yml +2 -0
- data/.rubocop.yml +113 -45
- data/.rubocop_todo.yml +82 -170
- data/.simplecov +5 -1
- data/.travis.yml +45 -0
- data/.yardopts +1 -1
- data/CHANGELOG.md +60 -0
- data/ChangeLog.0 +33 -35
- data/Gemfile +6 -5
- data/INSTALL.md +164 -0
- data/README.md +52 -42
- data/Rakefile +95 -109
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +52 -45
- data/bin/alexandria +31 -53
- data/doc/AUTHORS +61 -0
- data/doc/BUGS +31 -0
- data/doc/FAQ +365 -0
- data/doc/HACKING +19 -0
- data/doc/NEWS +341 -0
- data/doc/alexandria.1 +120 -0
- data/doc/cuecat_support.rdoc +67 -0
- data/doc/dependency_decisions.yml +80 -0
- data/lib/alexandria.rb +29 -37
- data/lib/alexandria/about.rb +52 -51
- data/lib/alexandria/book_providers.rb +94 -101
- data/lib/alexandria/book_providers/adlibris.rb +45 -85
- data/lib/alexandria/book_providers/amazon_aws.rb +105 -113
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +293 -324
- data/lib/alexandria/book_providers/barnes_and_noble.rb +54 -53
- data/lib/alexandria/book_providers/douban.rb +29 -51
- data/lib/alexandria/book_providers/proxis.rb +42 -59
- data/lib/alexandria/book_providers/pseudomarc.rb +79 -99
- data/lib/alexandria/book_providers/siciliano.rb +68 -70
- data/lib/alexandria/book_providers/thalia.rb +46 -45
- data/lib/alexandria/book_providers/web.rb +17 -33
- data/lib/alexandria/book_providers/worldcat.rb +74 -102
- data/lib/alexandria/book_providers/z3950.rb +170 -174
- data/lib/alexandria/config.rb +5 -3
- data/lib/alexandria/console.rb +10 -21
- data/lib/alexandria/default_preferences.rb +37 -0
- data/lib/alexandria/execution_queue.rb +17 -15
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +188 -302
- data/lib/alexandria/import_library.rb +114 -155
- data/lib/alexandria/import_library_csv.rb +46 -96
- data/lib/alexandria/library_collection.rb +79 -0
- data/lib/alexandria/library_sort_order.rb +45 -0
- data/lib/alexandria/library_store.rb +233 -0
- data/lib/alexandria/logging.rb +15 -19
- data/lib/alexandria/models/book.rb +15 -20
- data/lib/alexandria/models/library.rb +81 -363
- data/lib/alexandria/net.rb +7 -6
- data/lib/alexandria/preferences.rb +73 -91
- data/lib/alexandria/scanners.rb +4 -2
- data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +24 -20
- data/lib/alexandria/scanners/keyboard.rb +10 -8
- data/lib/alexandria/smart_library.rb +135 -171
- data/lib/alexandria/ui.rb +17 -15
- data/lib/alexandria/ui/about_dialog.rb +49 -0
- data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +129 -152
- data/lib/alexandria/ui/alert_dialog.rb +64 -0
- data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
- data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +18 -15
- data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +44 -61
- data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +84 -89
- data/lib/alexandria/ui/builder_base.rb +9 -27
- data/lib/alexandria/ui/callbacks.rb +188 -186
- data/lib/alexandria/ui/columns.rb +2 -0
- data/lib/alexandria/ui/completion_models.rb +12 -23
- data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
- data/lib/alexandria/ui/dndable.rb +10 -8
- data/lib/alexandria/ui/error_dialog.rb +25 -0
- data/lib/alexandria/ui/export_dialog.rb +139 -0
- data/lib/alexandria/ui/icons.rb +49 -65
- data/lib/alexandria/ui/iconview.rb +15 -13
- data/lib/alexandria/ui/iconview_tooltips.rb +43 -58
- data/lib/alexandria/ui/import_dialog.rb +157 -0
- data/lib/alexandria/ui/init.rb +23 -33
- data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
- data/lib/alexandria/ui/libraries_combo.rb +18 -14
- data/lib/alexandria/ui/listview.rb +77 -88
- data/lib/alexandria/ui/main_app.rb +26 -26
- data/lib/alexandria/ui/misc_dialogs.rb +10 -0
- data/lib/alexandria/ui/multi_drag_treeview.rb +30 -41
- data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +168 -215
- data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
- data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
- data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
- data/lib/alexandria/ui/preferences_dialog.rb +313 -0
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
- data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
- data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
- data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +62 -72
- data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
- data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
- data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +96 -172
- data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
- data/lib/alexandria/ui/sound.rb +13 -13
- data/lib/alexandria/ui/ui_manager.rb +262 -283
- data/lib/alexandria/undo_manager.rb +3 -0
- data/lib/alexandria/version.rb +6 -19
- data/lib/alexandria/web_themes.rb +24 -21
- data/po/Makefile +2 -2
- data/po/cs.po +993 -880
- data/po/cy.po +957 -874
- data/po/de.po +990 -869
- data/po/el.po +989 -869
- data/po/es.po +985 -865
- data/po/fr.po +986 -870
- data/po/ga.po +907 -823
- data/po/gl.po +981 -865
- data/po/it.po +986 -868
- data/po/ja.po +969 -853
- data/po/mk.po +983 -863
- data/po/nb.po +979 -863
- data/po/nl.po +983 -864
- data/po/pl.po +1020 -969
- data/po/pt.po +988 -861
- data/po/pt_BR.po +984 -868
- data/po/ru.po +992 -873
- data/po/sk.po +987 -869
- data/po/sv.po +977 -861
- data/po/uk.po +975 -865
- data/po/zh_TW.po +976 -860
- data/schemas/alexandria.schemas +25 -3
- data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
- data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
- data/share/alexandria/glade/main_app__builder.glade +24 -33
- data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
- data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
- data/share/gnome/help/alexandria/C/introduction.xml +0 -8
- data/share/gnome/help/alexandria/C/searching.xml +1 -1
- data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
- data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
- data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
- data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
- data/spec/alexandria/book_providers_spec.rb +77 -210
- data/spec/alexandria/book_spec.rb +16 -12
- data/spec/alexandria/console_spec.rb +27 -0
- data/spec/alexandria/export_library_spec.rb +130 -0
- data/spec/alexandria/library_spec.rb +130 -172
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/preferences_spec.rb +46 -17
- data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
- data/spec/alexandria/smart_library_spec.rb +32 -25
- data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
- data/spec/alexandria/ui/icons_spec.rb +26 -0
- data/spec/alexandria/ui/iconview_spec.rb +9 -21
- data/spec/alexandria/ui/import_dialog_spec.rb +41 -0
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/main_app_spec.rb +8 -33
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
- data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
- data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +32 -0
- data/spec/alexandria/ui/sound_spec.rb +4 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +45 -20
- data/spec/end_to_end/basic_run_spec.rb +57 -0
- data/spec/spec_helper.rb +66 -33
- data/tasks/setup.rb +5 -3
- data/tasks/spec.rake +18 -3
- data/util/rake/fileinstall.rb +38 -40
- data/util/rake/gettextgenerate.rb +15 -70
- data/util/rake/omfgenerate.rb +10 -10
- metadata +176 -60
- data/INSTALL.rdoc +0 -148
- data/dogtail/basic_run_test.py +0 -9
- data/lib/alexandria/book_providers/bol_it.rb +0 -160
- data/lib/alexandria/book_providers/deastore.rb +0 -273
- data/lib/alexandria/book_providers/ibs_it.rb +0 -147
- data/lib/alexandria/book_providers/mcu.rb +0 -169
- data/lib/alexandria/book_providers/renaud.rb +0 -140
- data/lib/alexandria/book_providers/webster_it.rb +0 -167
- data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -59
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -70
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -43
- data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
- data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -85
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -578
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -57
- data/spec/alexandria/scanners/cuecat_spec.rb +0 -65
- data/spec/alexandria/ui/dialogs_spec.rb +0 -94
- data/spec/alexandria/ui/sidepane_spec.rb +0 -27
- data/spec/alexandria/ui/ui_utilities_spec.rb +0 -60
- data/spec/alexandria/utilities_spec.rb +0 -50
- data/tasks/dogtail.rake +0 -4
data/util/rake/omfgenerate.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# -*- ruby -*-
|
2
4
|
#--
|
3
5
|
# Copyright (C) 2009 Cathal Mc Ginley
|
@@ -24,9 +26,9 @@
|
|
24
26
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
27
|
#++
|
26
28
|
|
27
|
-
require
|
28
|
-
require
|
29
|
-
require
|
29
|
+
require "fileutils"
|
30
|
+
require "pathname"
|
31
|
+
require "rake/tasklib"
|
30
32
|
|
31
33
|
class OmfGenerateTask < Rake::TaskLib
|
32
34
|
def initialize(projectname)
|
@@ -37,12 +39,10 @@ class OmfGenerateTask < Rake::TaskLib
|
|
37
39
|
end
|
38
40
|
|
39
41
|
def make_task
|
40
|
-
desc
|
42
|
+
desc "Generate Open Metadata Framework files"
|
41
43
|
task omf: @generated_files
|
42
44
|
|
43
|
-
if CLOBBER
|
44
|
-
@generated_files.each { |gen| CLOBBER << gen }
|
45
|
-
end
|
45
|
+
@generated_files.each { |gen| CLOBBER << gen } if CLOBBER
|
46
46
|
end
|
47
47
|
|
48
48
|
def locale_for(omf_file)
|
@@ -55,7 +55,7 @@ class OmfGenerateTask < Rake::TaskLib
|
|
55
55
|
end
|
56
56
|
|
57
57
|
def omf_files
|
58
|
-
in_files.map { |f| f.sub(/.omf.in/,
|
58
|
+
in_files.map { |f| f.sub(/.omf.in/, ".omf") }
|
59
59
|
end
|
60
60
|
|
61
61
|
attr_writer :gnome_helpfiles_dir
|
@@ -64,13 +64,13 @@ class OmfGenerateTask < Rake::TaskLib
|
|
64
64
|
@source_dir = src_dir
|
65
65
|
@source_files_glob = file_glob
|
66
66
|
|
67
|
-
rule
|
67
|
+
rule ".omf" => [".omf.in"] do |t|
|
68
68
|
path = File.join(@gnome_helpfiles_dir, @projectname,
|
69
69
|
locale_for(t.name), "#{@projectname}.xml")
|
70
70
|
data = IO.read(t.source)
|
71
71
|
data.sub!(/PATH_TO_DOC_FILE/, path)
|
72
72
|
puts "Generating #{t.name}..."
|
73
|
-
File.open(t.name,
|
73
|
+
File.open(t.name, "w") { |io| io.puts data }
|
74
74
|
end
|
75
75
|
omf_files.each { |o| @generated_files << o }
|
76
76
|
end
|
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.
|
4
|
+
version: 0.7.6
|
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:
|
31
|
+
date: 2020-11-01 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: gettext
|
@@ -45,103 +45,103 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '3.1'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
48
|
+
name: gstreamer
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: 3.4.3
|
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:
|
60
|
+
version: 3.4.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
|
-
name:
|
62
|
+
name: gtk3
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version:
|
67
|
+
version: 3.4.3
|
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:
|
74
|
+
version: 3.4.3
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
76
|
+
name: hpricot
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
79
|
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version:
|
81
|
+
version: 0.8.5
|
82
82
|
type: :runtime
|
83
83
|
prerelease: false
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
88
|
+
version: 0.8.5
|
89
89
|
- !ruby/object:Gem::Dependency
|
90
|
-
name:
|
90
|
+
name: htmlentities
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
92
92
|
requirements:
|
93
93
|
- - "~>"
|
94
94
|
- !ruby/object:Gem::Version
|
95
|
-
version: 3
|
95
|
+
version: '4.3'
|
96
96
|
type: :runtime
|
97
97
|
prerelease: false
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
99
99
|
requirements:
|
100
100
|
- - "~>"
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: 3
|
102
|
+
version: '4.3'
|
103
103
|
- !ruby/object:Gem::Dependency
|
104
|
-
name:
|
104
|
+
name: image_size
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '2.0'
|
110
110
|
type: :runtime
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - "~>"
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '2.0'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
|
-
name:
|
118
|
+
name: marc
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
120
120
|
requirements:
|
121
121
|
- - "~>"
|
122
122
|
- !ruby/object:Gem::Version
|
123
|
-
version: 1.
|
123
|
+
version: 1.0.0
|
124
124
|
type: :runtime
|
125
125
|
prerelease: false
|
126
126
|
version_requirements: !ruby/object:Gem::Requirement
|
127
127
|
requirements:
|
128
128
|
- - "~>"
|
129
129
|
- !ruby/object:Gem::Version
|
130
|
-
version: 1.
|
130
|
+
version: 1.0.0
|
131
131
|
- !ruby/object:Gem::Dependency
|
132
|
-
name:
|
132
|
+
name: psych
|
133
133
|
requirement: !ruby/object:Gem::Requirement
|
134
134
|
requirements:
|
135
135
|
- - "~>"
|
136
136
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
137
|
+
version: 3.2.0
|
138
138
|
type: :runtime
|
139
139
|
prerelease: false
|
140
140
|
version_requirements: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
142
|
- - "~>"
|
143
143
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
144
|
+
version: 3.2.0
|
145
145
|
- !ruby/object:Gem::Dependency
|
146
146
|
name: zoom
|
147
147
|
requirement: !ruby/object:Gem::Requirement
|
@@ -156,6 +156,20 @@ dependencies:
|
|
156
156
|
- - "~>"
|
157
157
|
- !ruby/object:Gem::Version
|
158
158
|
version: 0.5.0
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: gnome_app_driver
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - "~>"
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: 0.2.1
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - "~>"
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: 0.2.1
|
159
173
|
- !ruby/object:Gem::Dependency
|
160
174
|
name: minitest
|
161
175
|
requirement: !ruby/object:Gem::Requirement
|
@@ -176,14 +190,14 @@ dependencies:
|
|
176
190
|
requirements:
|
177
191
|
- - "~>"
|
178
192
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
193
|
+
version: '13.0'
|
180
194
|
type: :development
|
181
195
|
prerelease: false
|
182
196
|
version_requirements: !ruby/object:Gem::Requirement
|
183
197
|
requirements:
|
184
198
|
- - "~>"
|
185
199
|
- !ruby/object:Gem::Version
|
186
|
-
version: '
|
200
|
+
version: '13.0'
|
187
201
|
- !ruby/object:Gem::Dependency
|
188
202
|
name: rspec
|
189
203
|
requirement: !ruby/object:Gem::Requirement
|
@@ -198,6 +212,76 @@ dependencies:
|
|
198
212
|
- - "~>"
|
199
213
|
- !ruby/object:Gem::Version
|
200
214
|
version: '3.0'
|
215
|
+
- !ruby/object:Gem::Dependency
|
216
|
+
name: rubocop
|
217
|
+
requirement: !ruby/object:Gem::Requirement
|
218
|
+
requirements:
|
219
|
+
- - "~>"
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: 0.93.1
|
222
|
+
type: :development
|
223
|
+
prerelease: false
|
224
|
+
version_requirements: !ruby/object:Gem::Requirement
|
225
|
+
requirements:
|
226
|
+
- - "~>"
|
227
|
+
- !ruby/object:Gem::Version
|
228
|
+
version: 0.93.1
|
229
|
+
- !ruby/object:Gem::Dependency
|
230
|
+
name: rubocop-i18n
|
231
|
+
requirement: !ruby/object:Gem::Requirement
|
232
|
+
requirements:
|
233
|
+
- - "~>"
|
234
|
+
- !ruby/object:Gem::Version
|
235
|
+
version: 2.0.2
|
236
|
+
type: :development
|
237
|
+
prerelease: false
|
238
|
+
version_requirements: !ruby/object:Gem::Requirement
|
239
|
+
requirements:
|
240
|
+
- - "~>"
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: 2.0.2
|
243
|
+
- !ruby/object:Gem::Dependency
|
244
|
+
name: rubocop-performance
|
245
|
+
requirement: !ruby/object:Gem::Requirement
|
246
|
+
requirements:
|
247
|
+
- - "~>"
|
248
|
+
- !ruby/object:Gem::Version
|
249
|
+
version: 1.8.0
|
250
|
+
type: :development
|
251
|
+
prerelease: false
|
252
|
+
version_requirements: !ruby/object:Gem::Requirement
|
253
|
+
requirements:
|
254
|
+
- - "~>"
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
version: 1.8.0
|
257
|
+
- !ruby/object:Gem::Dependency
|
258
|
+
name: rubocop-rspec
|
259
|
+
requirement: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - "~>"
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: 1.44.1
|
264
|
+
type: :development
|
265
|
+
prerelease: false
|
266
|
+
version_requirements: !ruby/object:Gem::Requirement
|
267
|
+
requirements:
|
268
|
+
- - "~>"
|
269
|
+
- !ruby/object:Gem::Version
|
270
|
+
version: 1.44.1
|
271
|
+
- !ruby/object:Gem::Dependency
|
272
|
+
name: webmock
|
273
|
+
requirement: !ruby/object:Gem::Requirement
|
274
|
+
requirements:
|
275
|
+
- - "~>"
|
276
|
+
- !ruby/object:Gem::Version
|
277
|
+
version: '3.9'
|
278
|
+
type: :development
|
279
|
+
prerelease: false
|
280
|
+
version_requirements: !ruby/object:Gem::Requirement
|
281
|
+
requirements:
|
282
|
+
- - "~>"
|
283
|
+
- !ruby/object:Gem::Version
|
284
|
+
version: '3.9'
|
201
285
|
description:
|
202
286
|
email:
|
203
287
|
- matijs@matijs.net
|
@@ -206,17 +290,20 @@ executables:
|
|
206
290
|
extensions: []
|
207
291
|
extra_rdoc_files: []
|
208
292
|
files:
|
293
|
+
- ".github/dependabot.yml"
|
209
294
|
- ".gitignore"
|
295
|
+
- ".hound.yml"
|
210
296
|
- ".reek"
|
211
297
|
- ".rubocop.yml"
|
212
298
|
- ".rubocop_todo.yml"
|
213
299
|
- ".simplecov"
|
300
|
+
- ".travis.yml"
|
214
301
|
- ".yardopts"
|
215
302
|
- CHANGELOG.md
|
216
303
|
- COPYING
|
217
304
|
- ChangeLog.0
|
218
305
|
- Gemfile
|
219
|
-
- INSTALL.
|
306
|
+
- INSTALL.md
|
220
307
|
- PACKAGING
|
221
308
|
- README.md
|
222
309
|
- RELEASE_CHECKLIST
|
@@ -232,7 +319,7 @@ files:
|
|
232
319
|
- doc/NEWS
|
233
320
|
- doc/alexandria.1
|
234
321
|
- doc/cuecat_support.rdoc
|
235
|
-
-
|
322
|
+
- doc/dependency_decisions.yml
|
236
323
|
- lib/alexandria.rb
|
237
324
|
- lib/alexandria/about.rb
|
238
325
|
- lib/alexandria/book_providers.rb
|
@@ -240,67 +327,75 @@ files:
|
|
240
327
|
- lib/alexandria/book_providers/amazon_aws.rb
|
241
328
|
- lib/alexandria/book_providers/amazon_ecs_util.rb
|
242
329
|
- lib/alexandria/book_providers/barnes_and_noble.rb
|
243
|
-
- lib/alexandria/book_providers/bol_it.rb
|
244
|
-
- lib/alexandria/book_providers/deastore.rb
|
245
330
|
- lib/alexandria/book_providers/douban.rb
|
246
|
-
- lib/alexandria/book_providers/ibs_it.rb
|
247
|
-
- lib/alexandria/book_providers/mcu.rb
|
248
331
|
- lib/alexandria/book_providers/proxis.rb
|
249
332
|
- lib/alexandria/book_providers/pseudomarc.rb
|
250
|
-
- lib/alexandria/book_providers/renaud.rb
|
251
333
|
- lib/alexandria/book_providers/siciliano.rb
|
252
334
|
- lib/alexandria/book_providers/thalia.rb
|
253
335
|
- lib/alexandria/book_providers/web.rb
|
254
|
-
- lib/alexandria/book_providers/webster_it.rb
|
255
336
|
- lib/alexandria/book_providers/worldcat.rb
|
256
337
|
- lib/alexandria/book_providers/z3950.rb
|
257
338
|
- lib/alexandria/config.rb
|
258
339
|
- lib/alexandria/console.rb
|
259
340
|
- lib/alexandria/default_preferences.rb
|
260
341
|
- lib/alexandria/execution_queue.rb
|
342
|
+
- lib/alexandria/export_format.rb
|
261
343
|
- lib/alexandria/export_library.rb
|
262
344
|
- lib/alexandria/import_library.rb
|
263
345
|
- lib/alexandria/import_library_csv.rb
|
346
|
+
- lib/alexandria/library_collection.rb
|
347
|
+
- lib/alexandria/library_sort_order.rb
|
348
|
+
- lib/alexandria/library_store.rb
|
264
349
|
- lib/alexandria/logging.rb
|
265
350
|
- lib/alexandria/models/book.rb
|
266
351
|
- lib/alexandria/models/library.rb
|
267
352
|
- lib/alexandria/net.rb
|
268
353
|
- lib/alexandria/preferences.rb
|
269
354
|
- lib/alexandria/scanners.rb
|
270
|
-
- lib/alexandria/scanners/
|
355
|
+
- lib/alexandria/scanners/cue_cat.rb
|
271
356
|
- lib/alexandria/scanners/keyboard.rb
|
272
357
|
- lib/alexandria/smart_library.rb
|
273
358
|
- lib/alexandria/ui.rb
|
359
|
+
- lib/alexandria/ui/about_dialog.rb
|
360
|
+
- lib/alexandria/ui/acquire_dialog.rb
|
361
|
+
- lib/alexandria/ui/alert_dialog.rb
|
362
|
+
- lib/alexandria/ui/bad_isbns_dialog.rb
|
363
|
+
- lib/alexandria/ui/barcode_animation.rb
|
364
|
+
- lib/alexandria/ui/book_properties_dialog.rb
|
365
|
+
- lib/alexandria/ui/book_properties_dialog_base.rb
|
274
366
|
- lib/alexandria/ui/builder_base.rb
|
275
367
|
- lib/alexandria/ui/callbacks.rb
|
276
368
|
- lib/alexandria/ui/columns.rb
|
277
369
|
- lib/alexandria/ui/completion_models.rb
|
278
|
-
- lib/alexandria/ui/
|
279
|
-
- lib/alexandria/ui/
|
280
|
-
- lib/alexandria/ui/dialogs/alert_dialog.rb
|
281
|
-
- lib/alexandria/ui/dialogs/bad_isbns_dialog.rb
|
282
|
-
- lib/alexandria/ui/dialogs/barcode_animation.rb
|
283
|
-
- lib/alexandria/ui/dialogs/book_properties_dialog.rb
|
284
|
-
- lib/alexandria/ui/dialogs/book_properties_dialog_base.rb
|
285
|
-
- lib/alexandria/ui/dialogs/export_dialog.rb
|
286
|
-
- lib/alexandria/ui/dialogs/import_dialog.rb
|
287
|
-
- lib/alexandria/ui/dialogs/misc_dialogs.rb
|
288
|
-
- lib/alexandria/ui/dialogs/new_book_dialog.rb
|
289
|
-
- lib/alexandria/ui/dialogs/new_book_dialog_manual.rb
|
290
|
-
- lib/alexandria/ui/dialogs/new_smart_library_dialog.rb
|
291
|
-
- lib/alexandria/ui/dialogs/preferences_dialog.rb
|
292
|
-
- lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb
|
293
|
-
- lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb
|
370
|
+
- lib/alexandria/ui/confirm_erase_dialog.rb
|
371
|
+
- lib/alexandria/ui/conflict_while_copying_dialog.rb
|
294
372
|
- lib/alexandria/ui/dndable.rb
|
373
|
+
- lib/alexandria/ui/error_dialog.rb
|
374
|
+
- lib/alexandria/ui/export_dialog.rb
|
295
375
|
- lib/alexandria/ui/icons.rb
|
296
376
|
- lib/alexandria/ui/iconview.rb
|
297
377
|
- lib/alexandria/ui/iconview_tooltips.rb
|
378
|
+
- lib/alexandria/ui/import_dialog.rb
|
298
379
|
- lib/alexandria/ui/init.rb
|
380
|
+
- lib/alexandria/ui/keep_bad_isbn_dialog.rb
|
299
381
|
- lib/alexandria/ui/libraries_combo.rb
|
300
382
|
- lib/alexandria/ui/listview.rb
|
301
383
|
- lib/alexandria/ui/main_app.rb
|
384
|
+
- lib/alexandria/ui/misc_dialogs.rb
|
302
385
|
- lib/alexandria/ui/multi_drag_treeview.rb
|
303
|
-
- lib/alexandria/ui/
|
386
|
+
- lib/alexandria/ui/new_book_dialog.rb
|
387
|
+
- lib/alexandria/ui/new_book_dialog_manual.rb
|
388
|
+
- lib/alexandria/ui/new_provider_dialog.rb
|
389
|
+
- lib/alexandria/ui/new_smart_library_dialog.rb
|
390
|
+
- lib/alexandria/ui/preferences_dialog.rb
|
391
|
+
- lib/alexandria/ui/provider_preferences_base_dialog.rb
|
392
|
+
- lib/alexandria/ui/provider_preferences_dialog.rb
|
393
|
+
- lib/alexandria/ui/really_delete_dialog.rb
|
394
|
+
- lib/alexandria/ui/sidepane_manager.rb
|
395
|
+
- lib/alexandria/ui/skip_entry_dialog.rb
|
396
|
+
- lib/alexandria/ui/smart_library_properties_dialog.rb
|
397
|
+
- lib/alexandria/ui/smart_library_properties_dialog_base.rb
|
398
|
+
- lib/alexandria/ui/smart_library_rule_box.rb
|
304
399
|
- lib/alexandria/ui/sound.rb
|
305
400
|
- lib/alexandria/ui/ui_manager.rb
|
306
401
|
- lib/alexandria/undo_manager.rb
|
@@ -459,20 +554,42 @@ files:
|
|
459
554
|
- share/sounds/alexandria/good_scan.wav
|
460
555
|
- share/sounds/alexandria/scanning.ogg
|
461
556
|
- share/sounds/alexandria/scanning.wav
|
557
|
+
- spec/alexandria/book_providers/world_cat_provider_spec.rb
|
462
558
|
- spec/alexandria/book_providers_spec.rb
|
463
559
|
- spec/alexandria/book_spec.rb
|
560
|
+
- spec/alexandria/console_spec.rb
|
561
|
+
- spec/alexandria/export_library_spec.rb
|
464
562
|
- spec/alexandria/library_spec.rb
|
563
|
+
- spec/alexandria/library_store_spec.rb
|
465
564
|
- spec/alexandria/preferences_spec.rb
|
466
|
-
- spec/alexandria/scanners/
|
565
|
+
- spec/alexandria/scanners/cue_cat_spec.rb
|
467
566
|
- spec/alexandria/smart_library_spec.rb
|
468
|
-
- spec/alexandria/ui/
|
567
|
+
- spec/alexandria/ui/about_dialog_spec.rb
|
568
|
+
- spec/alexandria/ui/acquire_dialog_spec.rb
|
569
|
+
- spec/alexandria/ui/alert_dialog_spec.rb
|
570
|
+
- spec/alexandria/ui/bad_isbns_dialog_spec.rb
|
571
|
+
- spec/alexandria/ui/book_properties_dialog_spec.rb
|
572
|
+
- spec/alexandria/ui/confirm_erase_dialog_spec.rb
|
573
|
+
- spec/alexandria/ui/conflict_while_copying_dialog_spec.rb
|
574
|
+
- spec/alexandria/ui/error_dialog_spec.rb
|
575
|
+
- spec/alexandria/ui/export_dialog_spec.rb
|
576
|
+
- spec/alexandria/ui/icons_spec.rb
|
469
577
|
- spec/alexandria/ui/iconview_spec.rb
|
578
|
+
- spec/alexandria/ui/import_dialog_spec.rb
|
579
|
+
- spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb
|
470
580
|
- spec/alexandria/ui/main_app_spec.rb
|
471
|
-
- spec/alexandria/ui/
|
581
|
+
- spec/alexandria/ui/new_book_dialog_manual_spec.rb
|
582
|
+
- spec/alexandria/ui/new_book_dialog_spec.rb
|
583
|
+
- spec/alexandria/ui/new_provider_dialog_spec.rb
|
584
|
+
- spec/alexandria/ui/new_smart_library_dialog_spec.rb
|
585
|
+
- spec/alexandria/ui/preferences_dialog_spec.rb
|
586
|
+
- spec/alexandria/ui/provider_preferences_dialog_spec.rb
|
587
|
+
- spec/alexandria/ui/really_delete_dialog_spec.rb
|
588
|
+
- spec/alexandria/ui/sidepane_manager_spec.rb
|
589
|
+
- spec/alexandria/ui/skip_entry_dialog_spec.rb
|
590
|
+
- spec/alexandria/ui/smart_library_properties_dialog_spec.rb
|
472
591
|
- spec/alexandria/ui/sound_spec.rb
|
473
592
|
- spec/alexandria/ui/ui_manager_spec.rb
|
474
|
-
- spec/alexandria/ui/ui_utilities_spec.rb
|
475
|
-
- spec/alexandria/utilities_spec.rb
|
476
593
|
- spec/data/isbns.txt
|
477
594
|
- spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml
|
478
595
|
- spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml
|
@@ -490,8 +607,8 @@ files:
|
|
490
607
|
- spec/data/libraries/0.6.2/My Library/9780575079038.yaml
|
491
608
|
- spec/data/libraries/0.6.2/My Library/9780755322800.cover
|
492
609
|
- spec/data/libraries/0.6.2/My Library/9780755322800.yaml
|
610
|
+
- spec/end_to_end/basic_run_spec.rb
|
493
611
|
- spec/spec_helper.rb
|
494
|
-
- tasks/dogtail.rake
|
495
612
|
- tasks/setup.rb
|
496
613
|
- tasks/spec.rake
|
497
614
|
- util/rake/fileinstall.rb
|
@@ -511,15 +628,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
511
628
|
requirements:
|
512
629
|
- - ">="
|
513
630
|
- !ruby/object:Gem::Version
|
514
|
-
version:
|
631
|
+
version: 2.5.0
|
515
632
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
516
633
|
requirements:
|
517
634
|
- - ">="
|
518
635
|
- !ruby/object:Gem::Version
|
519
636
|
version: '0'
|
520
637
|
requirements: []
|
521
|
-
|
522
|
-
rubygems_version: 2.6.8
|
638
|
+
rubygems_version: 3.1.2
|
523
639
|
signing_key:
|
524
640
|
specification_version: 4
|
525
641
|
summary: GNOME application for managing collections of books
|