enju_nii 0.3.0 → 0.3.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.
Files changed (29) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +41 -0
  3. data/Rakefile +1 -1
  4. data/app/models/nii_type.rb +1 -1
  5. data/lib/enju_nii/version.rb +1 -1
  6. data/spec/dummy/app/models/application_record.rb +3 -0
  7. data/spec/dummy/app/models/user.rb +1 -1
  8. data/spec/dummy/config/application.rb +3 -1
  9. data/spec/dummy/config/database.yml +17 -22
  10. data/spec/dummy/config/environments/test.rb +3 -0
  11. data/spec/dummy/config/initializers/statesman.rb +3 -0
  12. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -2
  13. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -8
  14. data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
  15. data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
  16. data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
  17. data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +12 -0
  18. data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +12 -0
  19. data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +12 -0
  20. data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +12 -0
  21. data/spec/dummy/db/schema.rb +54 -3
  22. data/spec/dummy/private/system/resource_export_files/resource_exports/000/000/001/original/resource_export.txt +130 -0
  23. data/spec/factories/identifier.rb +7 -0
  24. data/spec/factories/manifestation.rb +6 -0
  25. data/spec/fixtures/profiles.yml +98 -0
  26. data/spec/models/resource_export_file_spec.rb +38 -0
  27. data/spec/rails_helper.rb +1 -0
  28. metadata +141 -16
  29. data/README.rdoc +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f7d39b701f32e760e69023ac20d9fd2acd6a6086
4
- data.tar.gz: e76bba41970f261d63d55d3b755906ea90aa3a82
2
+ SHA256:
3
+ metadata.gz: 074245e3204337b96dece19706d75df3efe0f214a34757418dae1e055b635a48
4
+ data.tar.gz: 737b4cc360c667a11b1a90515b4a46e7a749f9eb849bf9baecea2ff6be47b997
5
5
  SHA512:
