enju_leaf 1.3.4 → 2.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (326) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/app/assets/javascripts/enju_leaf/application.js +12 -0
  4. data/app/assets/javascripts/{autocomplete_agent.js → enju_leaf/autocomplete_agent.js} +0 -0
  5. data/app/assets/javascripts/{menu.js → enju_leaf/menu.js} +0 -0
  6. data/app/assets/javascripts/enju_leaf/mobile.js +5 -0
  7. data/app/assets/javascripts/{portlets.js → enju_leaf/portlets.js} +0 -0
  8. data/app/assets/javascripts/{select_locale.js → enju_leaf/select_locale.js} +0 -0
  9. data/app/assets/stylesheets/{enju_leaf.css → enju_leaf/application.scss} +6 -6
  10. data/app/assets/stylesheets/{enju.css → enju_leaf/enju.css} +0 -0
  11. data/app/assets/stylesheets/{enju_mobile.css → enju_leaf/enju_mobile.css} +0 -0
  12. data/app/assets/stylesheets/{enju_print.css → enju_leaf/enju_print.css} +0 -0
  13. data/app/assets/stylesheets/{mobile.css → enju_leaf/mobile.css} +1 -1
  14. data/app/assets/stylesheets/{pagination.css → enju_leaf/pagination.css} +0 -0
  15. data/app/assets/stylesheets/{portlets.css → enju_leaf/portlets.css} +0 -0
  16. data/app/assets/stylesheets/{print.css → enju_leaf/print.css} +1 -1
  17. data/app/assets/stylesheets/{scaffold_modified.css → enju_leaf/scaffold_modified.css} +0 -0
  18. data/app/views/devise/registrations/edit.html.erb +1 -1
  19. data/app/views/layouts/application.html.erb +4 -4
  20. data/app/views/page/_include.html.erb +1 -1
  21. data/app/views/page/_index.html+phone.erb +1 -1
  22. data/app/views/page/_menu.html.erb +1 -1
  23. data/app/views/page/_mobile.html+phone.erb +2 -2
  24. data/app/views/page/about.en.html.erb +4 -4
  25. data/app/views/page/about.ja.html.erb +4 -4
  26. data/app/views/page/advanced_search.html.erb +5 -5
  27. data/app/views/page/configuration.html.erb +0 -2
  28. data/app/views/page/opensearch.xml.builder +2 -2
  29. data/config/locales/en.yml +0 -4
  30. data/config/locales/ja.yml +0 -4
  31. data/lib/enju_leaf/engine.rb +1 -1
  32. data/lib/enju_leaf/version.rb +1 -1
  33. data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +5 -2
  34. data/lib/generators/enju_leaf/setup/setup_generator.rb +22 -17
  35. data/lib/generators/enju_leaf/setup/templates/Procfile +2 -2
  36. data/lib/generators/enju_leaf/setup/templates/config/schedule.rb +2 -2
  37. data/lib/generators/enju_leaf/setup/templates/db/seeds.rb +0 -4
  38. data/lib/tasks/enju_leaf_tasks.rake +2 -5
  39. data/spec/acceptance/profile.rb +9 -0
  40. data/spec/controllers/page_controller_spec.rb +1 -1
  41. data/spec/dummy/app/assets/javascripts/application.js +3 -0
  42. data/spec/dummy/app/assets/stylesheets/application.css +1 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +0 -1
  44. data/spec/dummy/bin/bundle +1 -1
  45. data/spec/dummy/bin/setup +1 -3
  46. data/spec/dummy/bin/update +4 -2
  47. data/spec/dummy/bin/yarn +3 -3
  48. data/spec/dummy/config.ru +3 -2
  49. data/spec/dummy/config/application.rb +3 -2
  50. data/spec/dummy/config/boot.rb +4 -9
  51. data/spec/dummy/config/cable.yml +10 -0
  52. data/spec/dummy/config/database.yml +70 -9
  53. data/spec/dummy/config/environments/development.rb +9 -2
  54. data/spec/dummy/config/environments/production.rb +7 -4
  55. data/spec/dummy/config/environments/test.rb +7 -1
  56. data/spec/dummy/config/initializers/assets.rb +1 -2
  57. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  58. data/spec/dummy/config/locales/en.yml +30 -2
  59. data/spec/dummy/config/puma.rb +34 -0
  60. data/spec/dummy/config/routes.rb +2 -58
  61. data/spec/dummy/config/spring.rb +6 -0
  62. data/spec/dummy/config/storage.yml +34 -0
  63. data/spec/dummy/db/development.sqlite3 +0 -0
  64. data/spec/dummy/db/migrate/005_create_manifestations.rb +3 -3
  65. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +3 -7
  66. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +3 -7
  67. data/spec/dummy/db/migrate/149_create_message_templates.rb +3 -8
  68. data/spec/dummy/db/migrate/154_create_messages.rb +6 -14
  69. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +4 -4
  70. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +6 -5
  71. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -0
  72. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
  73. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  74. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
  75. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +1 -1
  76. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
  77. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
  78. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -0
  79. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -0
  80. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +1 -0
  81. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  82. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
  83. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +1 -1
  84. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
  85. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +4 -9
  86. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +4 -9
  87. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
  88. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
  89. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
  90. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -1
  91. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
  92. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
  93. data/spec/dummy/db/migrate/20160319144230_create_issn_records.rb +11 -0
  94. data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -0
  95. data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
  96. data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
  97. data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
  98. data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +9 -0
  99. data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
  100. data/spec/dummy/db/migrate/20170114174536_add_profile_id_to_user.rb +5 -0
  101. data/spec/dummy/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
  102. data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
  103. data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
  104. data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
  105. data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
  106. data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
  107. data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
  108. data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
  109. data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
  110. data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
  111. data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
  112. data/spec/dummy/db/migrate/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
  113. data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
  114. data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
  115. data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
  116. data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
  117. data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
  118. data/spec/dummy/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
  119. data/spec/dummy/db/schema.rb +265 -135
  120. data/spec/dummy/db/test.sqlite3 +0 -0
  121. data/spec/dummy/node_modules/jquery/AUTHORS.txt +278 -0
  122. data/spec/dummy/node_modules/jquery/LICENSE.txt +36 -0
  123. data/spec/dummy/node_modules/jquery/README.md +65 -0
  124. data/spec/dummy/node_modules/jquery/bower.json +14 -0
  125. data/spec/dummy/node_modules/jquery/dist/jquery.js +9814 -0
  126. data/spec/dummy/node_modules/jquery/dist/jquery.min.js +4 -0
  127. data/spec/dummy/node_modules/jquery/dist/jquery.min.map +1 -0
  128. data/spec/dummy/node_modules/jquery/external/sizzle/LICENSE.txt +36 -0
  129. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
  130. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  131. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  132. data/spec/dummy/node_modules/jquery/package.json +84 -0
  133. data/spec/dummy/node_modules/jquery/src/ajax.js +845 -0
  134. data/spec/dummy/node_modules/jquery/src/ajax/jsonp.js +100 -0
  135. data/spec/dummy/node_modules/jquery/src/ajax/load.js +83 -0
  136. data/spec/dummy/node_modules/jquery/src/ajax/parseJSON.js +13 -0
  137. data/spec/dummy/node_modules/jquery/src/ajax/parseXML.js +27 -0
  138. data/spec/dummy/node_modules/jquery/src/ajax/script.js +68 -0
  139. data/spec/dummy/node_modules/jquery/src/ajax/var/location.js +3 -0
  140. data/spec/dummy/node_modules/jquery/src/ajax/var/nonce.js +5 -0
  141. data/spec/dummy/node_modules/jquery/src/ajax/var/rquery.js +3 -0
  142. data/spec/dummy/node_modules/jquery/src/ajax/xhr.js +167 -0
  143. data/spec/dummy/node_modules/jquery/src/attributes.js +11 -0
  144. data/spec/dummy/node_modules/jquery/src/attributes/attr.js +142 -0
  145. data/spec/dummy/node_modules/jquery/src/attributes/classes.js +177 -0
  146. data/spec/dummy/node_modules/jquery/src/attributes/prop.js +125 -0
  147. data/spec/dummy/node_modules/jquery/src/attributes/support.js +36 -0
  148. data/spec/dummy/node_modules/jquery/src/attributes/val.js +177 -0
  149. data/spec/dummy/node_modules/jquery/src/callbacks.js +232 -0
  150. data/spec/dummy/node_modules/jquery/src/core.js +494 -0
  151. data/spec/dummy/node_modules/jquery/src/core/access.js +65 -0
  152. data/spec/dummy/node_modules/jquery/src/core/init.js +134 -0
  153. data/spec/dummy/node_modules/jquery/src/core/parseHTML.js +41 -0
  154. data/spec/dummy/node_modules/jquery/src/core/ready.js +103 -0
  155. data/spec/dummy/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
  156. data/spec/dummy/node_modules/jquery/src/css.js +502 -0
  157. data/spec/dummy/node_modules/jquery/src/css/addGetHookIf.js +24 -0
  158. data/spec/dummy/node_modules/jquery/src/css/adjustCSS.js +65 -0
  159. data/spec/dummy/node_modules/jquery/src/css/curCSS.js +60 -0
  160. data/spec/dummy/node_modules/jquery/src/css/defaultDisplay.js +72 -0
  161. data/spec/dummy/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
  162. data/spec/dummy/node_modules/jquery/src/css/showHide.js +48 -0
  163. data/spec/dummy/node_modules/jquery/src/css/support.js +121 -0
  164. data/spec/dummy/node_modules/jquery/src/css/var/cssExpand.js +3 -0
  165. data/spec/dummy/node_modules/jquery/src/css/var/getStyles.js +15 -0
  166. data/spec/dummy/node_modules/jquery/src/css/var/isHidden.js +16 -0
  167. data/spec/dummy/node_modules/jquery/src/css/var/rmargin.js +3 -0
  168. data/spec/dummy/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
  169. data/spec/dummy/node_modules/jquery/src/css/var/swap.js +24 -0
  170. data/spec/dummy/node_modules/jquery/src/data.js +187 -0
  171. data/spec/dummy/node_modules/jquery/src/data/Data.js +200 -0
  172. data/spec/dummy/node_modules/jquery/src/data/var/acceptData.js +18 -0
  173. data/spec/dummy/node_modules/jquery/src/data/var/dataPriv.js +5 -0
  174. data/spec/dummy/node_modules/jquery/src/data/var/dataUser.js +5 -0
  175. data/spec/dummy/node_modules/jquery/src/deferred.js +158 -0
  176. data/spec/dummy/node_modules/jquery/src/deprecated.js +32 -0
  177. data/spec/dummy/node_modules/jquery/src/dimensions.js +54 -0
  178. data/spec/dummy/node_modules/jquery/src/effects.js +629 -0
  179. data/spec/dummy/node_modules/jquery/src/effects/Tween.js +121 -0
  180. data/spec/dummy/node_modules/jquery/src/effects/animatedSelector.js +13 -0
  181. data/spec/dummy/node_modules/jquery/src/event.js +711 -0
  182. data/spec/dummy/node_modules/jquery/src/event/ajax.js +20 -0
  183. data/spec/dummy/node_modules/jquery/src/event/alias.js +27 -0
  184. data/spec/dummy/node_modules/jquery/src/event/focusin.js +53 -0
  185. data/spec/dummy/node_modules/jquery/src/event/support.js +9 -0
  186. data/spec/dummy/node_modules/jquery/src/event/trigger.js +183 -0
  187. data/spec/dummy/node_modules/jquery/src/exports/amd.js +24 -0
  188. data/spec/dummy/node_modules/jquery/src/exports/global.js +26 -0
  189. data/spec/dummy/node_modules/jquery/src/intro.js +44 -0
  190. data/spec/dummy/node_modules/jquery/src/jquery.js +37 -0
  191. data/spec/dummy/node_modules/jquery/src/manipulation.js +481 -0
  192. data/spec/dummy/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
  193. data/spec/dummy/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
  194. data/spec/dummy/node_modules/jquery/src/manipulation/getAll.js +21 -0
  195. data/spec/dummy/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
  196. data/spec/dummy/node_modules/jquery/src/manipulation/support.js +33 -0
  197. data/spec/dummy/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
  198. data/spec/dummy/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
  199. data/spec/dummy/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
  200. data/spec/dummy/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
  201. data/spec/dummy/node_modules/jquery/src/offset.js +218 -0
  202. data/spec/dummy/node_modules/jquery/src/outro.js +2 -0
  203. data/spec/dummy/node_modules/jquery/src/queue.js +143 -0
  204. data/spec/dummy/node_modules/jquery/src/queue/delay.js +22 -0
  205. data/spec/dummy/node_modules/jquery/src/selector-native.js +211 -0
  206. data/spec/dummy/node_modules/jquery/src/selector-sizzle.js +14 -0
  207. data/spec/dummy/node_modules/jquery/src/selector.js +1 -0
  208. data/spec/dummy/node_modules/jquery/src/serialize.js +125 -0
  209. data/spec/dummy/node_modules/jquery/src/traversing.js +175 -0
  210. data/spec/dummy/node_modules/jquery/src/traversing/findFilter.js +100 -0
  211. data/spec/dummy/node_modules/jquery/src/traversing/var/dir.js +20 -0
  212. data/spec/dummy/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
  213. data/spec/dummy/node_modules/jquery/src/traversing/var/siblings.js +15 -0
  214. data/spec/dummy/node_modules/jquery/src/var/arr.js +3 -0
  215. data/spec/dummy/node_modules/jquery/src/var/class2type.js +5 -0
  216. data/spec/dummy/node_modules/jquery/src/var/concat.js +5 -0
  217. data/spec/dummy/node_modules/jquery/src/var/document.js +3 -0
  218. data/spec/dummy/node_modules/jquery/src/var/documentElement.js +5 -0
  219. data/spec/dummy/node_modules/jquery/src/var/hasOwn.js +5 -0
  220. data/spec/dummy/node_modules/jquery/src/var/indexOf.js +5 -0
  221. data/spec/dummy/node_modules/jquery/src/var/pnum.js +3 -0
  222. data/spec/dummy/node_modules/jquery/src/var/push.js +5 -0
  223. data/spec/dummy/node_modules/jquery/src/var/rcssNum.js +7 -0
  224. data/spec/dummy/node_modules/jquery/src/var/rnotwhite.js +3 -0
  225. data/spec/dummy/node_modules/jquery/src/var/slice.js +5 -0
  226. data/spec/dummy/node_modules/jquery/src/var/support.js +5 -0
  227. data/spec/dummy/node_modules/jquery/src/var/toString.js +5 -0
  228. data/spec/dummy/node_modules/jquery/src/wrap.js +79 -0
  229. data/spec/dummy/package.json +5 -0
  230. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141214-44379-1fdvvdb.txt +8 -0
  231. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141225-67268-nerc4o.txt +8 -0
  232. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20150123-14447-1lf8lc5.txt +8 -0
  233. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141214-44379-1exy9mg.txt +8 -0
  234. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58343-ztcmne.txt +8 -0
  235. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58490-hnqvxg.txt +8 -0
  236. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58609-5iyax7.txt +8 -0
  237. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58776-1e9gg8b.txt +8 -0
  238. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58951-zfxzc6.txt +8 -0
  239. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59095-l3yd2t.txt +8 -0
  240. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59220-1mgboh1.txt +8 -0
  241. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59533-1ie807t.txt +8 -0
  242. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59716-m8uy9h.txt +8 -0
  243. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59834-1fcv3ir.txt +8 -0
  244. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59932-14y6v8m.txt +8 -0
  245. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60422-ksg8ww.txt +8 -0
  246. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60507-j2u5ra.txt +8 -0
  247. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60619-2j2h65.txt +8 -0
  248. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60822-1xdqwcc.txt +8 -0
  249. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60925-4d4ce1.txt +8 -0
  250. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-61046-y4nspn.txt +8 -0
  251. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62053-1qsuqzd.txt +8 -0
  252. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62204-3quf6j.txt +8 -0
  253. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62472-w05wkf.txt +8 -0
  254. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67112-1viizrs.txt +8 -0
  255. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67232-11tcrfq.txt +8 -0
  256. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67342-1bajplt.txt +8 -0
  257. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67475-gmnmq4.txt +8 -0
  258. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74670-mxvkc6.txt +8 -0
  259. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74954-1m11avl.txt +8 -0
  260. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75054-1ac0xmz.txt +8 -0
  261. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75135-1r3z1p.txt +8 -0
  262. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75289-18xm9sx.txt +8 -0
  263. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75372-1ab1rn4.txt +8 -0
  264. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75612-14gavh8.txt +8 -0
  265. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75709-xgjjja.txt +8 -0
  266. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75832-uej6ye.txt +8 -0
  267. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75905-13kbauv.txt +8 -0
  268. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76001-13yt1kv.txt +8 -0
  269. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76158-1pitds8.txt +8 -0
  270. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76526-q0rb2j.txt +8 -0
  271. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76848-ya95k2.txt +8 -0
  272. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-88475-165899e.txt +8 -0
  273. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-89902-paupo2.txt +8 -0
  274. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90001-1eg9w1e.txt +8 -0
  275. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90157-bcu8m7.txt +8 -0
  276. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141221-7985-u6s6l1.txt +8 -0
  277. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44711-1amcibm.txt +8 -0
  278. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44828-ap6n8d.txt +8 -0
  279. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-48701-14hbzl1.txt +8 -0
  280. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-49875-1pc6esj.txt +8 -0
  281. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64608-1wo1bpq.txt +8 -0
  282. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64763-daej3l.txt +8 -0
  283. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65000-1a7srlh.txt +8 -0
  284. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65196-ggad1c.txt +8 -0
  285. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65273-tt5ev2.txt +8 -0
  286. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65424-1d17hts.txt +8 -0
  287. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65662-1gqvlj3.txt +8 -0
  288. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65725-1qpz2tm.txt +8 -0
  289. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65807-t7cfln.txt +8 -0
  290. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65962-161pm01.txt +8 -0
  291. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66069-h9ftv6.txt +8 -0
  292. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66327-hsz0j4.txt +8 -0
  293. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-67268-hqxt6v.txt +8 -0
  294. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150119-54567-1exwx4r.txt +8 -0
  295. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-80886-1whqn2s.txt +8 -0
  296. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-81115-hlvwc4.txt +8 -0
  297. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86495-navftm.txt +8 -0
  298. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86986-894a3i.txt +8 -0
  299. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150122-4492-vaml86.txt +8 -0
  300. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150123-14447-gy0ver.txt +8 -0
  301. data/spec/dummy/yarn.lock +8 -0
  302. data/spec/factories/agent.rb +1 -1
  303. data/spec/factories/library.rb +1 -1
  304. data/spec/factories/profile.rb +3 -3
  305. data/spec/factories/user.rb +25 -31
  306. data/spec/fixtures/carrier_types.yml +23 -24
  307. data/spec/fixtures/content_types.yml +78 -22
  308. data/spec/fixtures/libraries.yml +28 -31
  309. data/spec/fixtures/library_groups.yml +33 -16
  310. data/spec/fixtures/manifestations.yml +32 -27
  311. data/spec/fixtures/roles.yml +11 -12
  312. data/spec/fixtures/shelves.yml +14 -15
  313. data/spec/fixtures/user_groups.yml +9 -16
  314. data/spec/fixtures/user_has_roles.yml +2 -1
  315. data/spec/rails_helper.rb +11 -1
  316. data/spec/system/page_spec.rb +35 -0
  317. data/spec/views/page/configuration.html.erb_spec.rb +1 -1
  318. metadata +479 -93
  319. data/app/assets/javascripts/enju_leaf.js +0 -12
  320. data/app/assets/javascripts/mobile.js +0 -4
  321. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -25
  322. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
  323. data/vendor/assets/javascripts/jquery.colorbox.js +0 -1105
  324. data/vendor/assets/javascripts/jquery.powertip.js +0 -1395
  325. data/vendor/assets/stylesheets/colorbox.css +0 -70
  326. data/vendor/assets/stylesheets/jquery.powertip.css +0 -105
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
2
+ enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
3
+ librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
4
+ user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
5
+ librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
6
+ user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
7
+ user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
8
+ user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
@@ -0,0 +1,8 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ jquery@2:
6
+ version "2.2.4"
7
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02"
8
+ integrity sha1-LInWiJterFIqfuoywUUhVZxsvwI=
@@ -8,6 +8,6 @@ FactoryBot.define do
8
8
  end
