enju_biblio 0.3.10 → 0.4.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (362) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -3
  3. data/app/controllers/content_types_controller.rb +1 -1
  4. data/app/controllers/items_controller.rb +2 -5
  5. data/app/controllers/manifestations_controller.rb +20 -23
  6. data/app/controllers/resource_import_results_controller.rb +2 -6
  7. data/app/helpers/enju_biblio/application_helper.rb +5 -5
  8. data/app/helpers/manifestations_helper.rb +10 -10
  9. data/app/models/agent.rb +3 -3
  10. data/app/models/agent_import_file.rb +1 -1
  11. data/app/models/agent_relationship_type.rb +8 -7
  12. data/app/models/agent_type.rb +10 -7
  13. data/app/models/carrier_type.rb +14 -11
  14. data/app/models/content_type.rb +10 -7
  15. data/app/models/create_type.rb +8 -7
  16. data/app/models/doi_record.rb +36 -0
  17. data/app/models/form_of_work.rb +11 -8
  18. data/app/models/frequency.rb +10 -7
  19. data/app/models/identifier_type.rb +1 -0
  20. data/app/models/import_request.rb +0 -2
  21. data/app/models/isbn_record.rb +51 -0
  22. data/app/models/isbn_record_and_manifestation.rb +18 -0
  23. data/app/models/issn_record.rb +49 -0
  24. data/app/models/issn_record_and_manifestation.rb +18 -0
  25. data/app/models/item.rb +2 -50
  26. data/app/models/language.rb +10 -9
  27. data/app/models/license.rb +9 -7
  28. data/app/models/manifestation.rb +252 -148
  29. data/app/models/manifestation_relationship_type.rb +9 -7
  30. data/app/models/medium_of_performance.rb +11 -8
  31. data/app/models/periodical.rb +33 -0
  32. data/app/models/periodical_and_manifestation.rb +16 -0
  33. data/app/models/picture_file.rb +2 -0
  34. data/app/models/produce_type.rb +8 -7
  35. data/app/models/realize_type.rb +8 -7
  36. data/app/models/resource_export_file.rb +8 -6
  37. data/app/models/resource_export_file_state_machine.rb +1 -1
  38. data/app/models/resource_import_file.rb +62 -153
  39. data/app/views/agent_import_results/index.txt.erb +3 -0
  40. data/app/views/agent_relationship_types/index.html.erb +1 -1
  41. data/app/views/agent_relationship_types/show.html.erb +1 -1
  42. data/app/views/agent_relationships/_form.html.erb +1 -1
  43. data/app/views/agent_types/index.html.erb +1 -1
  44. data/app/views/agent_types/show.html.erb +1 -1
  45. data/app/views/agents/_agent.html.erb +1 -1
  46. data/app/views/agents/_agent_list.html.erb +2 -2
  47. data/app/views/agents/_form.html.erb +4 -4
  48. data/app/views/agents/_index_agent.html.erb +1 -1
  49. data/app/views/agents/_index_agent_merge_list.html.erb +1 -1
  50. data/app/views/agents/_index_expression.html.erb +2 -2
  51. data/app/views/agents/_index_manifestation.html.erb +2 -2
  52. data/app/views/agents/_index_work.html.erb +2 -2
  53. data/app/views/agents/index.atom.builder +1 -1
  54. data/app/views/agents/index.rss.builder +1 -1
  55. data/app/views/agents/show.html+phone.erb +2 -2
  56. data/app/views/agents/show.html.erb +2 -2
  57. data/app/views/carrier_types/index.html.erb +2 -2
  58. data/app/views/carrier_types/show.html.erb +3 -3
  59. data/app/views/content_types/index.html.erb +1 -1
  60. data/app/views/content_types/show.html.erb +1 -1
  61. data/app/views/countries/index.html.erb +1 -1
  62. data/app/views/countries/show.html.erb +1 -1
  63. data/app/views/create_types/index.html.erb +1 -1
  64. data/app/views/create_types/show.html.erb +1 -1
  65. data/app/views/creates/_form.html.erb +1 -1
  66. data/app/views/form_of_works/index.html.erb +1 -1
  67. data/app/views/form_of_works/show.html.erb +1 -1
  68. data/app/views/frequencies/index.html.erb +1 -1
  69. data/app/views/frequencies/show.html.erb +1 -1
  70. data/app/views/identifier_types/index.html.erb +1 -1
  71. data/app/views/identifier_types/show.html.erb +1 -1
  72. data/app/views/items/_form.html.erb +13 -33
  73. data/app/views/items/index.html+phone.erb +3 -3
  74. data/app/views/items/index.html.erb +3 -3
  75. data/app/views/items/show.html+phone.erb +5 -5
  76. data/app/views/items/show.html.erb +12 -27
  77. data/app/views/languages/index.html.erb +1 -1
  78. data/app/views/languages/show.html.erb +1 -1
  79. data/app/views/layouts/agents.html.erb +2 -2
  80. data/app/views/layouts/items.html.erb +1 -1
  81. data/app/views/layouts/manifestations.html.erb +4 -4
  82. data/app/views/licenses/index.html.erb +1 -1
  83. data/app/views/licenses/show.html.erb +1 -1
  84. data/app/views/manifestation_relationship_types/index.html.erb +1 -1
  85. data/app/views/manifestation_relationship_types/show.html.erb +1 -1
  86. data/app/views/manifestation_relationships/_form.html.erb +1 -1
  87. data/app/views/manifestations/_call_number.html.erb +3 -3
  88. data/app/views/manifestations/_export_detail.html.erb +0 -1
  89. data/app/views/manifestations/_export_list.html.erb +0 -1
  90. data/app/views/manifestations/_form.html.erb +5 -28
  91. data/app/views/manifestations/_identifier_fields.html.erb +1 -1
  92. data/app/views/manifestations/_manifestation.txt.erb +1 -1
  93. data/app/views/manifestations/_show_creators.html.erb +1 -1
  94. data/app/views/manifestations/_show_detail_librarian.html.erb +5 -25
  95. data/app/views/manifestations/_show_detail_user.html.erb +5 -13
  96. data/app/views/manifestations/_show_holding.html+phone.erb +3 -3
  97. data/app/views/manifestations/_show_holding.html.erb +2 -2
  98. data/app/views/manifestations/index.atom.builder +1 -1
  99. data/app/views/manifestations/index.opds.builder +1 -1
  100. data/app/views/manifestations/index.rdf.builder +1 -1
  101. data/app/views/manifestations/index.rss.builder +1 -1
  102. data/app/views/manifestations/index.txt.erb +1 -0
  103. data/app/views/manifestations/show.txt.erb +1 -0
  104. data/app/views/medium_of_performances/index.html.erb +1 -1
  105. data/app/views/medium_of_performances/show.html.erb +1 -1
  106. data/app/views/notifier/manifestation_info.en.text.erb +1 -1
  107. data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
  108. data/app/views/picture_files/edit.html.erb +0 -4
  109. data/app/views/produce_types/index.html.erb +1 -1
  110. data/app/views/produce_types/show.html.erb +1 -1
  111. data/app/views/produces/_form.html.erb +1 -1
  112. data/app/views/realize_types/index.html.erb +1 -1
  113. data/app/views/realize_types/show.html.erb +1 -1
  114. data/app/views/realizes/_form.html.erb +1 -1
  115. data/app/views/resource_import_files/_results.html.erb +0 -6
  116. data/app/views/resource_import_files/new.html.erb +2 -2
  117. data/app/views/resource_import_results/index.html.erb +11 -0
  118. data/app/views/resource_import_results/index.txt.erb +3 -0
  119. data/app/views/series_statements/_form.html.erb +8 -6
  120. data/app/views/series_statements/show.html.erb +0 -12
  121. data/config/locales/translation_en.yml +1 -28
  122. data/config/locales/translation_ja.yml +3 -30
  123. data/config/routes.rb +0 -2
  124. data/db/migrate/20081027150907_create_picture_files.rb +2 -0
  125. data/db/migrate/20160319144230_create_issn_records.rb +11 -0
  126. data/db/migrate/20160506144040_create_isbn_records.rb +11 -0
  127. data/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
  128. data/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
  129. data/db/migrate/20190102034126_create_doi_records.rb +13 -0
  130. data/db/migrate/20190311154610_create_periodicals.rb +10 -0
  131. data/db/migrate/20190312033839_create_periodical_and_manifestations.rb +11 -0
  132. data/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
  133. data/lib/enju_biblio/version.rb +1 -1
  134. data/lib/generators/enju_biblio/setup/setup_generator.rb +0 -2
  135. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_relationship_types.yml +3 -3
  136. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_types.yml +2 -4
  137. data/lib/generators/enju_biblio/setup/templates/db/fixtures/carrier_types.yml +8 -26
  138. data/lib/generators/enju_biblio/setup/templates/db/fixtures/content_types.yml +12 -24
  139. data/lib/generators/enju_biblio/setup/templates/db/fixtures/create_types.yml +4 -22
  140. data/lib/generators/enju_biblio/setup/templates/db/fixtures/form_of_works.yml +1 -1
  141. data/lib/generators/enju_biblio/setup/templates/db/fixtures/frequencies.yml +9 -18
  142. data/lib/generators/enju_biblio/setup/templates/db/fixtures/languages.yml +2 -4
  143. data/lib/generators/enju_biblio/setup/templates/db/fixtures/licenses.yml +2 -2
  144. data/lib/generators/enju_biblio/setup/templates/db/fixtures/manifestation_relationship_types.yml +2 -4
  145. data/lib/generators/enju_biblio/setup/templates/db/fixtures/medium_of_performances.yml +15 -0
  146. data/lib/generators/enju_biblio/setup/templates/db/fixtures/produce_types.yml +2 -19
  147. data/lib/generators/enju_biblio/setup/templates/db/fixtures/realize_types.yml +3 -21
  148. data/spec/cassette_library/ImportRequestsController/POST_create/When_logged_in_as_Administrator/with_isbn_which_is_already_imported/assigns_a_newly_created_import_request_as_import_request.yml +121 -0
  149. data/spec/controllers/content_types_controller_spec.rb +1 -1
  150. data/spec/controllers/items_controller_spec.rb +1 -23
  151. data/spec/controllers/manifestations_controller_spec.rb +0 -49
  152. data/spec/dummy/app/helpers/application_helper.rb +1 -1
  153. data/spec/dummy/app/models/user.rb +4 -0
  154. data/spec/dummy/bin/bundle +1 -1
  155. data/spec/dummy/bin/setup +1 -3
  156. data/spec/dummy/bin/update +4 -2
  157. data/spec/dummy/bin/yarn +3 -3
  158. data/spec/dummy/config/application.rb +1 -2
  159. data/spec/dummy/config/database.yml +70 -9
  160. data/spec/dummy/config/initializers/assets.rb +2 -2
  161. data/spec/dummy/db/development.sqlite3 +0 -0
  162. data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -0
  163. data/spec/dummy/db/migrate/113_create_events.rb +2 -4
  164. data/spec/dummy/db/migrate/154_create_messages.rb +4 -8
  165. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +3 -3
  166. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +2 -4
  167. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +2 -4
  168. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +2 -2
  169. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -0
  170. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
  171. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
  172. data/spec/dummy/db/migrate/20140523171309_create_event_import_file_transitions.rb +1 -1
  173. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +1 -1
  174. data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +1 -1
  175. data/spec/dummy/db/migrate/20140812152348_create_event_export_files.rb +1 -1
  176. data/spec/dummy/db/migrate/20140812153137_create_event_export_file_transitions.rb +1 -1
  177. data/spec/dummy/db/migrate/20140814070854_add_default_event_category_id_to_event_import_file.rb +1 -1
  178. data/spec/dummy/db/migrate/20151128142913_create_places.rb +14 -0
  179. data/spec/dummy/db/migrate/20151201163718_add_place_id_to_event.rb +5 -0
  180. data/spec/dummy/db/migrate/20160703184258_add_most_recent_to_event_import_file_transitions.rb +9 -0
  181. data/spec/dummy/db/migrate/20160703184311_add_most_recent_to_event_export_file_transitions.rb +9 -0
  182. data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
  183. data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
  184. data/spec/dummy/db/migrate/20160815045420_add_most_recent_to_bookmark_stat_transitions.rb +9 -0
  185. data/spec/dummy/db/migrate/20170116150432_create_jpno_records.rb +10 -0
  186. data/spec/dummy/db/migrate/20171126072934_create_ndla_records.rb +10 -0
  187. data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
  188. data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
  189. data/spec/dummy/db/migrate/20180107164558_add_constraints_to_most_recent_for_event_import_file_transitions.rb +13 -0
  190. data/spec/dummy/db/migrate/20180107164617_add_constraints_to_most_recent_for_event_export_file_transitions.rb +13 -0
  191. data/spec/dummy/db/migrate/20180107172413_add_constraints_to_most_recent_for_bookmark_stat_transitions.rb +13 -0
  192. data/spec/dummy/db/migrate/20180709023035_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +36 -0
  193. data/spec/dummy/db/migrate/20180709023036_add_missing_unique_indices.acts_as_taggable_on_engine.rb +26 -0
  194. data/spec/dummy/db/migrate/20180709023037_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +20 -0
  195. data/spec/dummy/db/migrate/20180709023038_add_missing_taggable_index.acts_as_taggable_on_engine.rb +15 -0
  196. data/spec/dummy/db/migrate/20180709023039_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +15 -0
  197. data/spec/dummy/db/migrate/20180709023040_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb +23 -0
  198. data/spec/dummy/db/migrate/20180709161346_add_created_at_to_tag.rb +6 -0
  199. data/spec/dummy/db/migrate/20181119170645_add_foreign_key_to_events_referencing_event_categories.rb +5 -0
  200. data/spec/dummy/db/migrate/20190501043418_create_ndl_bib_id_records.rb +10 -0
  201. data/spec/dummy/db/migrate/20190508160525_create_retains.rb +10 -0
  202. data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
  203. data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
  204. data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
  205. data/spec/dummy/db/migrate/20190630153136_add_display_name_translations_to_event.rb +6 -0
  206. data/spec/dummy/db/migrate/20190706052525_add_display_name_translations_to_circulation_status.rb +5 -0
  207. data/spec/dummy/db/schema.rb +335 -221
  208. data/spec/dummy/db/test.sqlite3 +0 -0
  209. data/spec/factories/create_types.rb +8 -7
  210. data/spec/factories/produce_types.rb +8 -7
  211. data/spec/factories/realize_types.rb +8 -7
  212. data/spec/factories/series_statement.rb +3 -4
  213. data/spec/fixtures/agent_relationship_types.yml +8 -7
  214. data/spec/fixtures/agent_types.yml +11 -10
  215. data/spec/fixtures/carrier_types.yml +16 -15
  216. data/spec/fixtures/content_types.yml +20 -31
  217. data/spec/fixtures/create_types.yml +12 -15
  218. data/spec/fixtures/creates.yml +0 -2
  219. data/spec/fixtures/form_of_works.yml +11 -10
  220. data/spec/fixtures/frequencies.yml +17 -25
  221. data/spec/fixtures/items.yml +11 -12
  222. data/spec/fixtures/languages.yml +11 -11
  223. data/spec/fixtures/libraries.yml +30 -30
  224. data/spec/fixtures/library_groups.yml +11 -6
  225. data/spec/fixtures/licenses.yml +8 -7
  226. data/spec/fixtures/manifestation_relationship_types.yml +12 -11
  227. data/spec/fixtures/manifestations.yml +0 -1
  228. data/spec/fixtures/medium_of_performances.yml +10 -9
  229. data/spec/fixtures/picture_files.yml +2 -0
  230. data/spec/fixtures/produce_types.yml +10 -11
  231. data/spec/fixtures/produces.yml +0 -2
  232. data/spec/fixtures/profiles.yml +8 -5
  233. data/spec/fixtures/realize_types.yml +11 -13
  234. data/spec/fixtures/realizes.yml +0 -2
  235. data/spec/fixtures/request_status_types.yml +14 -14
  236. data/spec/fixtures/request_types.yml +13 -13
  237. data/spec/fixtures/resource_export_files.yml +1 -1
  238. data/spec/fixtures/resource_import_results.yml +2 -2
  239. data/spec/fixtures/roles.yml +22 -5
  240. data/spec/fixtures/shelves.yml +16 -16
  241. data/spec/fixtures/user_groups.yml +12 -12
  242. data/spec/fixtures/user_has_roles.yml +3 -4
  243. data/spec/fixtures/users.yml +0 -3
  244. data/spec/models/agent_relationship_type_spec.rb +8 -7
  245. data/spec/models/agent_type_spec.rb +8 -7
  246. data/spec/models/carrier_type_spec.rb +12 -11
  247. data/spec/models/content_type_spec.rb +8 -7
  248. data/spec/models/create_type_spec.rb +8 -7
  249. data/spec/models/doi_record_spec.rb +19 -0
  250. data/spec/models/form_of_work_spec.rb +8 -7
  251. data/spec/models/frequency_spec.rb +8 -7
  252. data/spec/models/item_spec.rb +0 -7
  253. data/spec/models/language_spec.rb +10 -9
  254. data/spec/models/license_spec.rb +8 -7
  255. data/spec/models/manifestation_relationship_type_spec.rb +8 -7
  256. data/spec/models/manifestation_spec.rb +16 -24
  257. data/spec/models/medium_of_performance_spec.rb +8 -7
  258. data/spec/models/periodical_and_manifestation_spec.rb +17 -0
  259. data/spec/models/periodical_spec.rb +16 -0
  260. data/spec/models/picture_file_spec.rb +2 -0
  261. data/spec/models/produce_type_spec.rb +8 -7
  262. data/spec/models/realize_type_spec.rb +8 -7
  263. data/spec/models/resource_export_file_spec.rb +9 -62
  264. data/spec/models/resource_import_file_spec.rb +14 -44
  265. data/spec/rails_helper.rb +8 -4
  266. data/spec/system/manifestations_spec.rb +0 -30
  267. data/spec/views/items/index.html.erb_spec.rb +6 -7
  268. data/spec/views/manifestations/{index.txt.ruby_spec.rb → index.txt.erb_spec.rb} +1 -1
  269. data/spec/views/manifestations/{show.txt.ruby_spec.rb → show.txt.erb_spec.rb} +2 -2
  270. data/spec/views/resource_import_results/show.html.erb_spec.rb +1 -1
  271. metadata +129 -285
  272. data/app/controllers/item_custom_properties_controller.rb +0 -69
  273. data/app/controllers/manifestation_custom_properties_controller.rb +0 -69
  274. data/app/models/item_custom_property.rb +0 -18
  275. data/app/models/item_custom_value.rb +0 -17
  276. data/app/models/manifestation_custom_property.rb +0 -18
  277. data/app/models/manifestation_custom_value.rb +0 -17
  278. data/app/policies/item_custom_property_policy.rb +0 -21
  279. data/app/policies/manifestation_custom_property_policy.rb +0 -21
  280. data/app/views/agent_import_results/index.txt.ruby +0 -5
  281. data/app/views/item_custom_properties/_form.html.erb +0 -32
  282. data/app/views/item_custom_properties/edit.html.erb +0 -13
  283. data/app/views/item_custom_properties/index.html.erb +0 -43
  284. data/app/views/item_custom_properties/new.html.erb +0 -12
  285. data/app/views/item_custom_properties/show.html.erb +0 -28
  286. data/app/views/manifestation_custom_properties/_form.html.erb +0 -32
  287. data/app/views/manifestation_custom_properties/edit.html.erb +0 -13
  288. data/app/views/manifestation_custom_properties/index.html.erb +0 -43
  289. data/app/views/manifestation_custom_properties/new.html.erb +0 -12
  290. data/app/views/manifestation_custom_properties/show.html.erb +0 -28
  291. data/app/views/manifestations/index.txt.ruby +0 -7
  292. data/app/views/manifestations/show.json.jbuilder +0 -2
  293. data/app/views/manifestations/show.txt.ruby +0 -5
  294. data/app/views/resource_import_results/index.txt.ruby +0 -5
  295. data/db/migrate/20190818075603_add_memo_to_manifestation.rb +0 -5
  296. data/db/migrate/20190818075628_add_memo_to_item.rb +0 -5
  297. data/db/migrate/20200425072340_create_manifestation_custom_properties.rb +0 -12
  298. data/db/migrate/20200425072349_create_item_custom_properties.rb +0 -12
  299. data/db/migrate/20200425074758_create_manifestation_custom_values.rb +0 -12
  300. data/db/migrate/20200425074822_create_item_custom_values.rb +0 -12
  301. data/lib/generators/enju_biblio/setup/templates/db/fixtures/agents.yml +0 -19
  302. data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_utf-8/should_import_custom_values.yml +0 -121
  303. data/spec/cassette_library/resource_import_results/index_txt_ruby/renders_a_list_of_resource_import_results.yml +0 -121
  304. data/spec/controllers/item_custom_properties_controller_spec.rb +0 -449
  305. data/spec/controllers/manifestation_custom_properties_controller_spec.rb +0 -449
  306. data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +0 -18
  307. data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +0 -17
  308. data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +0 -15
  309. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +0 -18
  310. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +0 -30
  311. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +0 -5
  312. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +0 -6
  313. data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +0 -5
  314. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +0 -14
  315. data/spec/dummy/db/migrate/20151126005552_add_provider_to_identity.rb +0 -5
  316. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -18
  317. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
  318. data/spec/factories/item_custom_property.rb +0 -6
  319. data/spec/factories/item_custom_value.rb +0 -6
  320. data/spec/factories/manifestation_custom_property.rb +0 -6
  321. data/spec/factories/manifestation_custom_value.rb +0 -6
  322. data/spec/fixtures/carrier_type_has_checkout_types.yml +0 -31
  323. data/spec/fixtures/checkout_stat_has_manifestations.yml +0 -24
  324. data/spec/fixtures/checkout_stat_has_users.yml +0 -24
  325. data/spec/fixtures/checkout_types.yml +0 -34
  326. data/spec/fixtures/circulation_statuses.yml +0 -136
  327. data/spec/fixtures/inventory_files.yml +0 -40
  328. data/spec/fixtures/item_custom_properties.yml +0 -24
  329. data/spec/fixtures/manifestation_checkout_stats.yml +0 -29
  330. data/spec/fixtures/manifestation_custom_properties.yml +0 -24
  331. data/spec/fixtures/manifestation_reserve_stats.yml +0 -29
  332. data/spec/fixtures/reserve_stat_has_manifestations.yml +0 -24
  333. data/spec/fixtures/reserve_stat_has_users.yml +0 -24
  334. data/spec/fixtures/reserve_transitions.yml +0 -104
  335. data/spec/fixtures/reserves.yml +0 -143
  336. data/spec/fixtures/use_restrictions.yml +0 -93
  337. data/spec/fixtures/user_checkout_stats.yml +0 -28
  338. data/spec/fixtures/user_group_has_checkout_types.yml +0 -111
  339. data/spec/fixtures/user_reserve_stats.yml +0 -28
  340. data/spec/models/item_custom_property_spec.rb +0 -18
  341. data/spec/models/item_custom_value_spec.rb +0 -17
  342. data/spec/models/manifestation_custom_property_spec.rb +0 -18
  343. data/spec/models/manifestation_custom_value_spec.rb +0 -17
  344. data/spec/requests/item_custom_properties_spec.rb +0 -129
  345. data/spec/requests/manifestation_custom_properties_spec.rb +0 -129
  346. data/spec/routing/item_custom_properties_routing_spec.rb +0 -38
  347. data/spec/routing/manifestation_custom_properties_routing_spec.rb +0 -38
  348. data/spec/system/items_spec.rb +0 -115
  349. data/spec/system/series_statements_spec.rb +0 -16
  350. data/spec/views/agent_import_results/index.html.erb_spec.rb +0 -29
  351. data/spec/views/agent_import_results/index.txt.ruby_spec.rb +0 -20
  352. data/spec/views/agent_import_results/show.html.erb_spec.rb +0 -24
  353. data/spec/views/item_custom_properties/edit.html.erb_spec.rb +0 -21
  354. data/spec/views/item_custom_properties/index.html.erb_spec.rb +0 -25
  355. data/spec/views/item_custom_properties/new.html.erb_spec.rb +0 -21
  356. data/spec/views/item_custom_properties/show.html.erb_spec.rb +0 -16
  357. data/spec/views/manifestation_custom_properties/edit.html.erb_spec.rb +0 -21
  358. data/spec/views/manifestation_custom_properties/index.html.erb_spec.rb +0 -25
  359. data/spec/views/manifestation_custom_properties/new.html.erb_spec.rb +0 -21
  360. data/spec/views/manifestation_custom_properties/show.html.erb_spec.rb +0 -16
  361. data/spec/views/manifestations/show.json.jbuilder_spec.rb +0 -16
  362. data/spec/views/resource_import_results/index.txt.ruby_spec.rb +0 -22
