Skip to content
Kosuke Tanabe edited this page Mar 20, 2022 · 2 revisions

インストール

Gemfileに以下の行を追加します。

gem 'enju_bookmark', '~> 0.3.2'
gem 'enju_purchase_request', '~> 0.3.2'

以下のコマンドを実行します。

$ bundle install
$ bundle exec rake enju_bookmark_engine:install:migrations RAILS_ENV=production
$ bundle exec rake enju_purchase_request_engine:install:migrations RAILS_ENV=production
$ bundle exec rake db:migrate RAILS_ENV=production

app/models/user.rbを以下のように変更します。

class User < ActiveRecord::Base
  # 中略

  include EnjuSeed::EnjuUser
  include EnjuBookmark::EnjuUser # 追加
  include EnjuPurchaseRequest::EnjuUser # 追加
end

app/controllers/application_controller.rbを以下のように変更します。

class ApplicationController < ActionController::Base
  include EnjuLibrary::Controller
  include EnjuBiblio::Controller
  # 中略

  include EnjuPurchaseRequest::Controller # 追加
  # 中略
end

その後、アプリケーションを再起動します。メニューの「図書館の管理」->「システムの設定」->「資料」に、「購入リクエスト」と「発注リスト」が表示されていることを確認してください。

image

Clone this wiki locally