6
- metadata.gz: cac3d303ac273fdaf48fd25daf924dd413119de53c2c7ff53d4ca46974560a667d856018aa4c222b96d52485e32c74fc149579f7c7210f9f8ec6d23c436436c1
7
- data.tar.gz: 9331f66ad0870e684e2cecf5a88ad4f519cf8395540242622bedcfab8757491b972769d5ea1409c62496e75f36d61fac41609eed9783c84b0bebe1b6ddd42e34
6
+ metadata.gz: '03902c5d82928a1887b719c929f935d66552316b3b5bd6d24cd6bcfe0bc5e2f57872ae83bd21b5ec32cd222f3af16f609e4498ad926aaf2a3c9baff2870b0187'
7
+ data.tar.gz: a2fcdb1ab7454fc6e085cbcb38e6685b815332b410e42a83bbd032f743d9db8392482ffc414900575d1e83333e7d8bb5f95e776698676c5391c08345d337e752
@@ -0,0 +1,41 @@
1
+ # EnjuNii
2
+ [<img src="https://travis-ci.com/next-l/enju_nii.svg?branch=1.3" alt="Build
3
+ Status" />](https://travis-ci.com/next-l/enju_nii) [<img
4
+ src="https://coveralls.io/repos/next-l/enju_nii/badge.svg?branch=1.3&service=g
5
+ ithub" alt="Coverage Status"
6
+ />](https://coveralls.io/github/next-l/enju_nii?branch=1.3) [<img
7
+ src="https://hakiri.io/github/next-l/enju_nii/1.3.svg" alt="security"
8
+ />](https://hakiri.io/github/next-l/enju_nii/1.3)
9
+
10
+ CiNii Booksから書誌をインポートするための Enju プラグインです。
11
+
12
+ ## インストール方法 / How to Install
13
+
14
+ お使いのenju_leafのGemfile に以下の行を追加してください。
15
+
16
+ gem 'enju_nii', github: "next-l/enju_nii", branch: '1.3'
17
+
18
+ gemをインストールします。
19
+
20
+ $ bundle update
21
+
22
+ インストールが完了したら、以下のコマンドでセットアップを行います。
23
+
24
+ $ rake enju_nii_engine:install:migrations
25
+ $ rake enju_nii:setup
26
+
27
+ データベースを更新します。
28
+
29
+ $ rake db:migrate
30
+
31
+ その後、Enjuを再起動してください。
32
+
33
+ http://(Enjuのホスト)/cinii_books/ にアクセスすると、 CiNii Books検索によるインポート機能が利用できます。
34
+
35
+ ## ライセンス / License
36
+
37
+ This project rocks and uses MIT-LICENSE.
38
+
39
+ ## 製作者・貢献者 (Authors and contributors)
40
+ * [TANABE, Kosuke](https://github.com/nabeta) ([@nabeta](https://twitter.com/nabeta))
41
+ * [Project Next-L](https://www.next-l.jp) ([@ProjectNextL](https://twitter.com/ProjectNextL))
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_dir = 'rdoc'
17
17
  rdoc.title = 'EnjuNii'
18
18
  rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
19
+ rdoc.rdoc_files.include('README.md')
20
20
  rdoc.rdoc_files.include('lib/**/*.rb')
21
21
  end
22
22
 
@@ -1,4 +1,4 @@
1
- class NiiType < ActiveRecord::Base
1
+ class NiiType < ApplicationRecord
2
2
  include MasterModel
3
3
  has_many :manifestations
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module EnjuNii
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1".freeze
3
3
  end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -1,4 +1,4 @@
1
- class User < ActiveRecord::Base
1
+ class User < ApplicationRecord
2
2
  devise :database_authenticatable, #:registerable,
3
3
  :recoverable, :rememberable, :trackable, #, :validatable
4
4
  :lockable, lock_strategy: :none, unlock_strategy: :none
@@ -4,11 +4,13 @@ require 'rails/all'
4
4
 
5
5
  Bundler.require(*Rails.groups)
6
6
  require "enju_nii"
7
+ require "enju_leaf"
8
+ require "enju_message"
7
9
 
8
10
  module Dummy
9
11
  class Application < Rails::Application
10
12
  # Initialize configuration defaults for originally generated Rails version.
11
- config.load_defaults 5.1
13
+ config.load_defaults 5.2
12
14
 
13
15
  # Settings in config/environments/* take precedence over those specified here.
14
16
  # Application configuration should go into files in config/initializers
@@ -1,30 +1,25 @@
1
- sqlite: &sqlite
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
2
8
  adapter: sqlite3
3
- database: db/<%= Rails.env %>.sqlite3
4
-
5
- mysql: &mysql
6
- adapter: mysql2
7
- username: root
8
- password:
9
- database: enju_<%= Rails.env %>
10
-
11
- postgresql: &postgresql
12
- adapter: postgresql
13
- username: postgres
14
- password:
15
- database: enju_<%= Rails.env %>
16
-
17
- defaults: &defaults
18
- pool: 5
9
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
19
10
  timeout: 5000
20
- host: localhost
21
- <<: *<%= ENV['DB'] || "sqlite" %>
22
11
 
23
12
  development:
24
- <<: *defaults
13
+ <<: *default
14
+ database: db/development.sqlite3
25
15
 
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
26
19
  test:
27
- <<: *defaults
20
+ <<: *default
21
+ database: db/test.sqlite3
28
22
 
29
23
  production:
30
- <<: *defaults
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -39,4 +39,7 @@ Rails.application.configure do
39
39
 
40
40
  # Raises error for missing translations
41
41
  # config.action_view.raise_on_missing_translations = true
42
+
43
+ config.action_mailer.default_url_options = {host: 'localhost:3000'}
44
+ config.active_job.queue_adapter = :inline
42
45
  end
@@ -0,0 +1,3 @@
1
+ Statesman.configure do
2
+ storage_adapter(Statesman::Adapters::ActiveRecord)
3
+ end
@@ -3,9 +3,7 @@ class CreatePictureFiles < ActiveRecord::Migration[4.2]
3
3
  create_table :picture_files do |t|
4
4
  t.integer :picture_attachable_id
5
5
  t.string :picture_attachable_type
6
- t.string :content_type
7
6
  t.text :title
8
- t.string :thumbnail
9
7
  t.integer :position
10
8
 
11
9
  t.timestamps
@@ -8,19 +8,11 @@ class AddTranslationTableToLibraryGroup < ActiveRecord::Migration[4.2]
8
8
  migrate_data: true
9
9
  })
10
10
  end
11
-
12
- if defined?(AwesomeHstoreTranslate)
13
- add_column :library_groups, :login_banner, :hstore
14
- end
15
11
  end
16
12
 
17
13
  def down
18
14
  if defined?(Globalize)
19
15
  LibraryGroup.drop_translation_table! migrate_data: true
20
16
  end
21
-
22
- if defined?(AwesomeHstoreTranslate)
23
- remove_column :library_groups, :login_banner
24
- end
25
17
  end
26
18
  end
@@ -0,0 +1,5 @@
1
+ class AddMemoToManifestation < ActiveRecord::Migration[5.2]
2
+ def change
3
+ add_column :manifestations, :memo, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddMemoToItem < ActiveRecord::Migration[5.2]
2
+ def change
3
+ add_column :items, :memo, :text
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ class CreateCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :custom_properties do |t|
4
+ t.integer :resource_id, null: false
5
+ t.string :resource_type, null: false
6
+ t.text :label, null: false
7
+ t.text :value
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateManifestationCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :manifestation_custom_properties do |t|
4
+ t.string :name, null: false, comment: 'ラベル名', index: {unique: true}
5
+ t.text :display_name, null: false, comment: '表示名'
6
+ t.text :note, comment: '備考'
7
+ t.integer :position, default: 1, null: false
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateItemCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :item_custom_properties do |t|
4
+ t.string :name, null: false, comment: 'ラベル名', index: {unique: true}
5
+ t.text :display_name, null: false, comment: '表示名'
6
+ t.text :note, comment: '備考'
7
+ t.integer :position, default: 1, null: false
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateManifestationCustomValues < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :manifestation_custom_values do |t|
4
+ t.references :manifestation_custom_property, null: false, foreign_key: true, index: {name: 'index_manifestation_custom_values_on_custom_property_id'}
5
+ t.references :manifestation, null: false, foreign_key: true
6
+ t.text :value
7
+
8
+ t.timestamps
9
+ end
10
+ add_index :manifestation_custom_values, [:manifestation_custom_property_id, :manifestation_id], unique: true, name: 'index_manifestation_custom_values_on_property_manifestation'
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateItemCustomValues < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :item_custom_values do |t|
4
+ t.references :item_custom_property, null: false, foreign_key: true, index: {name: 'index_item_custom_values_on_custom_property_id'}
5
+ t.references :item, null: false, foreign_key: true
6
+ t.text :value
7
+
8
+ t.timestamps
9
+ end
10
+ add_index :item_custom_values, [:item_custom_property_id, :item_id], unique: true, name: 'index_item_custom_values_on_custom_item_property_and_item_id'
11
+ end
12
+ end
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 20180107161410) do
13
+ ActiveRecord::Schema.define(version: 2020_04_25_074822) do
14
14
 
15
15
  create_table "accepts", force: :cascade do |t|
16
16
  t.integer "basket_id"
@@ -287,6 +287,15 @@ ActiveRecord::Schema.define(version: 20180107161410) do
287
287
  t.index ["work_id"], name: "index_creates_on_work_id"
288
288
  end
289
289
 
290
+ create_table "custom_properties", force: :cascade do |t|
291
+ t.integer "resource_id", null: false
292
+ t.string "resource_type", null: false
293
+ t.text "label", null: false
294
+ t.text "value"
295
+ t.datetime "created_at", null: false
296
+ t.datetime "updated_at", null: false
297
+ end
298
+
290
299
  create_table "donates", force: :cascade do |t|
291
300
  t.integer "agent_id", null: false
292
301
  t.integer "item_id", null: false
@@ -378,6 +387,27 @@ ActiveRecord::Schema.define(version: 20180107161410) do
378
387
  t.index ["user_id"], name: "index_import_requests_on_user_id"
379
388
  end
380
389
 
