enju_grid 0.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +8 -0
  4. data/Rakefile +47 -0
  5. data/app/views/layouts/manifestations.html.erb +28 -0
  6. data/app/views/manifestations/_manifestation.html.erb +6 -0
  7. data/app/views/manifestations/index.html.erb +125 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/enju_grid/engine.rb +6 -0
  10. data/lib/enju_grid/version.rb +3 -0
  11. data/lib/enju_grid.rb +5 -0
  12. data/lib/tasks/enju_grid_tasks.rake +4 -0
  13. data/spec/dummy/README.rdoc +261 -0
  14. data/spec/dummy/Rakefile +7 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +8 -0
  18. data/spec/dummy/app/helpers/application_helper.rb +8 -0
  19. data/spec/dummy/app/models/ability.rb +201 -0
  20. data/spec/dummy/app/models/user.rb +9 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/app/views/page/403.html.erb +9 -0
  23. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  24. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  25. data/spec/dummy/app/views/page/404.html.erb +9 -0
  26. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  27. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  28. data/spec/dummy/app/views/page/_footer.html.erb +4 -0
  29. data/spec/dummy/app/views/page/_header.html.erb +2 -0
  30. data/spec/dummy/app/views/page/_include.html.erb +4 -0
  31. data/spec/dummy/app/views/page/_menu.html.erb +2 -0
  32. data/spec/dummy/app/views/page/_select_locale.html.erb +2 -0
  33. data/spec/dummy/config/application.rb +64 -0
  34. data/spec/dummy/config/application.yml +42 -0
  35. data/spec/dummy/config/boot.rb +10 -0
  36. data/spec/dummy/config/database.yml +25 -0
  37. data/spec/dummy/config/environment.rb +5 -0
  38. data/spec/dummy/config/environments/development.rb +37 -0
  39. data/spec/dummy/config/environments/production.rb +67 -0
  40. data/spec/dummy/config/environments/test.rb +38 -0
  41. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/spec/dummy/config/initializers/devise.rb +207 -0
  43. data/spec/dummy/config/initializers/inflections.rb +18 -0
  44. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  45. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  46. data/spec/dummy/config/initializers/session_store.rb +8 -0
  47. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/spec/dummy/config/locales/en.yml +5 -0
  49. data/spec/dummy/config/routes.rb +60 -0
  50. data/spec/dummy/config.ru +4 -0
  51. data/spec/dummy/db/migrate/001_create_agents.rb +50 -0
  52. data/spec/dummy/db/migrate/002_devise_create_users.rb +46 -0
  53. data/spec/dummy/db/migrate/005_create_manifestations.rb +43 -0
  54. data/spec/dummy/db/migrate/006_create_items.rb +21 -0
  55. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  56. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  57. data/spec/dummy/db/migrate/029_create_subjects.rb +27 -0
  58. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  59. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  60. data/spec/dummy/db/migrate/035_create_reserves.rb +26 -0
  61. data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
  62. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  63. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  64. data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
  65. data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
  66. data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
  67. data/spec/dummy/db/migrate/077_create_user_groups.rb +12 -0
  68. data/spec/dummy/db/migrate/080_create_library_groups.rb +17 -0
  69. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  70. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  71. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  72. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  73. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  74. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  75. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  76. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  77. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  78. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  79. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  80. data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
  81. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
  82. data/spec/dummy/db/migrate/142_create_classifications.rb +19 -0
  83. data/spec/dummy/db/migrate/144_create_classification_types.rb +16 -0
  84. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +16 -0
  85. data/spec/dummy/db/migrate/146_create_subject_types.rb +16 -0
  86. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  87. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  88. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +12 -0
  89. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +17 -0
  90. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +14 -0
  91. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  92. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  93. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  94. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  95. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
  96. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
  97. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  98. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  99. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  100. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  101. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +15 -0
  102. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +13 -0
  103. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  104. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +15 -0
  105. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  106. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  107. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +15 -0
  108. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +15 -0
  109. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  110. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +23 -0
  111. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  112. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  113. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  114. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  115. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +12 -0
  116. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  117. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  118. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  119. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  120. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  121. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
  122. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +9 -0
  123. data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
  124. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  125. data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +9 -0
  126. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  127. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  128. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  129. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +12 -0
  130. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
  131. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  132. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
  133. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  134. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +11 -0
  135. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  136. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
  137. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  138. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
  139. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  140. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +11 -0
  141. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  142. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  143. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  144. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  145. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  146. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  147. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  148. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  149. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +11 -0
  150. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  151. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  152. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  153. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  154. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  155. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  156. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  157. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  158. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  159. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  160. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
  161. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  162. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  163. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  164. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  165. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +14 -0
  166. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +5 -0
  167. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  168. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  169. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  170. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  171. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  172. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  173. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  174. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  175. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  176. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  177. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  178. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  179. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  180. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  181. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
  182. data/spec/dummy/db/migrate/20130303124821_add_retained_at_to_reserve.rb +5 -0
  183. data/spec/dummy/db/migrate/20130304015019_add_postponed_at_to_reserve.rb +5 -0
  184. data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +6 -0
  185. data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
  186. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
  187. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  188. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  189. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  190. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
  191. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
  192. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
  193. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
  194. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  195. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  196. data/spec/dummy/db/migrate/20130519065638_add_lock_version_to_reserve.rb +5 -0
  197. data/spec/dummy/db/migrate/20130519065837_add_lock_version_to_checkin.rb +5 -0
  198. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
  199. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
  200. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  201. data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
  202. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +18 -0
  203. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +18 -0
  204. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +18 -0
  205. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +18 -0
  206. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +14 -0
  207. data/spec/dummy/db/migrate/20140524142813_add_taggings_count_to_tag.rb +5 -0
  208. data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
  209. data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
  210. data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
  211. data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
  212. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
  213. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  214. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +18 -0
  215. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
  216. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  217. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  218. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
  219. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +18 -0
  220. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  221. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
  222. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
  223. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  224. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  225. data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
  226. data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
  227. data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
  228. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
  229. data/spec/dummy/db/migrate/20140812093836_add_share_bookmarks_to_profile.rb +5 -0
  230. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
  231. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +14 -0
  232. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +5 -0
  233. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +5 -0
  234. data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +5 -0
  235. data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +9 -0
  236. data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
  237. data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
  238. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +5 -0
  239. data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +5 -0
  240. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +15 -0
  241. data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +5 -0
  242. data/spec/dummy/db/migrate/20150923173139_add_url_to_classification.rb +5 -0
  243. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +13 -0
  244. data/spec/dummy/db/migrate/20150925092505_add_label_to_classification.rb +5 -0
  245. data/spec/dummy/db/schema.rb +1451 -0
  246. data/spec/dummy/public/404.html +26 -0
  247. data/spec/dummy/public/422.html +26 -0
  248. data/spec/dummy/public/500.html +25 -0
  249. data/spec/dummy/public/favicon.ico +0 -0
  250. data/spec/dummy/script/rails +6 -0
  251. data/spec/factories/agent.rb +13 -0
  252. data/spec/factories/agent_relationship.rb +6 -0
  253. data/spec/factories/agent_relationship_type.rb +5 -0
  254. data/spec/factories/agent_type.rb +5 -0
  255. data/spec/factories/basket.rb +5 -0
  256. data/spec/factories/carrier_type.rb +5 -0
  257. data/spec/factories/content_type.rb +5 -0
  258. data/spec/factories/country.rb +8 -0
  259. data/spec/factories/create.rb +6 -0
  260. data/spec/factories/create_types.rb +9 -0
  261. data/spec/factories/donate.rb +6 -0
  262. data/spec/factories/exemplify.rb +6 -0
  263. data/spec/factories/extent.rb +5 -0
  264. data/spec/factories/form_of_work.rb +5 -0
  265. data/spec/factories/frequency.rb +5 -0
  266. data/spec/factories/import_request.rb +5 -0
  267. data/spec/factories/item.rb +7 -0
  268. data/spec/factories/language.rb +8 -0
  269. data/spec/factories/library.rb +13 -0
  270. data/spec/factories/license.rb +5 -0
  271. data/spec/factories/manifestation.rb +6 -0
  272. data/spec/factories/manifestation_relationship.rb +6 -0
  273. data/spec/factories/manifestation_relationship_type.rb +5 -0
  274. data/spec/factories/medium_of_performance.rb +5 -0
  275. data/spec/factories/own.rb +6 -0
  276. data/spec/factories/produce.rb +6 -0
  277. data/spec/factories/produce_types.rb +9 -0
  278. data/spec/factories/profile.rb +10 -0
  279. data/spec/factories/realize.rb +6 -0
  280. data/spec/factories/realize_types.rb +9 -0
  281. data/spec/factories/series_has_manifestation.rb +6 -0
  282. data/spec/factories/series_statement.rb +5 -0
  283. data/spec/factories/series_statement_relationship.rb +8 -0
  284. data/spec/factories/user.rb +46 -0
  285. data/spec/fixtures/agent_relationship_types.yml +34 -0
  286. data/spec/fixtures/agent_relationships.yml +25 -0
  287. data/spec/fixtures/agent_types.yml +35 -0
  288. data/spec/fixtures/agents.yml +327 -0
  289. data/spec/fixtures/baskets.yml +80 -0
  290. data/spec/fixtures/bookstores.yml +107 -0
  291. data/spec/fixtures/budget_types.yml +29 -0
  292. data/spec/fixtures/carrier_types.yml +51 -0
  293. data/spec/fixtures/content_types.yml +36 -0
  294. data/spec/fixtures/countries.yml +2059 -0
  295. data/spec/fixtures/create_types.yml +47 -0
  296. data/spec/fixtures/creates.yml +64 -0
  297. data/spec/fixtures/donates.yml +31 -0
  298. data/spec/fixtures/exemplifies.yml +160 -0
  299. data/spec/fixtures/form_of_works.yml +39 -0
  300. data/spec/fixtures/frequencies.yml +85 -0
  301. data/spec/fixtures/identifier_types.yml +36 -0
  302. data/spec/fixtures/identifiers.yml +113 -0
  303. data/spec/fixtures/import_requests.yml +24 -0
  304. data/spec/fixtures/items.yml +283 -0
  305. data/spec/fixtures/languages.yml +1901 -0
  306. data/spec/fixtures/libraries.yml +102 -0
  307. data/spec/fixtures/library_groups.yml +31 -0
  308. data/spec/fixtures/licenses.yml +29 -0
  309. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  310. data/spec/fixtures/manifestation_relationships.yml +30 -0
  311. data/spec/fixtures/manifestations.yml +1881 -0
  312. data/spec/fixtures/medium_of_performances.yml +29 -0
  313. data/spec/fixtures/owns.yml +26 -0
  314. data/spec/fixtures/picture_files.yml +63 -0
  315. data/spec/fixtures/produce_types.yml +31 -0
  316. data/spec/fixtures/produces.yml +148 -0
  317. data/spec/fixtures/profiles.yml +98 -0
  318. data/spec/fixtures/realize_types.yml +39 -0
  319. data/spec/fixtures/realizes.yml +85 -0
  320. data/spec/fixtures/request_status_types.yml +63 -0
  321. data/spec/fixtures/request_types.yml +55 -0
  322. data/spec/fixtures/reserve_transitions.yml +88 -0
  323. data/spec/fixtures/resource_import_files.yml +43 -0
  324. data/spec/fixtures/resource_import_results.yml +29 -0
  325. data/spec/fixtures/roles.yml +21 -0
  326. data/spec/fixtures/series_statements.yml +56 -0
  327. data/spec/fixtures/shelves.yml +47 -0
  328. data/spec/fixtures/user_groups.yml +51 -0
  329. data/spec/fixtures/user_has_roles.yml +41 -0
  330. data/spec/fixtures/users.yml +51 -0
  331. data/spec/spec_helper.rb +51 -0
  332. data/spec/support/controller_macros.rb +46 -0
  333. data/spec/support/devise.rb +4 -0
  334. data/spec/views/manifestations/index.html.erb_spec.rb +34 -0
  335. data/spec/views/manifestations/show.html.erb_spec.rb +18 -0
  336. data/vendor/assets/stylesheets/images/ajax-loader.gif +0 -0
  337. data/vendor/assets/stylesheets/images/icons-18-black.png +0 -0
  338. data/vendor/assets/stylesheets/images/icons-18-white.png +0 -0
  339. data/vendor/assets/stylesheets/images/icons-36-black.png +0 -0
  340. data/vendor/assets/stylesheets/images/icons-36-white.png +0 -0
  341. metadata +873 -0
