enju_leaf 1.3.5 → 2.0.0.beta.1
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.
- checksums.yaml +4 -4
- data/README.md +2 -4
- data/app/assets/javascripts/enju_leaf/application.js +12 -0
- data/app/assets/javascripts/{autocomplete_agent.js → enju_leaf/autocomplete_agent.js} +0 -0
- data/app/assets/javascripts/{menu.js → enju_leaf/menu.js} +0 -0
- data/app/assets/javascripts/enju_leaf/mobile.js +5 -0
- data/app/assets/javascripts/{portlets.js → enju_leaf/portlets.js} +0 -0
- data/app/assets/javascripts/{select_locale.js → enju_leaf/select_locale.js} +0 -0
- data/app/assets/stylesheets/{enju_leaf.css → enju_leaf/application.scss} +6 -6
- data/app/assets/stylesheets/{enju.css → enju_leaf/enju.css} +0 -0
- data/app/assets/stylesheets/{enju_mobile.css → enju_leaf/enju_mobile.css} +0 -0
- data/app/assets/stylesheets/{enju_print.css → enju_leaf/enju_print.css} +0 -0
- data/app/assets/stylesheets/{mobile.css → enju_leaf/mobile.css} +1 -1
- data/app/assets/stylesheets/{pagination.css → enju_leaf/pagination.css} +0 -0
- data/app/assets/stylesheets/{portlets.css → enju_leaf/portlets.css} +0 -0
- data/app/assets/stylesheets/{print.css → enju_leaf/print.css} +1 -1
- data/app/assets/stylesheets/{scaffold_modified.css → enju_leaf/scaffold_modified.css} +0 -0
- data/app/views/devise/registrations/edit.html.erb +1 -1
- data/app/views/layouts/application.html.erb +4 -4
- data/app/views/page/_include.html.erb +1 -1
- data/app/views/page/_index.html+phone.erb +1 -1
- data/app/views/page/_menu.html.erb +1 -1
- data/app/views/page/_mobile.html+phone.erb +2 -2
- data/app/views/page/about.en.html.erb +4 -4
- data/app/views/page/about.ja.html.erb +4 -4
- data/app/views/page/advanced_search.html.erb +5 -5
- data/app/views/page/configuration.html.erb +0 -2
- data/app/views/page/opensearch.xml.builder +2 -2
- data/config/initializers/mime_types.rb +1 -0
- data/config/locales/en.yml +0 -4
- data/config/locales/ja.yml +0 -4
- data/lib/enju_leaf/engine.rb +1 -1
- data/lib/enju_leaf/version.rb +1 -1
- data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +5 -2
- data/lib/generators/enju_leaf/setup/setup_generator.rb +22 -17
- data/lib/generators/enju_leaf/setup/templates/Procfile +2 -2
- data/lib/generators/enju_leaf/setup/templates/config/schedule.rb +2 -2
- data/lib/generators/enju_leaf/setup/templates/db/seeds.rb +0 -4
- data/lib/tasks/enju_leaf_tasks.rake +2 -5
- data/spec/acceptance/profile.rb +9 -0
- data/spec/controllers/page_controller_spec.rb +1 -1
- data/spec/dummy/app/assets/javascripts/application.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +1 -0
- data/spec/dummy/app/controllers/application_controller.rb +0 -1
- data/spec/dummy/bin/bundle +1 -1
- data/spec/dummy/bin/setup +1 -3
- data/spec/dummy/bin/update +4 -2
- data/spec/dummy/bin/yarn +3 -3
- data/spec/dummy/config/application.rb +3 -2
- data/spec/dummy/config/boot.rb +4 -9
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +70 -9
- data/spec/dummy/config/environments/development.rb +9 -2
- data/spec/dummy/config/environments/production.rb +7 -4
- data/spec/dummy/config/environments/test.rb +7 -1
- data/spec/dummy/config/initializers/assets.rb +1 -2
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/locales/en.yml +30 -2
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +2 -58
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +3 -2
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/005_create_manifestations.rb +3 -3
- data/spec/dummy/db/migrate/127_create_use_restrictions.rb +3 -7
- data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +3 -7
- data/spec/dummy/db/migrate/149_create_message_templates.rb +3 -8
- data/spec/dummy/db/migrate/154_create_messages.rb +6 -14
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +4 -4
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +6 -5
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -0
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
- data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +1 -1
- data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +1 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +1 -1
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +4 -9
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +4 -9
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160319144230_create_issn_records.rb +11 -0
- data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -0
- data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
- data/spec/dummy/db/migrate/20170114174536_add_profile_id_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
- data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
- data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
- data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
- data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
- data/spec/dummy/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
- data/spec/dummy/db/schema.rb +265 -135
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/node_modules/jquery/AUTHORS.txt +278 -0
- data/spec/dummy/node_modules/jquery/LICENSE.txt +36 -0
- data/spec/dummy/node_modules/jquery/README.md +65 -0
- data/spec/dummy/node_modules/jquery/bower.json +14 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.js +9814 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.min.js +4 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.min.map +1 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/LICENSE.txt +36 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.map +1 -0
- data/spec/dummy/node_modules/jquery/package.json +84 -0
- data/spec/dummy/node_modules/jquery/src/ajax/jsonp.js +100 -0
- data/spec/dummy/node_modules/jquery/src/ajax/load.js +83 -0
- data/spec/dummy/node_modules/jquery/src/ajax/parseJSON.js +13 -0
- data/spec/dummy/node_modules/jquery/src/ajax/parseXML.js +27 -0
- data/spec/dummy/node_modules/jquery/src/ajax/script.js +68 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/location.js +3 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/nonce.js +5 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/rquery.js +3 -0
- data/spec/dummy/node_modules/jquery/src/ajax/xhr.js +167 -0
- data/spec/dummy/node_modules/jquery/src/ajax.js +845 -0
- data/spec/dummy/node_modules/jquery/src/attributes/attr.js +142 -0
- data/spec/dummy/node_modules/jquery/src/attributes/classes.js +177 -0
- data/spec/dummy/node_modules/jquery/src/attributes/prop.js +125 -0
- data/spec/dummy/node_modules/jquery/src/attributes/support.js +36 -0
- data/spec/dummy/node_modules/jquery/src/attributes/val.js +177 -0
- data/spec/dummy/node_modules/jquery/src/attributes.js +11 -0
- data/spec/dummy/node_modules/jquery/src/callbacks.js +232 -0
- data/spec/dummy/node_modules/jquery/src/core/access.js +65 -0
- data/spec/dummy/node_modules/jquery/src/core/init.js +134 -0
- data/spec/dummy/node_modules/jquery/src/core/parseHTML.js +41 -0
- data/spec/dummy/node_modules/jquery/src/core/ready.js +103 -0
- data/spec/dummy/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
- data/spec/dummy/node_modules/jquery/src/core.js +494 -0
- data/spec/dummy/node_modules/jquery/src/css/addGetHookIf.js +24 -0
- data/spec/dummy/node_modules/jquery/src/css/adjustCSS.js +65 -0
- data/spec/dummy/node_modules/jquery/src/css/curCSS.js +60 -0
- data/spec/dummy/node_modules/jquery/src/css/defaultDisplay.js +72 -0
- data/spec/dummy/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
- data/spec/dummy/node_modules/jquery/src/css/showHide.js +48 -0
- data/spec/dummy/node_modules/jquery/src/css/support.js +121 -0
- data/spec/dummy/node_modules/jquery/src/css/var/cssExpand.js +3 -0
- data/spec/dummy/node_modules/jquery/src/css/var/getStyles.js +15 -0
- data/spec/dummy/node_modules/jquery/src/css/var/isHidden.js +16 -0
- data/spec/dummy/node_modules/jquery/src/css/var/rmargin.js +3 -0
- data/spec/dummy/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
- data/spec/dummy/node_modules/jquery/src/css/var/swap.js +24 -0
- data/spec/dummy/node_modules/jquery/src/css.js +502 -0
- data/spec/dummy/node_modules/jquery/src/data/Data.js +200 -0
- data/spec/dummy/node_modules/jquery/src/data/var/acceptData.js +18 -0
- data/spec/dummy/node_modules/jquery/src/data/var/dataPriv.js +5 -0
- data/spec/dummy/node_modules/jquery/src/data/var/dataUser.js +5 -0
- data/spec/dummy/node_modules/jquery/src/data.js +187 -0
- data/spec/dummy/node_modules/jquery/src/deferred.js +158 -0
- data/spec/dummy/node_modules/jquery/src/deprecated.js +32 -0
- data/spec/dummy/node_modules/jquery/src/dimensions.js +54 -0
- data/spec/dummy/node_modules/jquery/src/effects/Tween.js +121 -0
- data/spec/dummy/node_modules/jquery/src/effects/animatedSelector.js +13 -0
- data/spec/dummy/node_modules/jquery/src/effects.js +629 -0
- data/spec/dummy/node_modules/jquery/src/event/ajax.js +20 -0
- data/spec/dummy/node_modules/jquery/src/event/alias.js +27 -0
- data/spec/dummy/node_modules/jquery/src/event/focusin.js +53 -0
- data/spec/dummy/node_modules/jquery/src/event/support.js +9 -0
- data/spec/dummy/node_modules/jquery/src/event/trigger.js +183 -0
- data/spec/dummy/node_modules/jquery/src/event.js +711 -0
- data/spec/dummy/node_modules/jquery/src/exports/amd.js +24 -0
- data/spec/dummy/node_modules/jquery/src/exports/global.js +26 -0
- data/spec/dummy/node_modules/jquery/src/intro.js +44 -0
- data/spec/dummy/node_modules/jquery/src/jquery.js +37 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/getAll.js +21 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/support.js +33 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
- data/spec/dummy/node_modules/jquery/src/manipulation.js +481 -0
- data/spec/dummy/node_modules/jquery/src/offset.js +218 -0
- data/spec/dummy/node_modules/jquery/src/outro.js +2 -0
- data/spec/dummy/node_modules/jquery/src/queue/delay.js +22 -0
- data/spec/dummy/node_modules/jquery/src/queue.js +143 -0
- data/spec/dummy/node_modules/jquery/src/selector-native.js +211 -0
- data/spec/dummy/node_modules/jquery/src/selector-sizzle.js +14 -0
- data/spec/dummy/node_modules/jquery/src/selector.js +1 -0
- data/spec/dummy/node_modules/jquery/src/serialize.js +125 -0
- data/spec/dummy/node_modules/jquery/src/traversing/findFilter.js +100 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/dir.js +20 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/siblings.js +15 -0
- data/spec/dummy/node_modules/jquery/src/traversing.js +175 -0
- data/spec/dummy/node_modules/jquery/src/var/arr.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/class2type.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/concat.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/document.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/documentElement.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/hasOwn.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/indexOf.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/pnum.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/push.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/rcssNum.js +7 -0
- data/spec/dummy/node_modules/jquery/src/var/rnotwhite.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/slice.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/support.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/toString.js +5 -0
- data/spec/dummy/node_modules/jquery/src/wrap.js +79 -0
- data/spec/dummy/package.json +5 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141214-44379-1fdvvdb.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141225-67268-nerc4o.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20150123-14447-1lf8lc5.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141214-44379-1exy9mg.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58343-ztcmne.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58490-hnqvxg.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58609-5iyax7.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58776-1e9gg8b.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58951-zfxzc6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59095-l3yd2t.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59220-1mgboh1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59533-1ie807t.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59716-m8uy9h.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59834-1fcv3ir.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59932-14y6v8m.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60422-ksg8ww.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60507-j2u5ra.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60619-2j2h65.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60822-1xdqwcc.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60925-4d4ce1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-61046-y4nspn.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62053-1qsuqzd.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62204-3quf6j.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62472-w05wkf.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67112-1viizrs.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67232-11tcrfq.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67342-1bajplt.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67475-gmnmq4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74670-mxvkc6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74954-1m11avl.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75054-1ac0xmz.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75135-1r3z1p.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75289-18xm9sx.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75372-1ab1rn4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75612-14gavh8.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75709-xgjjja.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75832-uej6ye.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75905-13kbauv.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76001-13yt1kv.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76158-1pitds8.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76526-q0rb2j.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76848-ya95k2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-88475-165899e.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-89902-paupo2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90001-1eg9w1e.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90157-bcu8m7.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141221-7985-u6s6l1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44711-1amcibm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44828-ap6n8d.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-48701-14hbzl1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-49875-1pc6esj.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64608-1wo1bpq.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64763-daej3l.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65000-1a7srlh.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65196-ggad1c.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65273-tt5ev2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65424-1d17hts.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65662-1gqvlj3.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65725-1qpz2tm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65807-t7cfln.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65962-161pm01.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66069-h9ftv6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66327-hsz0j4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-67268-hqxt6v.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150119-54567-1exwx4r.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-80886-1whqn2s.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-81115-hlvwc4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86495-navftm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86986-894a3i.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150122-4492-vaml86.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150123-14447-gy0ver.txt +8 -0
- data/spec/dummy/yarn.lock +8 -0
- data/spec/factories/agent.rb +1 -1
- data/spec/factories/library.rb +1 -1
- data/spec/factories/profile.rb +3 -3
- data/spec/factories/user.rb +25 -31
- data/spec/fixtures/carrier_types.yml +23 -24
- data/spec/fixtures/content_types.yml +78 -22
- data/spec/fixtures/libraries.yml +28 -31
- data/spec/fixtures/library_groups.yml +33 -16
- data/spec/fixtures/manifestations.yml +32 -27
- data/spec/fixtures/roles.yml +11 -12
- data/spec/fixtures/shelves.yml +14 -15
- data/spec/fixtures/user_groups.yml +9 -16
- data/spec/fixtures/user_has_roles.yml +2 -1
- data/spec/rails_helper.rb +11 -1
- data/spec/system/page_spec.rb +35 -0
- data/spec/views/page/configuration.html.erb_spec.rb +1 -1
- metadata +723 -337
- data/app/assets/javascripts/enju_leaf.js +0 -12
- data/app/assets/javascripts/mobile.js +0 -4
- data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -25
- data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
- data/vendor/assets/javascripts/jquery.colorbox.js +0 -1105
- data/vendor/assets/javascripts/jquery.powertip.js +0 -1395
- data/vendor/assets/stylesheets/colorbox.css +0 -70
- data/vendor/assets/stylesheets/jquery.powertip.css +0 -105
data/spec/dummy/config/boot.rb
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# Set up gems listed in the Gemfile.
|
|
2
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
|
|
3
3
|
|
|
4
|
-
if File.exist?(
|
|
5
|
-
|
|
6
|
-
require 'bundler'
|
|
7
|
-
Bundler.setup
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
$:.unshift File.expand_path('../../../../lib', __FILE__)
|
|
4
|
+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
5
|
+
$LOAD_PATH.unshift File.expand_path('../../../lib', __dir__)
|
|
@@ -1,25 +1,86 @@
|
|
|
1
|
-
#
|
|
2
|
-
# gem install sqlite3
|
|
1
|
+
# PostgreSQL. Versions 9.1 and up are supported.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
# gem
|
|
3
|
+
# Install the pg driver:
|
|
4
|
+
# gem install pg
|
|
5
|
+
# On OS X with Homebrew:
|
|
6
|
+
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
|
|
7
|
+
# On OS X with MacPorts:
|
|
8
|
+
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
|
|
9
|
+
# On Windows:
|
|
10
|
+
# gem install pg
|
|
11
|
+
# Choose the win32 build.
|
|
12
|
+
# Install PostgreSQL and put its /bin directory on your path.
|
|
13
|
+
#
|
|
14
|
+
# Configure Using Gemfile
|
|
15
|
+
# gem 'pg'
|
|
6
16
|
#
|
|
7
17
|
default: &default
|
|
8
|
-
adapter:
|
|
18
|
+
adapter: postgresql
|
|
19
|
+
encoding: unicode
|
|
20
|
+
# For details on connection pooling, see Rails configuration guide
|
|
21
|
+
# http://guides.rubyonrails.org/configuring.html#database-pooling
|
|
9
22
|
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
|
10
|
-
|
|
23
|
+
user: postgres
|
|
11
24
|
|
|
12
25
|
development:
|
|
13
26
|
<<: *default
|
|
14
|
-
database:
|
|
27
|
+
database: enju_leaf_dummy_development
|
|
28
|
+
|
|
29
|
+
# The specified database role being used to connect to postgres.
|
|
30
|
+
# To create additional roles in postgres see `$ createuser --help`.
|
|
31
|
+
# When left blank, postgres will use the default role. This is
|
|
32
|
+
# the same name as the operating system user that initialized the database.
|
|
33
|
+
#username: dummy
|
|
34
|
+
|
|
35
|
+
# The password associated with the postgres role (username).
|
|
36
|
+
#password:
|
|
37
|
+
|
|
38
|
+
# Connect on a TCP socket. Omitted by default since the client uses a
|
|
39
|
+
# domain socket that doesn't need configuration. Windows does not have
|
|
40
|
+
# domain sockets, so uncomment these lines.
|
|
41
|
+
#host: localhost
|
|
42
|
+
|
|
43
|
+
# The TCP port the server listens on. Defaults to 5432.
|
|
44
|
+
# If your server runs on a different port number, change accordingly.
|
|
45
|
+
#port: 5432
|
|
46
|
+
|
|
47
|
+
# Schema search path. The server defaults to $user,public
|
|
48
|
+
#schema_search_path: myapp,sharedapp,public
|
|
49
|
+
|
|
50
|
+
# Minimum log levels, in increasing order:
|
|
51
|
+
# debug5, debug4, debug3, debug2, debug1,
|
|
52
|
+
# log, notice, warning, error, fatal, and panic
|
|
53
|
+
# Defaults to warning.
|
|
54
|
+
#min_messages: notice
|
|
15
55
|
|
|
16
56
|
# Warning: The database defined as "test" will be erased and
|
|
17
57
|
# re-generated from your development database when you run "rake".
|
|
18
58
|
# Do not set this db to the same as development or production.
|
|
19
59
|
test:
|
|
20
60
|
<<: *default
|
|
21
|
-
database:
|
|
61
|
+
database: enju_leaf_dummy_test
|
|
22
62
|
|
|
63
|
+
# As with config/secrets.yml, you never want to store sensitive information,
|
|
64
|
+
# like your database password, in your source code. If your source code is
|
|
65
|
+
# ever seen by anyone, they now have access to your database.
|
|
66
|
+
#
|
|
67
|
+
# Instead, provide the password as a unix environment variable when you boot
|
|
68
|
+
# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database
|
|
69
|
+
# for a full rundown on how to provide these environment variables in a
|
|
70
|
+
# production deployment.
|
|
71
|
+
#
|
|
72
|
+
# On Heroku and other platform providers, you may have a full connection URL
|
|
73
|
+
# available as an environment variable. For example:
|
|
74
|
+
#
|
|
75
|
+
# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase"
|
|
76
|
+
#
|
|
77
|
+
# You can use this database configuration with:
|
|
78
|
+
#
|
|
79
|
+
# production:
|
|
80
|
+
# url: <%= ENV['DATABASE_URL'] %>
|
|
81
|
+
#
|
|
23
82
|
production:
|
|
24
83
|
<<: *default
|
|
25
|
-
database:
|
|
84
|
+
database: enju_leaf_dummy_production
|
|
85
|
+
username: dummy
|
|
86
|
+
password: <%= ENV['DUMMY_DATABASE_PASSWORD'] %>
|
|
@@ -13,12 +13,13 @@ Rails.application.configure do
|
|
|
13
13
|
config.consider_all_requests_local = true
|
|
14
14
|
|
|
15
15
|
# Enable/disable caching. By default caching is disabled.
|
|
16
|
-
|
|
16
|
+
# Run rails dev:cache to toggle caching.
|
|
17
|
+
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
|
17
18
|
config.action_controller.perform_caching = true
|
|
18
19
|
|
|
19
20
|
config.cache_store = :memory_store
|
|
20
21
|
config.public_file_server.headers = {
|
|
21
|
-
'Cache-Control' => "public, max-age=#{2.days.
|
|
22
|
+
'Cache-Control' => "public, max-age=#{2.days.to_i}"
|
|
22
23
|
}
|
|
23
24
|
else
|
|
24
25
|
config.action_controller.perform_caching = false
|
|
@@ -26,6 +27,9 @@ Rails.application.configure do
|
|
|
26
27
|
config.cache_store = :null_store
|
|
27
28
|
end
|
|
28
29
|
|
|
30
|
+
# Store uploaded files on the local file system (see config/storage.yml for options)
|
|
31
|
+
config.active_storage.service = :local
|
|
32
|
+
|
|
29
33
|
# Don't care if the mailer can't send.
|
|
30
34
|
config.action_mailer.raise_delivery_errors = false
|
|
31
35
|
|
|
@@ -37,6 +41,9 @@ Rails.application.configure do
|
|
|
37
41
|
# Raise an error on page load if there are pending migrations.
|
|
38
42
|
config.active_record.migration_error = :page_load
|
|
39
43
|
|
|
44
|
+
# Highlight code that triggered database queries in logs.
|
|
45
|
+
config.active_record.verbose_query_logs = true
|
|
46
|
+
|
|
40
47
|
# Debug mode disables concatenation and preprocessing of assets.
|
|
41
48
|
# This option may cause significant delays in view rendering with a large
|
|
42
49
|
# number of complex assets.
|
|
@@ -14,10 +14,9 @@ Rails.application.configure do
|
|
|
14
14
|
config.consider_all_requests_local = false
|
|
15
15
|
config.action_controller.perform_caching = true
|
|
16
16
|
|
|
17
|
-
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
config.read_encrypted_secrets = true
|
|
17
|
+
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
|
|
18
|
+
# or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
|
|
19
|
+
# config.require_master_key = true
|
|
21
20
|
|
|
22
21
|
# Disable serving static files from the `/public` folder by default since
|
|
23
22
|
# Apache or NGINX already handles this.
|
|
@@ -39,6 +38,9 @@ Rails.application.configure do
|
|
|
39
38
|
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
|
40
39
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
|
41
40
|
|
|
41
|
+
# Store uploaded files on the local file system (see config/storage.yml for options)
|
|
42
|
+
config.active_storage.service = :local
|
|
43
|
+
|
|
42
44
|
# Mount Action Cable outside main process or domain
|
|
43
45
|
# config.action_cable.mount_path = nil
|
|
44
46
|
# config.action_cable.url = 'wss://example.com/cable'
|
|
@@ -60,6 +62,7 @@ Rails.application.configure do
|
|
|
60
62
|
# Use a real queuing backend for Active Job (and separate queues per environment)
|
|
61
63
|
# config.active_job.queue_adapter = :resque
|
|
62
64
|
# config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
|
|
65
|
+
|
|
63
66
|
config.action_mailer.perform_caching = false
|
|
64
67
|
|
|
65
68
|
# Ignore bad email addresses and do not raise email delivery errors.
|
|
@@ -15,7 +15,7 @@ Rails.application.configure do
|
|
|
15
15
|
# Configure public file server for tests with Cache-Control for performance.
|
|
16
16
|
config.public_file_server.enabled = true
|
|
17
17
|
config.public_file_server.headers = {
|
|
18
|
-
'Cache-Control' => "public, max-age=#{1.hour.
|
|
18
|
+
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
# Show full error reports and disable caching.
|
|
@@ -27,6 +27,10 @@ Rails.application.configure do
|
|
|
27
27
|
|
|
28
28
|
# Disable request forgery protection in test environment.
|
|
29
29
|
config.action_controller.allow_forgery_protection = false
|
|
30
|
+
|
|
31
|
+
# Store uploaded files on the local file system in a temporary directory
|
|
32
|
+
config.active_storage.service = :test
|
|
33
|
+
|
|
30
34
|
config.action_mailer.perform_caching = false
|
|
31
35
|
|
|
32
36
|
# Tell Action Mailer not to deliver emails to the real world.
|
|
@@ -39,4 +43,6 @@ Rails.application.configure do
|
|
|
39
43
|
|
|
40
44
|
# Raises error for missing translations
|
|
41
45
|
# config.action_view.raise_on_missing_translations = true
|
|
46
|
+
config.action_mailer.default_url_options = {host: 'localhost:3000'}
|
|
47
|
+
config.active_job.queue_adapter = :inline
|
|
42
48
|
end
|
|
@@ -6,10 +6,9 @@ Rails.application.config.assets.version = '1.0'
|
|
|
6
6
|
# Add additional assets to the asset load path.
|
|
7
7
|
# Rails.application.config.assets.paths << Emoji.images_path
|
|
8
8
|
# Add Yarn node_modules folder to the asset load path.
|
|
9
|
-
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
|
9
|
+
Rails.application.config.assets.paths << Rails.root.join('../../', 'node_modules')
|
|
10
10
|
|
|
11
11
|
# Precompile additional assets.
|
|
12
12
|
# application.js, application.css, and all non-JS/CSS in the app/assets
|
|
13
13
|
# folder are already added.
|
|
14
14
|
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
|
|
15
|
-
Rails.application.config.assets.precompile += %w( icons/*.png )
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Define an application-wide content security policy
|
|
4
|
+
# For further information see the following documentation
|
|
5
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
|
6
|
+
|
|
7
|
+
# Rails.application.config.content_security_policy do |policy|
|
|
8
|
+
# policy.default_src :self, :https
|
|
9
|
+
# policy.font_src :self, :https, :data
|
|
10
|
+
# policy.img_src :self, :https, :data
|
|
11
|
+
# policy.object_src :none
|
|
12
|
+
# policy.script_src :self, :https
|
|
13
|
+
# policy.style_src :self, :https
|
|
14
|
+
|
|
15
|
+
# # Specify URI for violation reports
|
|
16
|
+
# # policy.report_uri "/csp-violation-report-endpoint"
|
|
17
|
+
# end
|
|
18
|
+
|
|
19
|
+
# If you are using UJS then enable automatic nonce generation
|
|
20
|
+
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
|
21
|
+
|
|
22
|
+
# Report CSP violations to a specified URI
|
|
23
|
+
# For further information see the following documentation:
|
|
24
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
|
25
|
+
# Rails.application.config.content_security_policy_report_only = true
|
|
@@ -1,5 +1,33 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
|
3
|
+
# than English, add the necessary files in this directory.
|
|
4
|
+
#
|
|
5
|
+
# To use the locales, use `I18n.t`:
|
|
6
|
+
#
|
|
7
|
+
# I18n.t 'hello'
|
|
8
|
+
#
|
|
9
|
+
# In views, this is aliased to just `t`:
|
|
10
|
+
#
|
|
11
|
+
# <%= t('hello') %>
|
|
12
|
+
#
|
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
|
14
|
+
#
|
|
15
|
+
# I18n.locale = :es
|
|
16
|
+
#
|
|
17
|
+
# This would use the information in config/locales/es.yml.
|
|
18
|
+
#
|
|
19
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
|
20
|
+
# the default I18n backend:
|
|
21
|
+
#
|
|
22
|
+
# true, false, on, off, yes, no
|
|
23
|
+
#
|
|
24
|
+
# Instead, surround them with single quotes.
|
|
25
|
+
#
|
|
26
|
+
# en:
|
|
27
|
+
# 'true': 'foo'
|
|
28
|
+
#
|
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
|
30
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
|
3
31
|
|
|
4
32
|
en:
|
|
5
33
|
hello: "Hello world"
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
|
2
|
+
# The `threads` method setting takes two numbers: a minimum and maximum.
|
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
|
5
|
+
# and maximum; this matches the default thread size of Active Record.
|
|
6
|
+
#
|
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
|
8
|
+
threads threads_count, threads_count
|
|
9
|
+
|
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
|
11
|
+
#
|
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
|
13
|
+
|
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
|
15
|
+
#
|
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
|
17
|
+
|
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
|
22
|
+
# processes).
|
|
23
|
+
#
|
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
|
25
|
+
|
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
|
29
|
+
# process behavior so workers use less memory.
|
|
30
|
+
#
|
|
31
|
+
# preload_app!
|
|
32
|
+
|
|
33
|
+
# Allow puma to be restarted by `rails restart` command.
|
|
34
|
+
plugin :tmp_restart
|
data/spec/dummy/config/routes.rb
CHANGED
|
@@ -1,60 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
Rails.application.routes.draw do
|
|
2
|
+
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
2
3
|
devise_for :users
|
|
3
|
-
|
|
4
|
-
# The priority is based upon order of creation:
|
|
5
|
-
# first created -> highest priority.
|
|
6
|
-
|
|
7
|
-
# Sample of regular route:
|
|
8
|
-
# match 'products/:id' => 'catalog#view'
|
|
9
|
-
# Keep in mind you can assign values other than :controller and :action
|
|
10
|
-
|
|
11
|
-
# Sample of named route:
|
|
12
|
-
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
|
13
|
-
# This route can be invoked with purchase_url(:id => product.id)
|
|
14
|
-
|
|
15
|
-
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
|
16
|
-
# resources :products
|
|
17
|
-
|
|
18
|
-
# Sample resource route with options:
|
|
19
|
-
# resources :products do
|
|
20
|
-
# member do
|
|
21
|
-
# get 'short'
|
|
22
|
-
# post 'toggle'
|
|
23
|
-
# end
|
|
24
|
-
#
|
|
25
|
-
# collection do
|
|
26
|
-
# get 'sold'
|
|
27
|
-
# end
|
|
28
|
-
# end
|
|
29
|
-
|
|
30
|
-
# Sample resource route with sub-resources:
|
|
31
|
-
# resources :products do
|
|
32
|
-
# resources :comments, :sales
|
|
33
|
-
# resource :seller
|
|
34
|
-
# end
|
|
35
|
-
|
|
36
|
-
# Sample resource route with more complex sub-resources
|
|
37
|
-
# resources :products do
|
|
38
|
-
# resources :comments
|
|
39
|
-
# resources :sales do
|
|
40
|
-
# get 'recent', :on => :collection
|
|
41
|
-
# end
|
|
42
|
-
# end
|
|
43
|
-
|
|
44
|
-
# Sample resource route within a namespace:
|
|
45
|
-
# namespace :admin do
|
|
46
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
|
47
|
-
# # (app/controllers/admin/products_controller.rb)
|
|
48
|
-
# resources :products
|
|
49
|
-
# end
|
|
50
|
-
|
|
51
|
-
# You can have the root of your site routed with "root"
|
|
52
|
-
# just remember to delete public/index.html.
|
|
53
|
-
# root :to => 'welcome#index'
|
|
54
|
-
|
|
55
|
-
# See how all your routes lay out with "rake routes"
|
|
56
|
-
|
|
57
|
-
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
|
58
|
-
# Note: This route will make all actions in every controller accessible via GET requests.
|
|
59
|
-
# match ':controller(/:action(/:id))(.:format)'
|
|
60
4
|
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
test:
|
|
2
|
+
service: Disk
|
|
3
|
+
root: <%= Rails.root.join("tmp/storage") %>
|
|
4
|
+
|
|
5
|
+
local:
|
|
6
|
+
service: Disk
|
|
7
|
+
root: <%= Rails.root.join("storage") %>
|
|
8
|
+
|
|
9
|
+
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
|
10
|
+
# amazon:
|
|
11
|
+
# service: S3
|
|
12
|
+
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
|
13
|
+
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
|
14
|
+
# region: us-east-1
|
|
15
|
+
# bucket: your_own_bucket
|
|
16
|
+
|
|
17
|
+
# Remember not to checkin your GCS keyfile to a repository
|
|
18
|
+
# google:
|
|
19
|
+
# service: GCS
|
|
20
|
+
# project: your_project
|
|
21
|
+
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
|
22
|
+
# bucket: your_own_bucket
|
|
23
|
+
|
|
24
|
+
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
|
25
|
+
# microsoft:
|
|
26
|
+
# service: AzureStorage
|
|
27
|
+
# storage_account_name: your_account_name
|
|
28
|
+
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
|
29
|
+
# container: your_container_name
|
|
30
|
+
|
|
31
|
+
# mirror:
|
|
32
|
+
# service: Mirror
|
|
33
|
+
# primary: local
|
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
data/spec/dummy/config.ru
CHANGED
|
Binary file
|
|
@@ -32,10 +32,10 @@ class CreateManifestations < ActiveRecord::Migration[4.2]
|
|
|
32
32
|
t.integer :frequency_id, default: 1, null: false
|
|
33
33
|
t.boolean :subscription_master, default: false, null: false
|
|
34
34
|
end
|
|
35
|
-
#
|
|
36
|
-
#
|
|
35
|
+
#add_index :manifestations, :carrier_type_id
|
|
36
|
+
#add_index :manifestations, :required_role_id
|
|
37
37
|
add_index :manifestations, :access_address
|
|
38
|
-
#
|
|
38
|
+
#add_index :manifestations, :frequency_id
|
|
39
39
|
add_index :manifestations, :manifestation_identifier
|
|
40
40
|
add_index :manifestations, :updated_at
|
|
41
41
|
add_index :manifestations, :date_of_publication
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
class CreateUseRestrictions < ActiveRecord::Migration[
|
|
2
|
-
def
|
|
1
|
+
class CreateUseRestrictions < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
3
|
create_table :use_restrictions do |t|
|
|
4
4
|
t.string :name, null: false
|
|
5
|
-
t.
|
|
5
|
+
t.jsonb :display_name, default: {}, null: false
|
|
6
6
|
t.text :note
|
|
7
7
|
t.integer :position
|
|
8
8
|
|
|
9
9
|
t.timestamps
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
|
-
|
|
13
|
-
def self.down
|
|
14
|
-
drop_table :use_restrictions
|
|
15
|
-
end
|
|
16
12
|
end
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
class CreateCirculationStatuses < ActiveRecord::Migration[
|
|
2
|
-
def
|
|
1
|
+
class CreateCirculationStatuses < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
3
|
create_table :circulation_statuses do |t|
|
|
4
4
|
t.string :name, null: false
|
|
5
|
-
t.
|
|
5
|
+
t.jsonb :display_name, default: {}, null: false
|
|
6
6
|
t.text :note
|
|
7
7
|
t.integer :position
|
|
8
8
|
|
|
9
9
|
t.timestamps
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
|
-
|
|
13
|
-
def self.down
|
|
14
|
-
drop_table :circulation_statuses
|
|
15
|
-
end
|
|
16
12
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
class CreateMessageTemplates < ActiveRecord::Migration[
|
|
2
|
-
def
|
|
1
|
+
class CreateMessageTemplates < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
3
|
create_table :message_templates do |t|
|
|
4
|
-
t.string :status, null: false
|
|
4
|
+
t.string :status, null: false, index: {unique: true}
|
|
5
5
|
t.text :title, null: false
|
|
6
6
|
t.text :body, null: false
|
|
7
7
|
t.integer :position
|
|
@@ -9,10 +9,5 @@ class CreateMessageTemplates < ActiveRecord::Migration[4.2]
|
|
|
9
9
|
|
|
10
10
|
t.timestamps
|
|
11
11
|
end
|
|
12
|
-
add_index :message_templates, :status, unique: true
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
def self.down
|
|
16
|
-
drop_table :message_templates
|
|
17
12
|
end
|
|
18
13
|
end
|
|
@@ -1,23 +1,15 @@
|
|
|
1
|
-
class CreateMessages < ActiveRecord::Migration[
|
|
2
|
-
def
|
|
1
|
+
class CreateMessages < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
3
|
create_table :messages, force: true do |t|
|
|
4
4
|
t.datetime :read_at
|
|
5
|
-
t.
|
|
5
|
+
t.references :sender, index: true
|
|
6
|
+
t.references :receiver, index: true
|
|
6
7
|
t.string :subject, null: false
|
|
7
8
|
t.text :body
|
|
8
|
-
t.
|
|
9
|
-
t.
|
|
9
|
+
t.references :message_request, index: true
|
|
10
|
+
t.references :parent, index: true
|
|
10
11
|
|
|
11
12
|
t.timestamps
|
|
12
13
|
end
|
|
13
|
-
|
|
14
|
-
add_index :messages, :sender_id
|
|
15
|
-
add_index :messages, :receiver_id
|
|
16
|
-
add_index :messages, :message_request_id
|
|
17
|
-
add_index :messages, :parent_id
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def self.down
|
|
21
|
-
drop_table :messages
|
|
22
14
|
end
|
|
23
15
|
end
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
class CreateMessageRequests < ActiveRecord::Migration[
|
|
1
|
+
class CreateMessageRequests < ActiveRecord::Migration[5.2]
|
|
2
2
|
def self.up
|
|
3
3
|
create_table :message_requests do |t|
|
|
4
|
-
t.
|
|
5
|
-
t.
|
|
6
|
-
t.
|
|
4
|
+
t.references :sender
|
|
5
|
+
t.references :receiver
|
|
6
|
+
t.references :message_template
|
|
7
7
|
t.datetime :sent_at
|
|
8
8
|
t.datetime :deleted_at
|
|
9
9
|
t.text :body
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
class CreateCountries < ActiveRecord::Migration[4.2]
|
|
2
|
+
|
|
2
3
|
# ISO 3166 is the International Standard for country codes.
|
|
3
4
|
#
|
|
4
|
-
# ISO 3166-1:2006 Codes for the representation of names of countries and their subdivisions - Part 1:
|
|
5
|
-
# Country codes which is what most users know as ISO's country codes. First published in 1974, it is has since
|
|
6
|
-
# then become one of the world's most popular and most widely used standard solution for coding country names.
|
|
7
|
-
# It contains a two-letter code which is recommended as the general purpose code, a three-letter code which has
|
|
5
|
+
# ISO 3166-1:2006 Codes for the representation of names of countries and their subdivisions - Part 1:
|
|
6
|
+
# Country codes which is what most users know as ISO's country codes. First published in 1974, it is has since
|
|
7
|
+
# then become one of the world's most popular and most widely used standard solution for coding country names.
|
|
8
|
+
# It contains a two-letter code which is recommended as the general purpose code, a three-letter code which has
|
|
8
9
|
# better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important.
|
|
9
10
|
#
|
|
10
11
|
# http://www.iso.org/iso/country_codes/background_on_iso_3166/what_is_iso_3166.htm
|
|
11
12
|
|
|
12
13
|
def change
|
|
13
14
|
create_table :countries do |t|
|
|
14
|
-
t.string :name,
|
|
15
|
+
t.string :name, size: 80, null: false
|
|
15
16
|
t.text :display_name
|
|
16
17
|
t.string :alpha_2, size: 2
|
|
17
18
|
t.string :alpha_3, size: 3
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
class CreateLanguages < ActiveRecord::Migration[4.2]
|
|
2
|
+
|
|
2
3
|
# ISO 639 is the set of international standards that lists short codes for language names.
|
|
3
4
|
# Note this doesn't include macrolanguages (dialects)
|
|
4
5
|
# Information on macrolanguages http://en.wikipedia.org/wiki/ISO_639_macrolanguage
|
|
@@ -10,6 +10,6 @@ class CreatePictureFiles < ActiveRecord::Migration[4.2]
|
|
|
10
10
|
|
|
11
11
|
t.timestamps
|
|
12
12
|
end
|
|
13
|
-
add_index :picture_files,
|
|
13
|
+
add_index :picture_files, [:picture_attachable_id, :picture_attachable_type], name: "index_picture_files_on_picture_attachable_id_and_type"
|
|
14
14
|
end
|
|
15
15
|
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
class AddAttachmentsAttachmentToManifestation < ActiveRecord::Migration[4.2]
|
|
2
|
+
def self.up
|
|
3
|
+
add_column :manifestations, :attachment_file_name, :string
|
|
4
|
+
add_column :manifestations, :attachment_content_type, :string
|
|
5
|
+
add_column :manifestations, :attachment_file_size, :integer
|
|
6
|
+
add_column :manifestations, :attachment_updated_at, :datetime
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def self.down
|
|
10
|
+
remove_column :manifestations, :attachment_file_name
|
|
11
|
+
remove_column :manifestations, :attachment_content_type
|
|
12
|
+
remove_column :manifestations, :attachment_file_size
|
|
13
|
+
remove_column :manifestations, :attachment_updated_at
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
class CreateUserHasRoles < ActiveRecord::Migration[4.2]
|
|
2
2
|
def change
|
|
3
3
|
create_table :user_has_roles do |t|
|
|
4
|
-
t.
|
|
5
|
-
t.
|
|
4
|
+
t.references :user, index: true, foreign_key: true, null: false
|
|
5
|
+
t.references :role, index: true, foreign_key: true, null: false
|
|
6
6
|
|
|
7
7
|
t.timestamps
|
|
8
8
|
end
|
|
9
|
-
add_index :user_has_roles, :user_id
|
|
10
|
-
add_index :user_has_roles, :role_id
|
|
11
9
|
end
|
|
12
10
|
end
|
data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
class AddNumberOfDayToNotifyOverdueToUserGroup < ActiveRecord::Migration[
|
|
1
|
+
class AddNumberOfDayToNotifyOverdueToUserGroup < ActiveRecord::Migration[5.2]
|
|
2
2
|
def self.up
|
|
3
3
|
add_column :user_groups, :number_of_day_to_notify_overdue, :integer, default: 1, null: false
|
|
4
4
|
add_column :user_groups, :number_of_day_to_notify_due_date, :integer, default: 7, null: false
|