390
+ create_table "item_custom_properties", force: :cascade do |t|
391
+ t.string "name", null: false
392
+ t.text "display_name", null: false
393
+ t.text "note"
394
+ t.integer "position", default: 1, null: false
395
+ t.datetime "created_at", null: false
396
+ t.datetime "updated_at", null: false
397
+ t.index ["name"], name: "index_item_custom_properties_on_name", unique: true
398
+ end
399
+
400
+ create_table "item_custom_values", force: :cascade do |t|
401
+ t.integer "item_custom_property_id", null: false
402
+ t.integer "item_id", null: false
403
+ t.text "value"
404
+ t.datetime "created_at", null: false
405
+ t.datetime "updated_at", null: false
406
+ t.index ["item_custom_property_id", "item_id"], name: "index_item_custom_values_on_custom_item_property_and_item_id", unique: true
407
+ t.index ["item_custom_property_id"], name: "index_item_custom_values_on_custom_property_id"
408
+ t.index ["item_id"], name: "index_item_custom_values_on_item_id"
409
+ end
410
+
381
411
  create_table "items", force: :cascade do |t|
382
412
  t.string "call_number"
383
413
  t.string "item_identifier"
@@ -399,6 +429,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
399
429
  t.string "binding_call_number"
400
430
  t.datetime "binded_at"
401
431
  t.integer "manifestation_id", null: false
432
+ t.text "memo"
402
433
  t.index ["binding_item_identifier"], name: "index_items_on_binding_item_identifier"
403
434
  t.index ["bookstore_id"], name: "index_items_on_bookstore_id"
404
435
  t.index ["item_identifier"], name: "index_items_on_item_identifier"
@@ -500,6 +531,27 @@ ActiveRecord::Schema.define(version: 20180107161410) do
500
531
  t.datetime "updated_at"
501
532
  end
502
533
 
534
+ create_table "manifestation_custom_properties", force: :cascade do |t|
535
+ t.string "name", null: false
536
+ t.text "display_name", null: false
537
+ t.text "note"
538
+ t.integer "position", default: 1, null: false
539
+ t.datetime "created_at", null: false
540
+ t.datetime "updated_at", null: false
541
+ t.index ["name"], name: "index_manifestation_custom_properties_on_name", unique: true
542
+ end
543
+
544
+ create_table "manifestation_custom_values", force: :cascade do |t|
545
+ t.integer "manifestation_custom_property_id", null: false
546
+ t.integer "manifestation_id", null: false
547
+ t.text "value"
548
+ t.datetime "created_at", null: false
549
+ t.datetime "updated_at", null: false
550
+ t.index ["manifestation_custom_property_id", "manifestation_id"], name: "index_manifestation_custom_values_on_property_manifestation", unique: true
551
+ t.index ["manifestation_custom_property_id"], name: "index_manifestation_custom_values_on_custom_property_id"
552
+ t.index ["manifestation_id"], name: "index_manifestation_custom_values_on_manifestation_id"
553
+ end
554
+
503
555
  create_table "manifestation_relationship_types", force: :cascade do |t|
504
556
  t.string "name", null: false
505
557
  t.text "display_name"
@@ -581,6 +633,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
581
633
  t.text "publication_place"
582
634
  t.text "extent"
583
635
  t.text "dimensions"
636
+ t.text "memo"
584
637
  t.index ["access_address"], name: "index_manifestations_on_access_address"
585
638
  t.index ["date_of_publication"], name: "index_manifestations_on_date_of_publication"
586
639
  t.index ["doi"], name: "index_manifestations_on_doi"
@@ -686,9 +739,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
686
739
  create_table "picture_files", force: :cascade do |t|
687
740
  t.integer "picture_attachable_id"
688
741
  t.string "picture_attachable_type"
689
- t.string "content_type"
690
742
  t.text "title"
691
- t.string "thumbnail"
692
743
  t.integer "position"
693
744
  t.datetime "created_at"
694
745
  t.datetime "updated_at"