@@ -1,10 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
- require 'pathname'
3
2
  require 'fileutils'
4
3
  include FileUtils
5
4
 
6
5
  # path to your application root.
7
- APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
6
+ APP_ROOT = File.expand_path('..', __dir__)
8
7
 
9
8
  def system!(*args)
10
9
  system(*args) || abort("\n== Command #{args} failed ==")
@@ -18,6 +17,9 @@ chdir APP_ROOT do
18
17
  system! 'gem install bundler --conservative'
19
18
  system('bundle check') || system!('bundle install')
20
19
 
20
+ # Install JavaScript dependencies if using Yarn
21
+ # system('bin/yarn')
22
+
21
23
  puts "\n== Updating database =="
22
24
  system! 'bin/rails db:migrate'
23
25
 
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
- VENDOR_PATH = File.expand_path('..', __dir__)
3
- Dir.chdir(VENDOR_PATH) do
2
+ APP_ROOT = File.expand_path('..', __dir__)
3
+ Dir.chdir(APP_ROOT) do
4
4
  begin
5
- exec "yarnpkg #{ARGV.join(" ")}"
5
+ exec "yarnpkg", *ARGV
6
6
  rescue Errno::ENOENT
7
7
  $stderr.puts "Yarn executable was not detected in the system."
8
8
  $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