9
9
 
10
10
  FactoryBot.define do
11
- factory :invalid_agent, :class => Agent do |f|
11
+ factory :invalid_agent, class: Agent do |f|
12
12
  end
13
13
  end
@@ -7,7 +7,7 @@ FactoryBot.define do
7
7
  end
8
8
 
9
9
  FactoryBot.define do
10
- factory :invalid_library, :class => Library do |f|
10
+ factory :invalid_library, class: Library do |f|
11
11
  f.library_group_id{LibraryGroup.first.id}
12
12
  end
13
13
  end
@@ -3,14 +3,14 @@ FactoryBot.define do
3
3
  f.user_group_id {UserGroup.first.id}
4
4
  f.required_role_id {Role.where(name: 'User').first.id}
5
5
  f.sequence(:user_number){|n| "user_number_#{n}"}
6
- f.library_id { 2 }
6
+ f.library_id { Library.find_by(name: 'kamata').id }
7
7
  f.locale { "ja" }
8
8
  factory :librarian_profile, class: Profile do |profile|
9
- profile.required_role_id {Role.where(name: 'Librarian').first.id}
9
+ profile.required_role_id {Role.find_by(name: 'Librarian').id}
10
10
  profile.association :user, factory: :librarian
11
11
  end
12
12
  factory :admin_profile, class: Profile do |profile|