@@ -0,0 +1,130 @@
1
+ manifestation_id original_title title_alternative title_transcription statement_of_responsibility serial manifestation_identifier creator contributor publisher pub_date year_of_publication publication_place manifestation_created_at manifestation_updated_at carrier_type content_type frequency language isbn issn volume_number volume_number_string edition edition_string issue_number issue_number_string serial_number extent start_page end_page dimensions height width depth price access_address manifestation_required_role description note identifier:ncid series_statement_id series_statement_original_title series_statement_title_subseries series_statement_title_subseries_transcription series_statement_title_transcription series_statement_creator series_statement_volume_number series_statement_series_master series_statement_root_manifestation_id series_statement_manifestation_id series_statement_position series_statement_note series_statement_created_at series_statement_updated_at memo ncid item_id item_identifier binding_item_identifier call_number shelf item_note accepted_at acquired_at item_created_at item_updated_at bookstore budget_type item_required_role item_price memo
2
+ 1 よくわかる最新Webサービス技術 "" "" "" 2007-11-19 07:59:00 UTC 2007-11-19 07:59:00 UTC volume text unknown unknown "" "" 1 100 Guest 4798002062//12345678 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4798002062
3
+ 2 情報通信ハンドブック2005 "" "" "" 2007-11-19 07:59:01 UTC 2007-11-19 07:59:01 UTC volume text unknown unknown "" "" Guest 4915724824 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4915724824
4
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 "" "" "" 2007-11-19 07:59:02 UTC 2007-11-19 07:59:02 UTC volume text unknown unknown "" "" http://www.slis.keio.ac.jp/ Guest 4897063590 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4897063590
5
+ 4 THE BIOTECH INVESTOR'S BIBLE "" "" "" 2007-11-19 07:59:03 UTC 2007-11-19 07:59:03 UTC volume text unknown unknown "" "" Guest 0471412791 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 0471412791
6
+ 5 顧客満足型マーケティングの構図 "" "" "" 2007-11-19 07:59:04 UTC 2007-11-19 07:59:04 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
7
+ 6 仕組み革新の時代 "" "" "" 2007-11-19 07:59:05 UTC 2007-11-19 07:59:05 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
8
+ 7 dictionary of e-business "" "" "" 2007-11-19 07:59:06 UTC 2007-11-19 07:59:06 UTC volume text unknown unknown "" "" Guest 0470844701 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 0470844701
9
+ 8 Webサービス完全解説 "" "" "" 2007-11-19 07:59:07 UTC 2007-11-19 07:59:07 UTC volume text unknown unknown "" "" Guest 4798101028 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4798101028
10
+ 9 逐条解説不正競争防止法 "" "" "" 2007-11-19 07:59:08 UTC 2007-11-19 07:59:08 UTC volume text unknown unknown "" "" Guest 4641143331 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4641143331
11
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 "" "" "" 2007-11-19 07:59:09 UTC 2007-11-19 07:59:09 UTC volume text unknown unknown "" "" Guest 9784774127804 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784774127804
12
+ 11 Webサービス完全構築ガイド "" "" "" 2007-11-19 07:59:20 UTC 2007-11-19 07:59:20 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
13
+ 22 YouTube - Open Source ILS Song "" "" "" 2008-04-16 15:34:01 UTC 2007-11-19 07:59:21 UTC volume text unknown unknown "" "" http://jp.youtube.com/watch?v=BSHBzd9ftDE Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
14
+ 23 世界の美しい図書館集めてみた【第一弾】 "" "" "" 2007-11-19 07:58:58 UTC 2008-04-16 15:34:01 UTC volume text unknown unknown "" "" http://www.nicovideo.jp/watch/sm3015373 Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
15
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 "" "" "" 2010-02-21 06:47:09 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
16
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 "" "" "" 2010-02-21 05:57:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
17
+ 103 Perlクックブック. v.2 "" "" "" 2010-02-21 01:51:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
18
+ 104 Perlクックブック. v.1 "" "" "" 2010-02-21 01:51:33 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
19
+ 105 初めてのPerl. 続 "" "" "" 2010-02-21 01:48:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
20
+ 106 Perl & XML "" "" "" 2010-02-21 01:45:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
21
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集 "" "" "" 2010-02-21 00:59:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
22
+ 108 Perl 5パワフルテクニック大全集 "" "" "" 2010-02-20 23:13:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
23
+ 109 CGI/Perlパワープログラミング "" "" "" 2010-02-20 08:26:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
24
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング "" "" "" 2010-02-19 04:09:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
25
+ 111 すぐわかるPerl "" "" "" 2010-02-19 04:07:28 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
26
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう "" "" "" 2010-02-19 04:06:51 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
27
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java "" "" "" 2010-02-19 02:02:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
28
+ 114 Rubyを256倍使うための本. 魔道編 "" "" "" 2010-02-18 20:46:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784756137470 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784756137470
29
+ 115 入門Perl "" "" "" 2010-02-18 20:40:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
30
+ 116 sed & awkプログラミング : UNIX power tools "" "" "" 2010-02-18 20:39:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784756100917 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784756100917
31
+ 117 Perlの達人 "" "" "" 2010-02-18 01:23:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
32
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死 "" "" "" 2010-02-16 16:12:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
33
+ 119 Perl基礎講座 "" "" "" 2010-02-15 19:30:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
34
+ 120 Rubyプログラミング入門 "" "" "" 2010-02-15 19:29:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784274063855 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784274063855
35
+ 121 Django×Python "" "" "" 2010-01-29 21:22:35 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
36
+ 122 みんなのPython "" "" "" 2010-01-29 21:17:32 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
37
+ 123 Rubyでgroonga使って全文検索 - ラングバ "" "" "" 2009-10-25 04:20:34 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
38
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト) "" "" "" 2009-10-20 04:46:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
39
+ 125 Ruby on Rails入門 : 優しいRailsの育て方 "" "" "" 2009-10-15 20:16:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
40
+ 126 Ruby Cookbook "" "" "" 2009-06-29 03:44:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
41
+ 127 CGI programming on the World Wide Web "" "" "" 2009-06-19 04:45:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
42
+ 128 Genomic Perl "" "" "" 2009-06-19 04:27:46 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
43
+ 129 Indians of the Pacific Northwest "" "" "" 2009-06-19 03:16:23 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
44
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M "" "" "" 2009-06-19 03:03:29 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
45
+ 131 International Symposium Genes and Chromosomes Structure and Function "" "" "" 2009-06-19 03:02:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
46
+ 132 Perl black book, 2nd edition "" "" "" 2009-06-19 02:42:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
47
+ 133 Python scripting for computational science "" "" "" 2009-06-19 02:18:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
48
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills "" "" "" 2009-06-19 02:06:07 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
49
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm "" "" "" 2009-06-19 01:54:21 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
50
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words "" "" "" 2009-06-19 01:46:46 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
51
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond "" "" "" 2009-06-19 01:18:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
52
+ 138 CGI programming with Perl "" "" "" 2009-06-19 00:19:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
53
+ 139 Python and XML / Python &amp; XML / XML processing with Python "" "" "" 2009-06-19 00:19:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
54
+ 140 Perl cookbook / Solutions and examples for Perl programmers "" "" "" 2009-06-19 00:19:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
55
+ 141 Mastering Perl/Tk / Perl/Tk "" "" "" 2009-06-19 00:19:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
56
+ 142 Mastering algorithms with Perl / Practical programming through computer science "" "" "" 2009-06-19 00:18:58 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
57
+ 143 Programming Perl "" "" "" 2009-06-19 00:18:45 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
58
+ 144 Fort Worth &amp; Tarrant County / Fort Worth and Tarrant County "" "" "" 2009-06-18 22:49:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
59
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture) "" "" "" 2009-06-18 21:44:35 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
60
+ 146 AWK programming language "" "" "" 2009-06-18 21:28:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
61
+ 147 Toting the lead row "" "" "" 2009-06-18 17:16:22 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
62
+ 148 Afro-American blues and game songs "" "" "" 2009-06-18 17:09:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
63
+ 149 Perl/Tk pocket reference "" "" "" 2009-06-18 16:10:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
64
+ 150 politics of improving urban air quality "" "" "" 2009-06-18 15:42:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
65
+ 151 Perl developer's dictionary "" "" "" 2009-06-18 15:13:13 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
66
+ 152 Andrテδゥ Poitiers "" "" "" 2009-06-18 14:58:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
67
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide "" "" "" 2009-06-18 14:43:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
68
+ 154 Python tutorial "" "" "" 2009-06-18 14:17:40 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
69
+ 155 Line shapes of paramagnetic resonances in ruby "" "" "" 2009-06-18 13:44:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
70
+ 156 Perl programmer's reference "" "" "" 2009-06-18 13:19:34 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
71
+ 157 Technological capabilities in developing countries "" "" "" 2009-06-18 12:58:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
72
+ 158 phenomena of vagueness "" "" "" 2009-06-18 12:44:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
73
+ 159 theory of consumer's demand "" "" "" 2009-06-18 12:10:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
74
+ 160 theory of consumer's demand "" "" "" 2009-06-18 12:10:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
75
+ 161 Monty Python, Shakespeare, and English Renaissance drama "" "" "" 2009-06-18 11:37:58 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
76
+ 162 Analyzing computer system performance with PERL::PDQ "" "" "" 2009-06-18 11:29:54 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
77
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide "" "" "" 2009-06-18 11:16:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
78
+ 164 Stimulated optical emission in ruby "" "" "" 2009-06-18 11:05:25 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
79
+ 165 Strategic planning and risk analysis "" "" "" 2009-06-18 08:41:41 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
80
+ 166 Performance assertion checking "" "" "" 2009-06-18 08:34:03 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
81
+ 167 Spin-lattice relaxation time of ruby "" "" "" 2009-06-18 07:26:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
82
+ 168 Mourning Ruby "" "" "" 2009-06-18 07:25:25 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
83
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s "" "" "" 2009-06-18 06:53:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
84
+ 170 Professional Perl programming / Perl programming "" "" "" 2009-06-18 06:52:50 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
85
+ 171 Perl in a nutshell "" "" "" 2009-06-18 06:40:53 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
86
+ 172 Programming Web services with Perl "" "" "" 2009-06-18 06:34:21 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
87
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles "" "" "" 2009-06-18 06:08:06 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
88
+ 174 Europeras 3 &amp; 4 / Europera "" "" "" 2009-06-18 06:05:43 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
89
+ 175 Retreats from realism in recent English drama "" "" "" 2009-06-18 06:03:06 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
90
+ 176 Python programming patterns "" "" "" 2009-06-18 05:52:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
91
+ 177 Beginning Perl for bioinformatics "" "" "" 2009-06-18 04:45:13 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
92
+ 178 Learning Perl "" "" "" 2009-06-18 04:45:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
93
+ 179 Effective awk programming "" "" "" 2009-06-18 04:45:09 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
94
+ 180 Python standard library / Annotated reference for Python 2.0 "" "" "" 2009-06-18 04:45:04 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
95
+ 181 Programming Python "" "" "" 2009-06-18 04:45:04 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
96
+ 182 Perl CD bookshelf "" "" "" 2009-06-18 04:44:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
97
+ 183 Programming Perl "" "" "" 2009-06-18 04:44:55 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
98
+ 184 Sed &amp; awk pocket reference / Sed and awk pocket reference "" "" "" 2009-06-18 04:44:54 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
99
+ 185 Perl power! "" "" "" 2009-06-18 04:41:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
100
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com "" "" "" 2008-12-19 08:52:47 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
101
+ 187 Welcome ― Ruby Enterprise Edition "" "" "" 2008-10-19 06:58:50 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
102
+ 188 Pythonクックブック "" "" "" 2008-08-21 15:27:29 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
103
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python "" "" "" 2008-08-21 15:20:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
104
+ 190 Django | The Web framework for perfectionists with deadlines "" "" "" 2008-05-20 04:06:31 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
105
+ 191 fac-back-opac - Google Code "" "" "" 2008-05-19 13:36:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
106
+ 192 Rubyクックブック "" "" "" 2008-03-04 16:37:55 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784873113241 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784873113241
107
+ 193 Rubyレシピブック "" "" "" 2008-03-04 16:30:39 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 4797340045//9784797340044 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4797340045
108
+ 194 初めてのPerl 第3版 "" "" "" 2007-11-19 08:56:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
109
+ 195 続・初めてのPerl 改訂版 "" "" "" 2007-11-19 08:55:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
110
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784797336610 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784797336610
111
+ 197 Ruby "" "" "" 2007-11-19 08:55:41 UTC 2010-03-15 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
112
+ 198 紅玉の本 "" "" "" 2007-11-19 08:55:41 UTC 2010-03-15 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
113
+ 201 テスト雑誌2005年1月号 true "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text weekly unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
114
+ 202 テスト雑誌2月号 true "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text weekly unknown "" "" 1 2 2 Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
115
+ 203 テスト単行本記事2005 false "" "" "" 2010-03-03 08:00:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
116
+ 204 テスト雑誌1月号の記事1 2005 true "" "" "" 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
117
+ 205 テスト雑誌1月号の記事2 "" "" "" 1999-12-31 15:00:00 UTC 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
118
+ 206 テスト雑誌2月号の記事1 "" "" "" 2009-12-31 15:00:00 UTC 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
119
+ 207 試験単行本 "" "" "" 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
120
+ 208 ある出版物 "" "" "" 2010-03-16 02:00:00 UTC 2010-03-16 02:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
121
+ 209 権限確認Admin専用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
122
+ 210 権限確認Admin専用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
123
+ 211 権限確認Librarian以上用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Librarian "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
124
+ 212 権限確認Librarian以上用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Librarian "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
125
+ 213 権限確認User以上用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
126
+ 214 権限確認User以上用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
127
+ 215 権限確認 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
128
+ 216 権限確認 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
129
+ 217 manifestation_title_1 "" "" "" 2020-05-22 20:35:56 UTC 2020-05-22 20:35:56 UTC volume text unknown unknown "" "" Guest a11223344 "" "" "" "" "" "" "" "" "" "" "" "" "" "" a11223344
130
+ 218 manifestation_title_2 "" "" "" 2020-05-22 20:35:56 UTC 2020-05-22 20:35:56 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
@@ -0,0 +1,7 @@
1
+ FactoryBot.define do
2
+ factory :identifier do
3
+ sequence(:body){|n| "identifier_body_#{n}"}
4
+ identifier_type_id{FactoryBot.create(:identifier_type).id}
5
+ association(:manifestation)
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ FactoryBot.define do
2
+ factory :manifestation do |f|
3
+ f.sequence(:original_title){|n| "manifestation_title_#{n}"}
4
+ f.carrier_type_id{CarrierType.find(1).id}
5
+ end
6
+ end
@@ -0,0 +1,98 @@
1
+ ---
2
+ admin:
3
+ updated_at: 2008-05-31 13:16:30.163731 +09:00
4
+ user_group_id: 2
5
+ id: 1
6
+ user_id: 1
7
+ note:
8
+ library_id: 2
9
+ created_at: 2007-11-19 16:58:32.111941 +09:00
10
+ required_role_id: 4
11
+ user_number: "00001"
12
+ locale: "en"
13
+ librarian1:
14
+ updated_at: 2008-05-31 12:41:16.337474 +09:00
15
+ user_group_id: 1
16
+ id: 2
17
+ user_id: 2
18
+ note:
19
+ library_id: 1
20
+ created_at: 2007-11-19 16:58:33.172441 +09:00
21
+ required_role_id: 1
22
+ user_number: "00002"
23
+ locale: "ja"
24
+ user1:
25
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
26
+ user_group_id: 1
27
+ id: 3
28
+ user_id: 3
29
+ note:
30
+ library_id: 2
31
+ created_at: 2007-11-19 16:58:34.637413 +09:00
32
+ required_role_id: 3
33
+ user_number: "00003"
34
+ locale: "ja"
35
+ librarian2:
36
+ updated_at: 2008-05-31 12:42:23.340575 +09:00
37
+ user_group_id: 1
38
+ id: 4
39
+ user_id: 4
40
+ note:
41
+ library_id: 2
42
+ created_at: 2008-01-18 12:24:04.222344 +09:00
43
+ required_role_id: 1
44
+ user_number: "00004"
45
+ locale: "ja"
46
+ user2:
47
+ updated_at: 2008-05-31 12:42:44.711117 +09:00
48
+ user_group_id: 1
49
+ id: 5
50
+ user_id: 5
51
+ note:
52
+ library_id: 1
53
+ created_at: 2008-01-18 13:29:06.922728 +09:00
54
+ required_role_id: 2
55
+ # user_number: '00005'
56
+ locale: "ja"
57
+ user3:
58
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
59
+ user_group_id: 1
60
+ id: 6
61
+ user_id: 6
62
+ note:
63
+ library_id: 2
64
+ created_at: 2007-11-19 16:58:34.637413 +09:00
65
+ required_role_id: 3
66
+ user_number: "00006"
67
+ locale: "ja"
68
+ user4:
69
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
70
+ user_group_id: 1
71
+ id: 7
72
+ user_id: 7
73
+ note:
74
+ library_id: 2
75
+ created_at: 2007-11-19 16:58:34.637413 +09:00
76
+ required_role_id: 3
77
+ user_number: "00007"
78
+ locale: "ja"
79
+
80
+ # == Schema Information
81
+ #
82
+ # Table name: profiles
83
+ #
84
+ # id :integer not null, primary key
85
+ # user_id :integer
86
+ # user_group_id :integer
87
+ # library_id :integer
88
+ # locale :string(255)
89
+ # user_number :string(255)
90
+ # full_name :text
91
+ # note :text
92
+ # keyword_list :text
93
+ # required_role_id :integer
94
+ # created_at :datetime not null
95
+ # updated_at :datetime not null
96
+ # checkout_icalendar_token :string(255)
97
+ # save_checkout_history :boolean default(FALSE), not null
98
+ #
@@ -0,0 +1,38 @@
1
+ require 'rails_helper'
2
+
3
+ describe ResourceExportFile do
4
+ fixtures :all
5
+
6
+ it "should export ncid" do
7
+ manifestation = FactoryBot.create(:manifestation)
8
+ type = IdentifierType.find_or_create_by(name: "ncid")
9
+ identifier = FactoryBot.create(:identifier, identifier_type: type, body: "a11223344")
10
+ manifestation.identifiers << identifier
11
+ export_file = ResourceExportFile.new
12
+ export_file.user = users(:admin)
13
+ export_file.save!
14
+ export_file.export!
15
+ file = export_file.resource_export
16
+ CSV.open(file.path, {headers: true, col_sep: "\t"}).each do |row|
17
+ expect(row).to have_key "ncid"
18
+ if row['manifestation_id'] == identifier.manifestation_id
19
+ expect(row["ncid"]).to eq identifier.body
20
+ end
21
+ end
22
+ end
23
+ end
24
+
25
+ # == Schema Information
26
+ #
27
+ # Table name: resource_export_files
28
+ #
29
+ # id :integer not null, primary key
30
+ # user_id :integer
31
+ # resource_export_file_name :string
32
+ # resource_export_content_type :string
33
+ # resource_export_file_size :integer
34
+ # resource_export_updated_at :datetime
35
+ # executed_at :datetime
36
+ # created_at :datetime
37
+ # updated_at :datetime
38
+ #
@@ -8,6 +8,7 @@ ENV["RAILS_ENV"] ||= 'test'
8
8
  require File.expand_path("../dummy/config/environment", __FILE__)