@@ -4,9 +4,8 @@ require 'rails/all'
4
4
 
5
5
  Bundler.require(*Rails.groups)
6
6
  require "enju_biblio"
7
- require "enju_event"
8
7
  require "enju_leaf"
9
- require "enju_message"
8
+ require "enju_manifestation_viewer"
10
9
  require "enju_ndl"
11
10
  require 'resque/server'
12
11
 
@@ -1,25 +1,86 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
1
+ # PostgreSQL. Versions 9.1 and up are supported.
3
2
  #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
3
+ # Install the pg driver:
4
+ # gem install pg
5
+ # On OS X with Homebrew:
6
+ # gem install pg -- --with-pg-config=/usr/local/bin/pg_config
7
+ # On OS X with MacPorts:
8
+ # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
9
+ # On Windows:
10
+ # gem install pg
11
+ # Choose the win32 build.
12
+ # Install PostgreSQL and put its /bin directory on your path.
13
+ #
14
+ # Configure Using Gemfile
15
+ # gem 'pg'
6
16
  #
7
17
  default: &default
8
- adapter: sqlite3
18
+ adapter: postgresql
19
+ encoding: unicode
20
+ # For details on connection pooling, see Rails configuration guide
21
+ # http://guides.rubyonrails.org/configuring.html#database-pooling
9
22
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
10
- timeout: 5000
23
+ username: postgres
11
24
 