13
- profile.required_role_id {Role.where(name: 'Administrator').first.id}
13
+ profile.required_role_id {Role.find_by(name: 'Administrator').id}
14
14
  profile.association :user, factory: :admin
15
15
  end
16
16
  end
@@ -1,43 +1,37 @@
1
1
  FactoryBot.define do
2
- factory :admin, class: User do |f|
3
- f.sequence(:username){|n| "admin_#{n}"}
4
- f.sequence(:email){|n| "admin_#{n}@example.jp"}
5
- f.password { 'adminpassword' }
6
- f.password_confirmation { 'adminpassword' }
7
- f.after(:create) do |user|
8
- user_has_role = UserHasRole.new
9
- user_has_role.assign_attributes({user_id: user.id, role_id: Role.find_by(name: 'Administrator').id})
10
- user_has_role.save
11
- user.reload
2
+ factory :admin, class: User do
3
+ sequence(:username){|n| "admin_#{n}"}
4
+ sequence(:email){|n| "admin_#{n}@example.jp"}
5
+ password { 'adminpassword' }
6
+ password_confirmation { 'adminpassword' }
7
+ association :profile
8
+ after(:create) do |user|
9
+ user.role = Role.find_by(name: 'Administrator')
12
10
  end
13
11
  end
14
12
 