9
9
  require 'rspec/rails'
10
10
  require 'vcr'
11
+ require 'factory_bot_rails'
11
12
 
12
13
  # Requires supporting ruby files with custom matchers and macros, etc,
13
14
  # in spec/support/ and its subdirectories.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_nii
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kosuke Tanabe
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-29 00:00:00.000000000 Z
11
+ date: 2020-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enju_subject
@@ -16,14 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.3.0
19
+ version: 0.3.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.3.0
26
+ version: 0.3.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: enju_biblio
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.10
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.3.10
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: faraday_middleware
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +58,28 @@ dependencies:
44
58
  requirements:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
- version: 1.3.0.rc.1
61
+ version: 1.3.4
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.3.4
69
+ - !ruby/object:Gem::Dependency
70
+ name: enju_message
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.3.3
48
76
  type: :development
49
77
  prerelease: false
50
78
  version_requirements: !ruby/object:Gem::Requirement
51
79
  requirements:
52
80
  - - "~>"
53
81
  - !ruby/object:Gem::Version
54
- version: 1.3.0.rc.1
82
+ version: 0.3.3
55
83
  - !ruby/object:Gem::Dependency
56
84
  name: sqlite3
57
85
  requirement: !ruby/object:Gem::Requirement
@@ -100,28 +128,28 @@ dependencies:
100
128
  requirements:
