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.
Files changed (210) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +9 -0
  3. data/.gitignore +5 -2
  4. data/.hound.yml +2 -0
  5. data/.rubocop.yml +113 -45
  6. data/.rubocop_todo.yml +82 -170
  7. data/.simplecov +5 -1
  8. data/.travis.yml +45 -0
  9. data/.yardopts +1 -1
  10. data/CHANGELOG.md +60 -0
  11. data/ChangeLog.0 +33 -35
  12. data/Gemfile +6 -5
  13. data/INSTALL.md +164 -0
  14. data/README.md +52 -42
  15. data/Rakefile +95 -109
  16. data/TODO.md +9 -1
  17. data/alexandria-book-collection-manager.gemspec +52 -45
  18. data/bin/alexandria +31 -53
  19. data/doc/AUTHORS +61 -0
  20. data/doc/BUGS +31 -0
  21. data/doc/FAQ +365 -0
  22. data/doc/HACKING +19 -0
  23. data/doc/NEWS +341 -0
  24. data/doc/alexandria.1 +120 -0
  25. data/doc/cuecat_support.rdoc +67 -0
  26. data/doc/dependency_decisions.yml +80 -0
  27. data/lib/alexandria.rb +29 -37
  28. data/lib/alexandria/about.rb +52 -51
  29. data/lib/alexandria/book_providers.rb +94 -101
  30. data/lib/alexandria/book_providers/adlibris.rb +45 -85
  31. data/lib/alexandria/book_providers/amazon_aws.rb +105 -113
  32. data/lib/alexandria/book_providers/amazon_ecs_util.rb +293 -324
  33. data/lib/alexandria/book_providers/barnes_and_noble.rb +54 -53
  34. data/lib/alexandria/book_providers/douban.rb +29 -51
  35. data/lib/alexandria/book_providers/proxis.rb +42 -59
  36. data/lib/alexandria/book_providers/pseudomarc.rb +79 -99
  37. data/lib/alexandria/book_providers/siciliano.rb +68 -70
  38. data/lib/alexandria/book_providers/thalia.rb +46 -45
  39. data/lib/alexandria/book_providers/web.rb +17 -33
  40. data/lib/alexandria/book_providers/worldcat.rb +74 -102
  41. data/lib/alexandria/book_providers/z3950.rb +170 -174
  42. data/lib/alexandria/config.rb +5 -3
  43. data/lib/alexandria/console.rb +10 -21
  44. data/lib/alexandria/default_preferences.rb +37 -0
  45. data/lib/alexandria/execution_queue.rb +17 -15
  46. data/lib/alexandria/export_format.rb +47 -0
  47. data/lib/alexandria/export_library.rb +188 -302
  48. data/lib/alexandria/import_library.rb +114 -155
  49. data/lib/alexandria/import_library_csv.rb +46 -96
  50. data/lib/alexandria/library_collection.rb +79 -0
  51. data/lib/alexandria/library_sort_order.rb +45 -0
  52. data/lib/alexandria/library_store.rb +233 -0
  53. data/lib/alexandria/logging.rb +15 -19
  54. data/lib/alexandria/models/book.rb +15 -20
  55. data/lib/alexandria/models/library.rb +81 -363
  56. data/lib/alexandria/net.rb +7 -6
  57. data/lib/alexandria/preferences.rb +73 -91
  58. data/lib/alexandria/scanners.rb +4 -2
  59. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +24 -20
  60. data/lib/alexandria/scanners/keyboard.rb +10 -8
  61. data/lib/alexandria/smart_library.rb +135 -171
  62. data/lib/alexandria/ui.rb +17 -15
  63. data/lib/alexandria/ui/about_dialog.rb +49 -0
  64. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +129 -152
  65. data/lib/alexandria/ui/alert_dialog.rb +64 -0
  66. data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
  67. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +18 -15
  68. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +44 -61
  69. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +84 -89
  70. data/lib/alexandria/ui/builder_base.rb +9 -27
  71. data/lib/alexandria/ui/callbacks.rb +188 -186
  72. data/lib/alexandria/ui/columns.rb +2 -0
  73. data/lib/alexandria/ui/completion_models.rb +12 -23
  74. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  75. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  76. data/lib/alexandria/ui/dndable.rb +10 -8
  77. data/lib/alexandria/ui/error_dialog.rb +25 -0
  78. data/lib/alexandria/ui/export_dialog.rb +139 -0
  79. data/lib/alexandria/ui/icons.rb +49 -65
  80. data/lib/alexandria/ui/iconview.rb +15 -13
  81. data/lib/alexandria/ui/iconview_tooltips.rb +43 -58
  82. data/lib/alexandria/ui/import_dialog.rb +157 -0
  83. data/lib/alexandria/ui/init.rb +23 -33
  84. data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
  85. data/lib/alexandria/ui/libraries_combo.rb +18 -14
  86. data/lib/alexandria/ui/listview.rb +77 -88
  87. data/lib/alexandria/ui/main_app.rb +26 -26
  88. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  89. data/lib/alexandria/ui/multi_drag_treeview.rb +30 -41
  90. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +168 -215
  91. data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
  92. data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
  93. data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
  94. data/lib/alexandria/ui/preferences_dialog.rb +313 -0
  95. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
  96. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  97. data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
  98. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +62 -72
  99. data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
  100. data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
  101. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +96 -172
  102. data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
  103. data/lib/alexandria/ui/sound.rb +13 -13
  104. data/lib/alexandria/ui/ui_manager.rb +262 -283
  105. data/lib/alexandria/undo_manager.rb +3 -0
  106. data/lib/alexandria/version.rb +6 -19
  107. data/lib/alexandria/web_themes.rb +24 -21
  108. data/po/Makefile +2 -2
  109. data/po/cs.po +993 -880
  110. data/po/cy.po +957 -874
  111. data/po/de.po +990 -869
  112. data/po/el.po +989 -869
  113. data/po/es.po +985 -865
  114. data/po/fr.po +986 -870
  115. data/po/ga.po +907 -823
  116. data/po/gl.po +981 -865
  117. data/po/it.po +986 -868
  118. data/po/ja.po +969 -853
  119. data/po/mk.po +983 -863
  120. data/po/nb.po +979 -863
  121. data/po/nl.po +983 -864
  122. data/po/pl.po +1020 -969
  123. data/po/pt.po +988 -861
  124. data/po/pt_BR.po +984 -868
  125. data/po/ru.po +992 -873
  126. data/po/sk.po +987 -869
  127. data/po/sv.po +977 -861
  128. data/po/uk.po +975 -865
  129. data/po/zh_TW.po +976 -860
  130. data/schemas/alexandria.schemas +25 -3
  131. data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
  132. data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
  133. data/share/alexandria/glade/main_app__builder.glade +24 -33
  134. data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
  135. data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
  136. data/share/gnome/help/alexandria/C/introduction.xml +0 -8
  137. data/share/gnome/help/alexandria/C/searching.xml +1 -1
  138. data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
  139. data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
  140. data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
  141. data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
  142. data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
  143. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
  144. data/spec/alexandria/book_providers_spec.rb +77 -210
  145. data/spec/alexandria/book_spec.rb +16 -12
  146. data/spec/alexandria/console_spec.rb +27 -0
  147. data/spec/alexandria/export_library_spec.rb +130 -0
  148. data/spec/alexandria/library_spec.rb +130 -172
  149. data/spec/alexandria/library_store_spec.rb +37 -0
  150. data/spec/alexandria/preferences_spec.rb +46 -17
  151. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  152. data/spec/alexandria/smart_library_spec.rb +32 -25
  153. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  154. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  155. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  156. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  157. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  158. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  159. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  160. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  161. data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
  162. data/spec/alexandria/ui/icons_spec.rb +26 -0
  163. data/spec/alexandria/ui/iconview_spec.rb +9 -21
  164. data/spec/alexandria/ui/import_dialog_spec.rb +41 -0
  165. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  166. data/spec/alexandria/ui/main_app_spec.rb +8 -33
  167. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  168. data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
  169. data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
  170. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
  171. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  172. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
  173. data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
  174. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  175. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  176. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +32 -0
  177. data/spec/alexandria/ui/sound_spec.rb +4 -2
  178. data/spec/alexandria/ui/ui_manager_spec.rb +45 -20
  179. data/spec/end_to_end/basic_run_spec.rb +57 -0
  180. data/spec/spec_helper.rb +66 -33
  181. data/tasks/setup.rb +5 -3
  182. data/tasks/spec.rake +18 -3
  183. data/util/rake/fileinstall.rb +38 -40
  184. data/util/rake/gettextgenerate.rb +15 -70
  185. data/util/rake/omfgenerate.rb +10 -10
  186. metadata +176 -60
  187. data/INSTALL.rdoc +0 -148
  188. data/dogtail/basic_run_test.py +0 -9
  189. data/lib/alexandria/book_providers/bol_it.rb +0 -160
  190. data/lib/alexandria/book_providers/deastore.rb +0 -273
  191. data/lib/alexandria/book_providers/ibs_it.rb +0 -147
  192. data/lib/alexandria/book_providers/mcu.rb +0 -169
  193. data/lib/alexandria/book_providers/renaud.rb +0 -140
  194. data/lib/alexandria/book_providers/webster_it.rb +0 -167
  195. data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -59
  196. data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -70
  197. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -43
  198. data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
  199. data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
  200. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -85
  201. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
  202. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
  203. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -578
  204. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -57
  205. data/spec/alexandria/scanners/cuecat_spec.rb +0 -65
  206. data/spec/alexandria/ui/dialogs_spec.rb +0 -94
  207. data/spec/alexandria/ui/sidepane_spec.rb +0 -27
  208. data/spec/alexandria/ui/ui_utilities_spec.rb +0 -60
  209. data/spec/alexandria/utilities_spec.rb +0 -50
  210. data/tasks/dogtail.rake +0 -4