15
- factory :librarian, class: User do |f|
16
- f.sequence(:username){|n| "librarian_#{n}"}
17
- f.sequence(:email){|n| "librarian_#{n}@example.jp"}
18
- f.password { 'librarianpassword' }
19
- f.password_confirmation { 'librarianpassword' }
20
- f.after(:create) do |user|
21
- user_has_role = UserHasRole.new
22
- user_has_role.assign_attributes({user_id: user.id, role_id: Role.find_by(name: 'Librarian').id})
23
- user_has_role.save
24
- user.reload
13
+ factory :librarian, class: User do
14
+ sequence(:username){|n| "librarian_#{n}"}
15
+ sequence(:email){|n| "librarian_#{n}@example.jp"}
16
+ password { 'librarianpassword' }
17
+ password_confirmation { 'librarianpassword' }
18
+ association :profile
19
+ after(:create) do |user|
20
+ user.role = Role.find_by(name: 'Librarian')
25
21
  end
26
22
  end
27
23
 
28
- factory :user, class: User do |f|
29
- f.sequence(:username){|n| "user_#{n}"}
30
- f.sequence(:email){|n| "user_#{n}@example.jp"}
31
- f.password { 'userpassword' }
32
- f.password_confirmation { 'userpassword' }
33
- f.after(:create) do |user|
34
- user_has_role = UserHasRole.new
35
- user_has_role.assign_attributes({user_id: user.id, role_id: Role.find_by(name: 'User').id})
36
- user_has_role.save
37
- user.reload
24
+ factory :user, class: User do
25
+ sequence(:username){|n| "user_#{n}"}
26
+ sequence(:email){|n| "user_#{n}@example.jp"}
27
+ password { 'userpassword' }
28
+ password_confirmation { 'userpassword' }
29
+ association :profile
30
+ after(:create) do |user|
31
+ user.role = Role.find_by(name: 'User')
38
32
  end