101
129
  - - "~>"
102
130
  - !ruby/object:Gem::Version
103
- version: '3.7'
131
+ version: '4.0'
104
132
  type: :development
105
133
  prerelease: false
106
134
  version_requirements: !ruby/object:Gem::Requirement
107
135
  requirements:
108
136
  - - "~>"
109
137
  - !ruby/object:Gem::Version
110
- version: '3.7'
138
+ version: '4.0'
111
139
  - !ruby/object:Gem::Dependency
112
140
  name: vcr
113
141
  requirement: !ruby/object:Gem::Requirement
114
142
  requirements:
115
143
  - - "~>"
116
144
  - !ruby/object:Gem::Version
117
- version: '4.0'
145
+ version: '6.0'
118
146
  type: :development
119
147
  prerelease: false
120
148
  version_requirements: !ruby/object:Gem::Requirement
121
149
  requirements:
122
150
  - - "~>"
123
151
  - !ruby/object:Gem::Version
124
- version: '4.0'
152
+ version: '6.0'
125
153
  - !ruby/object:Gem::Dependency
126
154
  name: webmock
127
155
  requirement: !ruby/object:Gem::Requirement
@@ -150,6 +178,20 @@ dependencies:
150
178
  - - ">="
151
179
  - !ruby/object:Gem::Version