12
25
  development:
13
26
  <<: *default
14
- database: db/development.sqlite3
27
+ database: enju_biblio_dummy_development
28
+
29
+ # The specified database role being used to connect to postgres.
30
+ # To create additional roles in postgres see `$ createuser --help`.
31
+ # When left blank, postgres will use the default role. This is
32
+ # the same name as the operating system user that initialized the database.
33
+ #username: enju_biblio_dummy
34
+
35
+ # The password associated with the postgres role (username).
36
+ #password:
37
+
38
+ # Connect on a TCP socket. Omitted by default since the client uses a
39
+ # domain socket that doesn't need configuration. Windows does not have
40
+ # domain sockets, so uncomment these lines.
41
+ #host: localhost
42
+
43
+ # The TCP port the server listens on. Defaults to 5432.
44
+ # If your server runs on a different port number, change accordingly.
45
+ #port: 5432
46
+
47
+ # Schema search path. The server defaults to $user,public
48
+ #schema_search_path: myapp,sharedapp,public
49
+
50
+ # Minimum log levels, in increasing order:
51
+ # debug5, debug4, debug3, debug2, debug1,
52
+ # log, notice, warning, error, fatal, and panic
53
+ # Defaults to warning.
54
+ #min_messages: notice
15
55
 
16
56
  # Warning: The database defined as "test" will be erased and