39
33
  end
40
34
 
41
- factory :invalid_user, class: User do |f|
35
+ factory :invalid_user, class: User do
42
36
  end
43
37
  end
@@ -1,17 +1,7 @@
1
1
  ---
2
- carrier_type_00004:
3
- name: file
4
- display_name: file
5
- updated_at: 2007-12-24 01:30:50.637433 +09:00
6
- id: 4
7
- note: !binary |
8
- 44Kz44Oz44OU44Ol44O844K/44Gu44OV44Kh44Kk44Or44Gn44GZ44CC
9
-
10
- created_at: 2007-12-24 01:30:50.637433 +09:00
11
- position: 4
12
2
  carrier_type_00001:
13
- name: print
14
- display_name: print
3
+ name: volume
4
+ display_name_translations: {"en": "Volume", "ja": "Volume"}
15
5
  updated_at: 2007-11-20 16:04:29.853828 +09:00
16
6
  id: 1
17
7
  note: !binary |
@@ -20,32 +10,41 @@ carrier_type_00001:
20
10
  created_at: 2007-11-20 15:47:03.641530 +09:00
21
11
  position: 1
22
12
  carrier_type_00002:
23
- name: CD
24
- display_name: CD
13
+ name: audio_disc
14
+ display_name_translations: {"en": "Audio disc", "ja": "Audio disc"}
25
15
  updated_at: 2007-12-19 01:45:26.040674 +09:00