152
180
  version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: sunspot_solr
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '2.5'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '2.5'
153
195
  - !ruby/object:Gem::Dependency
154
196
  name: appraisal
155
197
  requirement: !ruby/object:Gem::Requirement
@@ -166,6 +208,62 @@ dependencies:
166
208
  version: '0'
167
209
  - !ruby/object:Gem::Dependency
168
210
  name: coveralls
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: 0.8.23
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: 0.8.23
223
+ - !ruby/object:Gem::Dependency
224
+ name: annotate
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: sprockets
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: '3.7'
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: '3.7'
251
+ - !ruby/object:Gem::Dependency
252
+ name: rails
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - "~>"
256
+ - !ruby/object:Gem::Version
257
+ version: '5.2'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - "~>"
263
+ - !ruby/object:Gem::Version
264
+ version: '5.2'
265
+ - !ruby/object:Gem::Dependency
266
+ name: factory_bot_rails
169
267
  requirement: !ruby/object:Gem::Requirement
170
268
  requirements:
171
269
  - - ">="
@@ -186,7 +284,7 @@ extensions: []
186
284
  extra_rdoc_files: []
187
285
  files:
188
286
  - MIT-LICENSE
189
- - README.rdoc
287
+ - README.md
190
288
  - Rakefile
191
289
  - app/assets/config/enju_nii_manifest.js
192
290
  - app/controllers/cinii_books_controller.rb
@@ -235,6 +333,7 @@ files:
235
333
  - spec/dummy/app/assets/stylesheets/application.css
236
334
  - spec/dummy/app/controllers/application_controller.rb
237
335
  - spec/dummy/app/helpers/application_helper.rb
336
+ - spec/dummy/app/models/application_record.rb
238
337
  - spec/dummy/app/models/user.rb
239
338
  - spec/dummy/app/views/layouts/application.html.erb
240
339
  - spec/dummy/bin/bundle
@@ -262,6 +361,7 @@ files:
262
361
  - spec/dummy/config/initializers/mime_types.rb
263
362
  - spec/dummy/config/initializers/secret_token.rb
264
363
  - spec/dummy/config/initializers/session_store.rb
364
+ - spec/dummy/config/initializers/statesman.rb
265
365
  - spec/dummy/config/initializers/wrap_parameters.rb
266
366
  - spec/dummy/config/locales/en.yml
267
367
  - spec/dummy/config/puma.rb
@@ -449,11 +549,21 @@ files:
449
549
  - spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb
450
550
  - spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb
451
551
  - spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb
552
+ - spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb
553
+ - spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb
554
+ - spec/dummy/db/migrate/20191219122214_create_custom_properties.rb
555
+ - spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb
556
+ - spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb
557
+ - spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb
558
+ - spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb
452
559
  - spec/dummy/db/schema.rb
560
+ - spec/dummy/private/system/resource_export_files/resource_exports/000/000/001/original/resource_export.txt
453
561
  - spec/dummy/public/404.html
454
562
  - spec/dummy/public/422.html
455
563
  - spec/dummy/public/500.html
456
564
  - spec/dummy/public/favicon.ico
565
+ - spec/factories/identifier.rb
566
+ - spec/factories/manifestation.rb
457
567
  - spec/fixtures/agent_types.yml
458
568
  - spec/fixtures/carrier_types.yml
459
569
  - spec/fixtures/content_types.yml
@@ -464,11 +574,13 @@ files:
464
574
  - spec/fixtures/library_groups.yml
465
575
  - spec/fixtures/manifestations.yml
466
576
  - spec/fixtures/nii_types.yml
577
+ - spec/fixtures/profiles.yml
467
578
  - spec/fixtures/roles.yml
468
579
  - spec/fixtures/subject_types.yml
469
580
  - spec/fixtures/user_has_roles.yml
470
581
  - spec/fixtures/users.yml
471
582
  - spec/models/cinii_book_spec.rb
583
+ - spec/models/resource_export_file_spec.rb
472
584
  - spec/rails_helper.rb
473
585
  - spec/spec_helper.rb
474
586
  - spec/support/controller_macros.rb
@@ -477,7 +589,7 @@ files:
477
589
  homepage: https://github.com/next-l/enju_nii
478
590
  licenses: []
479
591
  metadata: {}
480
- post_install_message:
592
+ post_install_message:
481
593
  rdoc_options: []
482
594
  require_paths:
483
595
  - lib
@@ -492,13 +604,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
492
604
  - !ruby/object:Gem::Version
493
605
  version: '0'
494
606
  requirements: []
495
- rubyforge_project:
496
- rubygems_version: 2.6.14.3
497
- signing_key:
607
+ rubygems_version: 3.0.3
608
+ signing_key:
498
609
  specification_version: 4
499
610
  summary: enju_nii plugin
500
611
  test_files:
501
612
  - spec/spec_helper.rb
613
+ - spec/dummy/app/models/application_record.rb
502
614
  - spec/dummy/app/models/user.rb
503
615
  - spec/dummy/app/controllers/application_controller.rb
504
616
  - spec/dummy/app/views/layouts/application.html.erb
@@ -531,6 +643,7 @@ test_files:
531
643
  - spec/dummy/config/initializers/session_store.rb