17
57
  # re-generated from your development database when you run "rake".
18
58
  # Do not set this db to the same as development or production.
19
59
  test:
20
60
  <<: *default
21
- database: db/test.sqlite3
61
+ database: enju_biblio_dummy_test
22
62
 
63
+ # As with config/secrets.yml, you never want to store sensitive information,
64
+ # like your database password, in your source code. If your source code is
65
+ # ever seen by anyone, they now have access to your database.
66
+ #
67
+ # Instead, provide the password as a unix environment variable when you boot
68
+ # the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database
69
+ # for a full rundown on how to provide these environment variables in a
70
+ # production deployment.
71
+ #
72
+ # On Heroku and other platform providers, you may have a full connection URL
73
+ # available as an environment variable. For example:
74
+ #
75
+ # DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase"
76
+ #
77
+ # You can use this database configuration with:
78
+ #
79
+ # production:
80
+ # url: <%= ENV['DATABASE_URL'] %>
81
+ #
23
82
  production:
24
83
  <<: *default
25
- database: db/production.sqlite3
84
+ database: enju_biblio_dummy_production
85
+ username: enju_biblio_dummy
86
+ password: <%= ENV['DUMMY_DATABASE_PASSWORD'] %>
@@ -6,10 +6,10 @@ Rails.application.config.assets.version = '1.0'
6
6
  # Add additional assets to the asset load path.