26
16
  id: 2
27
17
  note: "\xE9\x9F\xB3\xE6\xA5\xBDCD\xE3\x81\xA7\xE3\x81\x99\xE3\x80\x82"
28
18
  created_at: 2007-12-19 01:45:26.040674 +09:00
29
19
  position: 2
30
20
  carrier_type_00003:
31
- name: DVD
32
- display_name: DVD
21
+ name: videodisc
22
+ display_name_translations: {"en": "Video disc", "ja": "Video disc"}
33
23
  updated_at: 2007-12-23 04:24:23.151410 +09:00
34
24
  id: 3
35
25
  note: "DVD\xE3\x81\xA7\xE3\x81\x99\xE3\x80\x82"
36
26
  created_at: 2007-12-23 04:24:23.151410 +09:00
37
27
  position: 3
28
+ carrier_type_00004:
29
+ name: online_resource
30
+ display_name_translations: {"en": "online_resource", "ja": "online_resource"}
31
+ updated_at: 2007-12-24 01:30:50.637433 +09:00
32
+ id: 4
33
+ note: !binary |
34
+ 44Kz44Oz44OU44Ol44O844K/44Gu44OV44Kh44Kk44Or44Gn44GZ44CC
35
+
36
+ created_at: 2007-12-24 01:30:50.637433 +09:00
37
+ position: 4
38
38
 
39
39
  # == Schema Information
40
40
  #
41
41
  # Table name: carrier_types
42
42
  #
43
- # id :integer not null, primary key
44
- # name :string(255) not null
45
- # display_name :text
46
- # note :text
47
- # position :integer
48
- # created_at :datetime
49
- # updated_at :datetime
43
+ # id :uuid not null, primary key
44
+ # name :string not null
45
+ # display_name_translations :jsonb not null
46
+ # note :text
47
+ # position :integer default(1), not null
48
+ # created_at :datetime not null
49
+ # updated_at :datetime not null
50
50
  #
51
-