@@ -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 'fileutils'
28
- require 'pathname'
29
- require 'rake/tasklib'
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 'Generate Open Metadata Framework files'
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/, '.omf') }
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 '.omf' => ['.omf.in'] do |t|
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, 'w') { |io| io.puts data }
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.1
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: 2016-12-13 00:00:00.000000000 Z
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: hpricot
48
+ name: gstreamer
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: 0.8.5
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: 0.8.5
60
+ version: 3.4.3
61
61
  - !ruby/object:Gem::Dependency
62
- name: htmlentities
62
+ name: gtk3
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '4.3'
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: '4.3'
74
+ version: 3.4.3
75
75
  - !ruby/object:Gem::Dependency
76
- name: gtk3
76
+ name: hpricot
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: 3.1.0
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: 3.1.0
88
+ version: 0.8.5
89
89
  - !ruby/object:Gem::Dependency
90
- name: gio2
90
+ name: htmlentities
91
91
  requirement: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: 3.1.0
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.1.0
102
+ version: '4.3'
103
103
  - !ruby/object:Gem::Dependency
104
- name: gstreamer
104
+ name: image_size
105
105
  requirement: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '3.0'
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: '3.0'
116
+ version: '2.0'
117
117
  - !ruby/object:Gem::Dependency
118
- name: image_size
118
+ name: marc
119
119
  requirement: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: 1.5.0
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.5.0
130
+ version: 1.0.0
131
131
  - !ruby/object:Gem::Dependency
132
- name: marc
132
+ name: psych
133
133
  requirement: !ruby/object:Gem::Requirement
134
134
  requirements:
135
135
  - - "~>"
136
136
  - !ruby/object:Gem::Version
137
- version: 1.0.0
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: 1.0.0
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: '12.0'
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: '12.0'
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.rdoc
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
- - dogtail/basic_run_test.py
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/cuecat.rb
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/dialogs/about_dialog.rb
279
- - lib/alexandria/ui/dialogs/acquire_dialog.rb
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/sidepane.rb
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/cuecat_spec.rb
565
+ - spec/alexandria/scanners/cue_cat_spec.rb
467
566
  - spec/alexandria/smart_library_spec.rb
468
- - spec/alexandria/ui/dialogs_spec.rb
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/sidepane_spec.rb
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: 1.9.3
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
- rubyforge_project:
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