7
7
  # Rails.application.config.assets.paths << Emoji.images_path
8
8
  # Add Yarn node_modules folder to the asset load path.
9
- Rails.application.config.assets.paths << Rails.root.join('node_modules')
9
+ Rails.application.config.assets.paths << Rails.root.join('../../', 'node_modules')
10
10
 
11
11
  # Precompile additional assets.
12
12
  # application.js, application.css, and all non-JS/CSS in the app/assets
13
13
  # folder are already added.
14
14
  # Rails.application.config.assets.precompile += %w( admin.js admin.css )
15
- Rails.application.config.assets.precompile += %w( *.png icons/*.png *.gif )
15
+ Rails.application.config.assets.precompile += %w( *.png icons/*.png *.gif enju_leaf/*.css )
File without changes
@@ -33,6 +33,7 @@ class DeviseCreateUsers < ActiveRecord::Migration[4.2]
33
33
  ## Token authenticatable
34
34
  # t.string :authentication_token
35
35
 
36
+
36
37
  t.timestamps
37
38
  end
38
39
 
@@ -1,8 +1,8 @@
1
1
  class CreateEvents < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :events do |t|
4
- t.integer :library_id, null: false
5
- t.integer :event_category_id, null: false
4
+ t.references :library, index: true, null: false
5
+ t.references :event_category, index: true, null: false
6
6
  t.string :name
7
7
  t.text :note
8
8
  t.datetime :start_at
@@ -13,8 +13,6 @@ class CreateEvents < ActiveRecord::Migration[4.2]
13
13
 
14
14
  t.timestamps
15
15
  end
16
- add_index :events, :library_id
17
- add_index :events, :event_category_id
18
16
  end
19
17
 
20
18
  def self.down
@@ -2,19 +2,15 @@ class CreateMessages < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :messages, force: true do |t|
4
4
  t.datetime :read_at
5
- t.integer :receiver_id, :sender_id
5
+ t.references :sender, index: true
6
+ t.references :receiver, index: true
6
7
  t.string :subject, null: false
7
8
  t.text :body
8
- t.integer :message_request_id
9
- t.integer :parent_id
9
+ t.references :message_request, index: true
10
+ t.references :parent, index: true
10
11
 
11
12
  t.timestamps
12
13
  end
13
-
14
- add_index :messages, :sender_id
15
- add_index :messages, :receiver_id
16
- add_index :messages, :message_request_id
17
- add_index :messages, :parent_id
18
14
  end
19
15
 
20
16
  def self.down
@@ -1,9 +1,9 @@
1
1
  class CreateMessageRequests < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :message_requests do |t|
4
- t.integer :sender_id
5
- t.integer :receiver_id
6
- t.integer :message_template_id
4
+ t.references :sender
5
+ t.references :receiver
6
+ t.references :message_template
7
7
  t.datetime :sent_at
8
8
  t.datetime :deleted_at
9
9
  t.text :body
@@ -1,10 +1,10 @@
1
1
  class CreateEventImportFiles < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :event_import_files do |t|
4
- t.integer :parent_id
4
+ t.references :parent, index: true
5
5
  t.string :content_type
6
6
  t.integer :size
7
- t.integer :user_id
7
+ t.references :user, index: true
8
8
  t.text :note
9
9
  t.datetime :imported_at
10
10
  t.string :event_import_file_name
@@ -15,8 +15,6 @@ class CreateEventImportFiles < ActiveRecord::Migration[4.2]
15
15
 
16
16
  t.timestamps
17
17
  end
18
- add_index :event_import_files, :parent_id
19
- add_index :event_import_files, :user_id
20
18
  end
21
19
 
22
20
  def self.down
@@ -1,14 +1,12 @@
1
1
  class CreateParticipates < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :participates do |t|
4
- t.integer :agent_id, null: false
5
- t.integer :event_id, null: false
4
+ t.references :agent, index: true, null: false
5
+ t.references :event, index: true, null: false
6
6
  t.integer :position
7
7
 
8
8
  t.timestamps
9
9
  end
10
- add_index :participates, :event_id
11
- add_index :participates, :agent_id
12
10
  end
13
11
 
14
12
  def self.down
@@ -1,8 +1,8 @@
1
1
  class CreateEventImportResults < ActiveRecord::Migration[4.2]
2
2
  def self.up
3
3
  create_table :event_import_results do |t|
4
- t.integer :event_import_file_id
5
- t.integer :event_id
4
+ t.references :event_import_file
5
+ t.references :event
6
6
  t.text :body
7
7
 
8
8
  t.timestamps
@@ -1,5 +1,6 @@
1
1
  class AddDepthToMessage < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  add_column :messages, :depth, :integer
4
+
4
5
  end
5
6
  end
@@ -13,6 +13,6 @@ class CreateMessageTransitions < ActiveRecord::Migration[4.2]
13
13
  end
14
14
 
15
15
  add_index :message_transitions, :message_id
16
- add_index :message_transitions, %i[sort_key message_id], unique: true
16
+ add_index :message_transitions, [:sort_key, :message_id], unique: true
17
17
  end
18
18
  end
@@ -13,6 +13,6 @@ class CreateMessageRequestTransitions < ActiveRecord::Migration[4.2]
13
13
  end
14
14
 
15
15
  add_index :message_request_transitions, :message_request_id
16
- add_index :message_request_transitions, %i[sort_key message_request_id], unique: true, name: "index_message_request_transitions_on_sort_key_and_request_id"
16
+ add_index :message_request_transitions, [:sort_key, :message_request_id], unique: true, name: "index_message_request_transitions_on_sort_key_and_request_id"
17
17
  end
18
18
  end
@@ -13,6 +13,6 @@ class CreateEventImportFileTransitions < ActiveRecord::Migration[4.2]
13
13
  end
14
14
 
15
15
  add_index :event_import_file_transitions, :event_import_file_id
16
- add_index :event_import_file_transitions, %i[sort_key event_import_file_id], unique: true, name: "index_event_import_file_transitions_on_sort_key_and_file_id"
16
+ add_index :event_import_file_transitions, [:sort_key, :event_import_file_id], unique: true, name: "index_event_import_file_transitions_on_sort_key_and_file_id"
17
17
  end
18
18
  end
@@ -13,6 +13,6 @@ class CreateBookmarkStatTransitions < ActiveRecord::Migration[4.2]
13
13
  end
14
14
 
15
15
  add_index :bookmark_stat_transitions, :bookmark_stat_id
16
- add_index :bookmark_stat_transitions, %i[sort_key bookmark_stat_id], unique: true, name: "index_bookmark_stat_transitions_on_sort_key_and_stat_id"
16
+ add_index :bookmark_stat_transitions, [:sort_key, :bookmark_stat_id], unique: true, name: "index_bookmark_stat_transitions_on_sort_key_and_stat_id"
17
17
  end
18
18
  end
@@ -1,5 +1,5 @@
1
1
  class AddDefaultLibraryIdToEventImportFile < ActiveRecord::Migration[4.2]
2
2
  def change
3
- add_column :event_import_files, :default_library_id, :integer
3
+ add_reference :event_import_files, :default_library
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  class CreateEventExportFiles < ActiveRecord::Migration[4.2]
2
2
  def change
3
3
  create_table :event_export_files do |t|
4
- t.integer :user_id
4
+ t.references :user, index: true
5
5
  t.attachment :event_export
6
6
  t.datetime :executed_at
7
7
 
@@ -13,6 +13,6 @@ class CreateEventExportFileTransitions < ActiveRecord::Migration[4.2]
13
13
  end
14
14
 
15
15
  add_index :event_export_file_transitions, :event_export_file_id, name: "index_event_export_file_transitions_on_file_id"
16
- add_index :event_export_file_transitions, %i[sort_key event_export_file_id], unique: true, name: "index_event_export_file_transitions_on_sort_key_and_file_id"
16
+ add_index :event_export_file_transitions, [:sort_key, :event_export_file_id], unique: true, name: "index_event_export_file_transitions_on_sort_key_and_file_id"
17
17
  end
18
18
  end
@@ -1,5 +1,5 @@
1
1
  class AddDefaultEventCategoryIdToEventImportFile < ActiveRecord::Migration[4.2]
2
2
  def change
3
- add_column :event_import_files, :default_event_category_id, :integer
3
+ add_reference :event_import_files, :default_event_category
4
4
  end
5
5
  end
@@ -0,0 +1,14 @@
1
+ class CreatePlaces < ActiveRecord::Migration[4.2]
2
+ def change
3
+ create_table :places do |t|
4
+ t.string :term
5
+ t.text :city
6
+ t.references :country, index: true
7
+ t.float :latitude
8
+ t.float :longitude
9
+
10
+ t.timestamps null: false
11
+ end
12
+ add_index :places, :term
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ class AddPlaceIdToEvent < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_reference :events, :place, index: true
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToEventImportFileTransitions < ActiveRecord::Migration[4.2]
2
+ def up
3
+ add_column :event_import_file_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :event_import_file_transitions, :most_recent
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToEventExportFileTransitions < ActiveRecord::Migration[4.2]
2
+ def up
3
+ add_column :event_export_file_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :event_export_file_transitions, :most_recent
8
+ end
9
+ end
@@ -1,4 +1,4 @@
1
- class AddBookJacketSourceToLibraryGroup < ActiveRecord::Migration[4.2]
1
+ class AddBookJacketSourceToLibraryGroup < ActiveRecord::Migration[5.2]
2
2
  def change
3
3
  add_column :library_groups, :book_jacket_source, :string
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddScreenshotGeneratorToLibraryGroup < ActiveRecord::Migration[4.2]
1
+ class AddScreenshotGeneratorToLibraryGroup < ActiveRecord::Migration[5.2]
2
2
  def change
3
3
  add_column :library_groups, :screenshot_generator, :string
4
4
  end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToBookmarkStatTransitions < ActiveRecord::Migration[4.2]
2
+ def up
3
+ add_column :bookmark_stat_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :bookmark_stat_transitions, :most_recent
8
+ end
9
+ end
@@ -0,0 +1,10 @@
1
+ class CreateJpnoRecords < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :jpno_records do |t|
4
+ t.string :body, index: {unique: true}, null: false
5
+ t.references :manifestation, foreign_key: true, null: false
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateNdlaRecords < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :ndla_records do |t|
4
+ t.references :agent, foreign_key: true
5
+ t.string :body, null: false, index: {unique: true}
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end