532
644
  - spec/dummy/config/initializers/wrap_parameters.rb
533
645
  - spec/dummy/config/initializers/assets.rb
646
+ - spec/dummy/config/initializers/statesman.rb
534
647
  - spec/dummy/config/initializers/cookies_serializer.rb
535
648
  - spec/dummy/config/initializers/devise.rb
536
649
  - spec/dummy/config/initializers/secret_token.rb
@@ -541,6 +654,7 @@ test_files:
541
654
  - spec/dummy/public/422.html
542
655
  - spec/dummy/public/500.html
543
656
  - spec/dummy/public/404.html
657
+ - spec/dummy/private/system/resource_export_files/resource_exports/000/000/001/original/resource_export.txt
544
658
  - spec/dummy/db/schema.rb
545
659
  - spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb
546
660
  - spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb
@@ -553,6 +667,7 @@ test_files:
553
667
  - spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb
554
668
  - spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb
555
669
  - spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb
670
+ - spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb
556
671
  - spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb
557
672
  - spec/dummy/db/migrate/20111124110355_create_produce_types.rb
558
673
  - spec/dummy/db/migrate/20090719201843_create_extents.rb
@@ -562,6 +677,7 @@ test_files:
562
677
  - spec/dummy/db/migrate/20140518111006_create_message_transitions.rb
563
678
  - spec/dummy/db/migrate/124_create_bookstores.rb
564
679
  - spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb
680
+ - spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb
565
681
  - spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb
566
682
  - spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb
567
683
  - spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb
@@ -612,6 +728,7 @@ test_files:
612
728
  - spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb
613
729
  - spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb
614
730
  - spec/dummy/db/migrate/080_create_library_groups.rb
731
+ - spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb
615
732
  - spec/dummy/db/migrate/20091214131723_create_series_statements.rb
616
733
  - spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb
617
734
  - spec/dummy/db/migrate/20081025083323_create_countries.rb
@@ -635,6 +752,7 @@ test_files:
635
752
  - spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb
636
753
  - spec/dummy/db/migrate/20100129142347_create_import_requests.rb
637
754
  - spec/dummy/db/migrate/125_create_donates.rb
755
+ - spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb
638
756
  - spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb
639
757
  - spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb
640
758
  - spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb
@@ -678,6 +796,7 @@ test_files:
678
796
  - spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb
679
797
  - spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb
680
798
  - spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb
799
+ - spec/dummy/db/migrate/20191219122214_create_custom_properties.rb
681
800
  - spec/dummy/db/migrate/117_create_form_of_works.rb
682
801
  - spec/dummy/db/migrate/20080819181903_create_message_requests.rb
683
802
  - spec/dummy/db/migrate/20130506175834_create_identifiers.rb
@@ -709,11 +828,13 @@ test_files:
709
828
  - spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb
710
829
  - spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb
711
830
  - spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb
831
+ - spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb
712
832
  - spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb
713
833
  - spec/dummy/db/migrate/145_create_subject_heading_types.rb
714
834
  - spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb
715
835
  - spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb
716
836
  - spec/dummy/db/migrate/20160813191733_add_family_name_first_to_library_group.rb
837
+ - spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb
717
838
  - spec/dummy/db/migrate/120_create_baskets.rb
718
839
  - spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb
719
840
  - spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb
@@ -729,11 +850,15 @@ test_files:
729
850
  - spec/cassette_library/CiniiBook/should_import_a_bibliographic_record_with_dual_languages.yml
730
851
  - spec/cassette_library/cinii_books/index/cinii_books_search_menu/should_reflect_query_params_for_views.yml
731
852
  - spec/cassette_library/CiniiBooksController/GET_index/should_get_index.yml
853
+ - spec/models/resource_export_file_spec.rb
732
854
  - spec/models/cinii_book_spec.rb
733
855
  - spec/support/controller_macros.rb
734
856
  - spec/support/devise.rb
857
+ - spec/factories/identifier.rb
858
+ - spec/factories/manifestation.rb
735
859
  - spec/fixtures/content_types.yml
736
860
  - spec/fixtures/identifiers.yml
861
+ - spec/fixtures/profiles.yml
737
862
  - spec/fixtures/countries.yml
738
863
  - spec/fixtures/agent_types.yml
739
864
  - spec/fixtures/users.yml
@@ -1,38 +0,0 @@
1
- = EnjuNii
2
- {<img src="https://travis-ci.org/next-l/enju_nii.svg?branch=1.3" alt="Build Status" />}[https://travis-ci.org/next-l/enju_nii]
3
- {<img src="https://coveralls.io/repos/next-l/enju_nii/badge.svg?branch=1.3&service=github" alt="Coverage Status" />}[https://coveralls.io/github/next-l/enju_nii?branch=1.3]
4
- {<img src="https://hakiri.io/github/next-l/enju_nii/1.3.svg" alt="security" />}[https://hakiri.io/github/next-l/enju_nii/1.3]
5
-
6
- CiNii Booksから書誌をインポートするための Enju プラグインです。
7
-
8
- == インストール方法 / How to Install
9
-
10
- お使いのenju_leafのGemfile に以下の行を追加してください。
11
-
12
- gem 'enju_nii', github: "next-l/enju_nii", branch: '1.3'
13
-
14
- gemをインストールします。
15
-
16
- $ bundle update
17
-
18
- インストールが完了したら、以下のコマンドでセットアップを行います。
19
-
20
- $ rake enju_nii_engine:install:migrations
21
- $ rake enju_nii:setup
22
-
23
- データベースを更新します。
24
-
25
- $ rake db:migrate
26
-
27
- その後、Enjuを再起動してください。
28
-
29
- \http://(Enjuのホスト)/cinii_books/ にアクセスすると、
30
- CiNii Books検索によるインポート機能が利用できます。
31
-
32
- == ライセンス / License
33
-
34
- This project rocks and uses MIT-LICENSE.
35
-
36
- == 製作者・貢献者 (Authors and contributors)
37
- * {TANABE, Kosuke}[https://github.com/nabeta] ({@nabeta}[https://twitter.com/nabeta])
38
- * {Project Next-L}[https://www.next-l.jp] ({@ProjectNextL}[https://twitter.com/ProjectNextL])