@@ -0,0 +1,47 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ author:
4
+ name: author
5
+ display_name: "en: Author\r\n\
6
+ ja: 著者"
7
+ note:
8
+ position: 1
9
+ id: 1
10
+
11
+ editor:
12
+ name: editor
13
+ display_name: "en: Editor\r\n\
14
+ ja: 編者"
15
+ note:
16
+ position: 2
17
+ id: 2
18
+
19
+ translator:
20
+ name: translator
21
+ display_name: "en: Translator\r\n\
22
+ ja: 訳者"
23
+ note:
24
+ position: 3
25
+ id: 3
26
+
27
+ illustrator:
28
+ name: illustrator
29
+ display_name: "en: Illustrator\r\n\
30
+ ja: 作画者"
31
+ note:
32
+ position: 4
33
+ id: 4
34
+
35
+ # == Schema Information
36
+ #
37
+ # Table name: create_types
38
+ #
39
+ # id :integer not null, primary key
40
+ # name :string(255)
41
+ # display_name :text
42
+ # note :text
43
+ # position :integer
44
+ # created_at :datetime not null
45
+ # updated_at :datetime not null
46
+ #
47
+
@@ -0,0 +1,64 @@
1
+ ---
2
+ create_00001:
3
+ updated_at: 2007-12-13 19:56:07.002082 +09:00
4
+ agent_id: 1
5
+ id: 1
6
+ work_id: 1
7
+ position: 1
8
+ created_at: 2007-12-13 19:56:07.002082 +09:00
9
+ create_00002:
10
+ updated_at: 2007-12-13 19:56:48.538796 +09:00
11
+ agent_id: 1
12
+ id: 2
13
+ work_id: 2
14
+ position: 1
15
+ created_at: 2007-12-13 19:56:48.538796 +09:00
16
+ create_00003:
17
+ updated_at: 2007-12-13 19:56:48.538796 +09:00
18
+ agent_id: 2
19
+ id: 3
20
+ work_id: 1
21
+ position: 2
22
+ created_at: 2007-12-13 19:56:48.538796 +09:00
23
+ create_00101:
24
+ updated_at: 2010-03-03 17:00:00.538796 +09:00
25
+ agent_id: 101
26
+ id: 101
27
+ work_id: 101
28
+ position: 2
29
+ created_at: 2010-03-03 17:00:00.538796 +09:00
30
+ create_00102:
31
+ updated_at: 2010-03-16 19:00:00.538796 +09:00
32
+ agent_id: 103
33
+ id: 102
34
+ work_id: 102
35
+ position: 2
36
+ created_at: 2010-03-16 19:00:00.538796 +09:00
37
+ create_00103:
38
+ updated_at: 2010-03-16 19:00:00.538796 +09:00
39
+ agent_id: 103
40
+ id: 103
41
+ work_id: 103
42
+ position: 2
43
+ created_at: 2010-03-16 19:00:00.538796 +09:00
44
+ create_00104:
45
+ updated_at: 2010-03-16 19:00:00.538796 +09:00
46
+ agent_id: 103
47
+ id: 104
48
+ work_id: 104
49
+ position: 2
50
+ created_at: 2010-03-16 19:00:00.538796 +09:00
51
+
52
+ # == Schema Information
53
+ #
54
+ # Table name: creates
55
+ #
56
+ # id :integer not null, primary key
57
+ # agent_id :integer not null
58
+ # work_id :integer not null
59
+ # position :integer
60
+ # created_at :datetime not null
61
+ # updated_at :datetime not null
62
+ # create_type_id :integer
63
+ #
64
+
@@ -0,0 +1,31 @@
1
+ ---
2
+ donate_00001:
3
+ item_id: 5
4
+ updated_at: 2008-02-10 13:24:14.793431 +09:00
5
+ agent_id: 1
6
+ id: 1
7
+ created_at: 2008-02-10 13:24:14.793431 +09:00
8
+ donate_00002:
9
+ item_id: 6
10
+ updated_at: 2008-02-10 13:24:14.793431 +09:00
11
+ agent_id: 1
12
+ id: 2
13
+ created_at: 2008-02-10 13:24:14.793431 +09:00
14
+ donate_00003:
15
+ item_id: 7
16
+ updated_at: 2008-02-10 13:24:14.793431 +09:00
17
+ agent_id: 2
18
+ id: 3
19
+ created_at: 2008-02-10 13:24:14.793431 +09:00
20
+
21
+ # == Schema Information
22
+ #
23
+ # Table name: donates
24
+ #
25
+ # id :integer not null, primary key
26
+ # agent_id :integer not null
27
+ # item_id :integer not null
28
+ # created_at :datetime not null
29
+ # updated_at :datetime not null
30
+ #
31
+
@@ -0,0 +1,160 @@
1
+ ---
2
+ exemplify_00001:
3
+ updated_at: 2008-01-11 23:28:19.277110 +09:00
4
+ item_id: 1
5
+ manifestation_id: 1
6
+ id: 1
7
+ created_at: 2008-01-11 23:28:19.277110 +09:00
8
+ position: 1
9
+ exemplify_00002:
10
+ updated_at: 2008-01-11 23:28:57.068191 +09:00
11
+ item_id: 2
12
+ manifestation_id: 2
13
+ id: 2
14
+ created_at: 2008-01-11 23:28:57.068191 +09:00
15
+ exemplify_00003:
16
+ updated_at: 2008-01-11 23:32:03.701425 +09:00
17
+ item_id: 3
18
+ manifestation_id: 3
19
+ id: 3
20
+ created_at: 2008-01-11 23:32:03.701425 +09:00
21
+ exemplify_00004:
22
+ updated_at: 2008-01-11 02:34:20.183962 +09:00
23
+ item_id: 4
24
+ manifestation_id: 1
25
+ id: 4
26
+ created_at: 2008-01-11 02:34:20.183962 +09:00
27
+ position: 2
28
+ exemplify_00005:
29
+ updated_at: 2008-01-11 02:34:32.352223 +09:00
30
+ item_id: 5
31
+ manifestation_id: 2
32
+ id: 5
33
+ created_at: 2008-01-11 02:34:32.352223 +09:00
34
+ exemplify_00006:
35
+ updated_at: 2008-01-11 23:35:36.467584 +09:00
36
+ item_id: 6
37
+ manifestation_id: 3
38
+ id: 6
39
+ created_at: 2008-01-11 23:35:36.467584 +09:00
40
+ exemplify_00007:
41
+ updated_at: 2008-01-11 02:40:24.038276 +09:00
42
+ item_id: 7
43
+ manifestation_id: 1
44
+ id: 7
45
+ created_at: 2008-01-11 02:40:24.038276 +09:00
46
+ position: 3
47
+ exemplify_00008:
48
+ updated_at: 2008-01-11 02:40:40.316742 +09:00
49
+ item_id: 8
50
+ manifestation_id: 2
51
+ id: 8
52
+ created_at: 2008-01-11 02:40:40.316742 +09:00
53
+ exemplify_00009:
54
+ updated_at: 2008-01-11 02:40:55.664604 +09:00
55
+ item_id: 9
56
+ manifestation_id: 3
57
+ id: 9
58
+ created_at: 2008-01-11 02:40:55.664604 +09:00
59
+ exemplify_00010:
60
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
61
+ item_id: 10
62
+ manifestation_id: 1
63
+ id: 10
64
+ created_at: 2008-01-11 02:44:37.135721 +09:00
65
+ position: 4
66
+ exemplify_00011:
67
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
68
+ item_id: 11
69
+ manifestation_id: 1
70
+ id: 11
71
+ created_at: 2008-01-11 02:44:37.135721 +09:00
72
+ position: 5
73
+ exemplify_00012:
74
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
75
+ item_id: 12
76
+ manifestation_id: 2
77
+ id: 12
78
+ created_at: 2008-01-11 02:44:37.135721 +09:00
79
+ exemplify_00013:
80
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
81
+ item_id: 13
82
+ manifestation_id: 2
83
+ id: 13
84
+ created_at: 2008-01-11 02:44:37.135721 +09:00
85
+ exemplify_00014:
86
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
87
+ item_id: 14
88
+ manifestation_id: 2
89
+ id: 14
90
+ created_at: 2008-01-11 02:44:37.135721 +09:00
91
+ exemplify_00015:
92
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
93
+ item_id: 15
94
+ manifestation_id: 2
95
+ id: 15
96
+ created_at: 2008-01-11 02:44:37.135721 +09:00
97
+ exemplify_00016:
98
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
99
+ item_id: 16
100
+ manifestation_id: 3
101
+ id: 16
102
+ created_at: 2008-01-11 02:44:37.135721 +09:00
103
+ exemplify_00017:
104
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
105
+ item_id: 17
106
+ manifestation_id: 3
107
+ id: 17
108
+ created_at: 2008-01-11 02:44:37.135721 +09:00
109
+ exemplify_00018:
110
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
111
+ item_id: 18
112
+ manifestation_id: 1
113
+ id: 18
114
+ created_at: 2008-01-11 02:44:37.135721 +09:00
115
+ position: 6
116
+ exemplify_00019:
117
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
118
+ item_id: 19
119
+ manifestation_id: 1
120
+ id: 19
121
+ created_at: 2008-01-11 02:44:37.135721 +09:00
122
+ position: 7
123
+ exemplify_00020:
124
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
125
+ item_id: 20
126
+ manifestation_id: 1
127
+ id: 20
128
+ created_at: 2008-01-11 02:44:37.135721 +09:00
129
+ position: 8
130
+ exemplify_00021:
131
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
132
+ item_id: 21
133
+ manifestation_id: 11
134
+ id: 21
135
+ created_at: 2008-01-11 02:44:37.135721 +09:00
136
+ exemplify_00022:
137
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
138
+ item_id: 22
139
+ manifestation_id: 11
140
+ id: 22
141
+ created_at: 2008-01-11 02:44:37.135721 +09:00
142
+ exemplify_00023:
143
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
144
+ item_id: 23
145
+ manifestation_id: 11
146
+ id: 23
147
+ created_at: 2008-01-11 02:44:37.135721 +09:00
148
+
149
+ # == Schema Information
150
+ #
151
+ # Table name: exemplifies
152
+ #
153
+ # id :integer not null, primary key
154
+ # manifestation_id :integer not null
155
+ # item_id :integer not null
156
+ # position :integer
157
+ # created_at :datetime not null
158
+ # updated_at :datetime not null
159
+ #
160
+
@@ -0,0 +1,39 @@
1
+ ---
2
+ form_of_work_00001:
3
+ name: (not specified)
4
+ display_name: (not specified)
5
+ updated_at: 2008-01-08 15:35:55.188771 +09:00
6
+ id: 1
7
+ note: ""
8
+ created_at: 2008-01-08 15:35:55.188771 +09:00
9
+ position: 1
10
+ form_of_work_00002:
11
+ name: idea
12
+ display_name: idea
13
+ updated_at: 2008-01-08 15:35:55.188771 +09:00
14
+ id: 2
15
+ note: ""
16
+ created_at: 2008-01-08 15:35:55.188771 +09:00
17
+ position: 2
18
+ form_of_work_00003:
19
+ name: test
20
+ display_name: test
21
+ updated_at: 2008-01-08 15:35:55.188771 +09:00
22
+ id: 3
23
+ note: ""
24
+ created_at: 2008-01-08 15:35:55.188771 +09:00
25
+ position: 3
26
+
27
+ # == Schema Information
28
+ #
29
+ # Table name: form_of_works
30
+ #
31
+ # id :integer not null, primary key
32
+ # name :string(255) not null
33
+ # display_name :text
34
+ # note :text
35
+ # position :integer
36
+ # created_at :datetime not null
37
+ # updated_at :datetime not null
38
+ #
39
+
@@ -0,0 +1,85 @@
1
+ ---
2
+ frequency_00006:
3
+ name: bimonthly
4
+ display_name: !binary |
5
+ 5pes5YiK
6
+
7
+ updated_at: 2007-12-31 21:40:49.776669 +09:00
8
+ id: 6
9
+ created_at: 2007-12-31 21:40:49.776669 +09:00
10
+ position: 6
11
+ frequency_00007:
12
+ name: yearly
13
+ display_name: !binary |
14
+ 5bm05YiK
15
+
16
+ updated_at: 2007-12-31 21:41:03.004736 +09:00
17
+ id: 7
18
+ created_at: 2007-12-31 21:41:03.004736 +09:00
19
+ position: 7
20
+ frequency_00001:
21
+ name: not refularly
22
+ display_name: !binary |
23
+ 5pel5YiK
24
+
25
+ updated_at: 2007-12-31 21:39:45.737531 +09:00
26
+ id: 1
27
+ created_at: 2007-12-31 21:39:45.737531 +09:00
28
+ position: 1
29
+ frequency_00002:
30
+ name: daily
31
+ display_name: !binary |
32
+ 6YCx5YiK
33
+
34
+ updated_at: 2007-12-31 21:39:54.980787 +09:00
35
+ id: 2
36
+ created_at: 2007-12-31 21:39:54.980787 +09:00
37
+ position: 2
38
+ frequency_00003:
39
+ name: weekly
40
+ display_name: !binary |
41
+ 6ZqU6YCx5YiK
42
+
43
+ updated_at: 2007-12-31 21:40:11.112040 +09:00
44
+ id: 3
45
+ created_at: 2007-12-31 21:40:11.112040 +09:00
46
+ position: 3
47
+ frequency_00004:
48
+ name: biweekly
49
+ display_name: !binary |
50
+ 5pyI5YiK
51
+
52
+ updated_at: 2007-12-31 21:40:18.803661 +09:00
53
+ id: 4
54
+ created_at: 2007-12-31 21:40:18.803661 +09:00
55
+ position: 4
56
+ frequency_00005:
57
+ name: monthly
58
+ display_name: !binary |
59
+ 6ZqU5pyI5YiK
60
+
61
+ updated_at: 2007-12-31 21:40:31.247081 +09:00
62
+ id: 5
63
+ created_at: 2007-12-31 21:40:31.247081 +09:00
64
+ position: 5
65
+ frequency_00006:
66
+ name: other
67
+ display_name: Other
68
+ updated_at: 2007-12-31 21:40:31.247081 +09:00
69
+ id: 6
70
+ created_at: 2007-12-31 21:40:31.247081 +09:00
71
+ position: 6
72
+
73
+ # == Schema Information
74
+ #
75
+ # Table name: frequencies
76
+ #
77
+ # id :integer not null, primary key
78
+ # name :string(255) not null
79
+ # display_name :text
80
+ # note :text
81
+ # position :integer
82
+ # created_at :datetime not null
83
+ # updated_at :datetime not null
84
+ #
85
+
@@ -0,0 +1,36 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: isbn
5
+ display_name: ISBN
6
+ note:
7
+ position: 1
8
+ id: 1
9
+
10
+ two:
11
+ name: issn
12
+ display_name: ISSN
13
+ note:
14
+ position: 2
15
+ id: 2
16
+
17
+ three:
18
+ name: jpno
19
+ display_name: JPNO
20
+ note:
21
+ position: 3
22
+ id: 3
23
+
24
+ # == Schema Information
25
+ #
26
+ # Table name: identifier_types
27
+ #
28
+ # id :integer not null, primary key
29
+ # name :string(255)
30
+ # display_name :text
31
+ # note :text
32
+ # position :integer
33
+ # created_at :datetime not null
34
+ # updated_at :datetime not null
35
+ #
36
+
@@ -0,0 +1,113 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ body: 12345678
5
+ manifestation_id: 1
6
+ identifier_type_id: 1
7
+ primary: false
8
+
9
+ two:
10
+ body: 99999999
11
+ manifestation_id: 2
12
+ identifier_type_id: 2
13
+ primary: false
14
+
15
+ identifier_00001:
16
+ manifestation_id: 1
17
+ identifier_type_id: 1
18
+ body: "4798002062"
19
+
20
+ identifier_00002:
21
+ manifestation_id: 2
22
+ identifier_type_id: 1
23
+ body: "4915724824"
24
+
25
+ identifier_00003:
26
+ manifestation_id: 3
27
+ identifier_type_id: 1
28
+ body: "4897063590"
29
+
30
+ identifier_00004:
31
+ manifestation_id: 4
32
+ identifier_type_id: 1
33
+ body: 0471412791
34
+
35
+ identifier_00005:
36
+ manifestation_id: 7
37
+ identifier_type_id: 1
38
+ body: 0470844701
39
+
40
+ identifier_00006:
41
+ manifestation_id: 8
42
+ identifier_type_id: 1
43
+ body: "4798101028"
44
+
45
+ identifier_00007:
46
+ manifestation_id: 9
47
+ identifier_type_id: 1
48
+ body: "4641143331"
49
+
50
+ identifier_00008:
51
+ manifestation_id: 10
52
+ identifier_type_id: 1
53
+ body: "9784774127804"
54
+
55
+ identifier_00009:
56
+ manifestation_id: 21
57
+ identifier_type_id: 1
58
+ body: "4822281167"
59
+
60
+ identifier_00114:
61
+ manifestation_id: 114
62
+ identifier_type_id: 1
63
+ body: "9784756137470"
64
+
65
+ identifier_00116:
66
+ manifestation_id: 116
67
+ identifier_type_id: 1
68
+ body: "9784756100917"
69
+
70
+ identifier_00120:
71
+ manifestation_id: 120
72
+ identifier_type_id: 1
73
+ body: "9784274063855"
74
+
75
+ identifier_00192:
76
+ manifestation_id: 192
77
+ identifier_type_id: 1
78
+ body: "9784873113241"
79
+
80
+ identifier_00193_1:
81
+ manifestation_id: 193
82
+ identifier_type_id: 1
83
+ body: "9784797340044"
84
+
85
+ identifier_00193_2:
86
+ manifestation_id: 193
87
+ identifier_type_id: 1
88
+ body: "4797340045"
89
+
90
+ identifier_00196:
91
+ manifestation_id: 196
92
+ identifier_type_id: 1
93
+ body: "9784797336610"
94
+
95
+ identifier_00201:
96
+ manifestation_id: 201
97
+ identifier_type_id: 2
98
+ body: "09130000"
99
+
100
+ # == Schema Information
101
+ #
102
+ # Table name: identifiers
103
+ #
104
+ # id :integer not null, primary key
105
+ # body :string(255) not null
106
+ # identifier_type_id :integer not null
107
+ # manifestation_id :integer
108
+ # primary :boolean
109
+ # position :integer
110
+ # created_at :datetime not null
111
+ # updated_at :datetime not null
112
+ #
113
+
@@ -0,0 +1,24 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ isbn: '978-4774142043'
5
+ manifestation_id: 1
6
+ user_id: 1
7
+
8
+ two:
9
+ isbn: '978-4774141640'
10
+ manifestation_id: 2
11
+ user_id: 1
12
+
13
+ # == Schema Information
14
+ #
15
+ # Table name: import_requests
16
+ #
17
+ # id :integer not null, primary key
18
+ # isbn :string(255)
19
+ # manifestation_id :integer
20
+ # user_id :integer
21
+ # created_at :datetime not null
22
+ # updated_at :datetime not null
23
+ #
24
+