enju_circulation 0.1.0.pre9 → 0.1.0.pre10

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 (31) hide show
  1. data/app/models/checked_item.rb +8 -2
  2. data/app/models/checkin.rb +4 -0
  3. data/config/locales/translation_en.yml +1 -0
  4. data/config/locales/translation_ja.yml +1 -0
  5. data/lib/enju_circulation/version.rb +1 -1
  6. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  7. data/spec/dummy/db/schema.rb +2 -0
  8. data/spec/dummy/db/test.sqlite3 +0 -0
  9. data/spec/dummy/solr/data/test/index/{_db.tis → _m7.tis} +0 -0
  10. data/spec/dummy/solr/data/test/index/segments.gen +0 -0
  11. data/spec/dummy/solr/data/test/index/{segments_rr → segments_19j} +0 -0
  12. data/spec/factories/user.rb +1 -1
  13. data/spec/fixtures/circulation_statuses.yml +53 -74
  14. data/spec/fixtures/exemplifies.yml +6 -0
  15. data/spec/fixtures/item_has_use_restrictions.yml +10 -4
  16. data/spec/fixtures/items.yml +10 -0
  17. data/spec/fixtures/lending_policies.yml +7 -0
  18. data/spec/fixtures/manifestations.yml +0 -6
  19. data/spec/fixtures/reserves.yml +1 -0
  20. data/spec/fixtures/use_restrictions.yml +1 -1
  21. data/spec/models/checked_item_spec.rb +9 -0
  22. data/spec/models/user_group_has_checkout_type_spec.rb +2 -2
  23. data/spec/spec_helper.rb +3 -0
  24. metadata +40 -22
  25. /data/spec/dummy/solr/data/test/index/{_db.fdt → _m7.fdt} +0 -0
  26. /data/spec/dummy/solr/data/test/index/{_db.fdx → _m7.fdx} +0 -0
  27. /data/spec/dummy/solr/data/test/index/{_db.fnm → _m7.fnm} +0 -0
  28. /data/spec/dummy/solr/data/test/index/{_db.frq → _m7.frq} +0 -0
  29. /data/spec/dummy/solr/data/test/index/{_db.nrm → _m7.nrm} +0 -0
  30. /data/spec/dummy/solr/data/test/index/{_db.prx → _m7.prx} +0 -0
  31. /data/spec/dummy/solr/data/test/index/{_db.tii → _m7.tii} +0 -0
@@ -26,8 +26,14 @@ class CheckedItem < ActiveRecord::Base
26
26
  end
27
27
 
28
28
  unless item.available_for_checkout?
29
- errors[:base] << I18n.t('activerecord.errors.messages.checked_item.not_available_for_checkout')
30
- return false
29
+ if item.circulation_status.name == 'Missing'
30
+ item.circulation_status = CirculationStatus.where(:name => 'Available On Shelf').first
31
+ item.save
32
+ set_due_date
33
+ else
34
+ errors[:base] << I18n.t('activerecord.errors.messages.checked_item.not_available_for_checkout')
35
+ return false
36
+ end
31
37
  end
32
38
 
33
39
  if item_checkout_type.blank?
@@ -55,6 +55,10 @@ class Checkin < ActiveRecord::Base
55
55
  message << I18n.t('item.this_item_include_supplement')
56
56
  end
57
57
 
58
+ if item.circulation_status.name == 'Missing'
59
+ message << I18n.t('checkout.missing_item_found')
60
+ end
61
+
58
62
  # メールとメッセージの送信
59
63
  #ReservationNotifier.deliver_reserved(item.manifestation.reserves.first.user, item.manifestation)
60
64
  #Message.create(:sender => current_user, :receiver => item.manifestation.next_reservation.user, :subject => message_template.title, :body => message_template.body, :recipient => item.manifestation.next_reservation.user)
@@ -151,6 +151,7 @@ en:
151
151
  already_checked_in: "This item is already checked in."
152
152
  checkin: "Checkin!"
153
153
  successfully_checked_in: "This items was successfully checked in."
154
+ missing_item_found: "A missing item is found."
154
155
  reserve:
155
156
  user_reserve: "%{login_name}'s reservations"
156
157
  library_group_reserve: "Reservations in %{library_group_name}"
@@ -149,6 +149,7 @@ ja:
149
149
  already_checked_in: "この資料はすでに返却されています。"
150
150
  checkin: "返却(取り消しはできません)"
151
151
  successfully_checked_in: "この資料は正常に返却されました。"
152
+ missing_item_found: "行方不明だった資料が見つかりました。"
152
153
  reserve:
153
154
  user_reserve: "%{login_name} さんの予約資料"
154
155
  library_group_reserve: "%{library_group_name} での予約資料"
@@ -1,3 +1,3 @@
1
1
  module EnjuCirculation
2
- VERSION = "0.1.0.pre9"
2
+ VERSION = "0.1.0.pre10"
3
3
  end
@@ -0,0 +1,6 @@
1
+ class AddDoiToManifestation < ActiveRecord::Migration
2
+ def change
3
+ add_column :manifestations, :doi, :string
4
+ add_index :manifestations, :doi
5
+ end
6
+ end
@@ -455,10 +455,12 @@ ActiveRecord::Schema.define(:version => 20121119153944) do
455
455
  t.integer "volume_number"
456
456
  t.integer "issue_number"
457
457
  t.integer "serial_number"
458
+ t.string "doi"
458
459
  end
459
460
 
460
461
  add_index "manifestations", ["access_address"], :name => "index_manifestations_on_access_address"
461
462
  add_index "manifestations", ["carrier_type_id"], :name => "index_manifestations_on_carrier_type_id"
463
+ add_index "manifestations", ["doi"], :name => "index_manifestations_on_doi"
462
464
  add_index "manifestations", ["frequency_id"], :name => "index_manifestations_on_frequency_id"
463
465
  add_index "manifestations", ["isbn"], :name => "index_manifestations_on_isbn"
464
466
  add_index "manifestations", ["issn"], :name => "index_manifestations_on_issn"
Binary file
@@ -27,7 +27,7 @@ FactoryGirl.define do
27
27
  f.role {Role.find_by_name('User')}
28
28
  f.password 'userpassword'
29
29
  f.password_confirmation 'userpassword'
30
- f.user_group {UserGroup.first}
30
+ f.user_group {UserGroup.find(2)}
31
31
  f.required_role {Role.find_by_name('User')}
32
32
  f.sequence(:user_number){|n| "user_number_#{n}"}
33
33
  end
@@ -1,127 +1,106 @@
1
1
  ---
2
+ circulation_status_00001:
3
+ name: Available For Pickup
4
+ display_name: "en: Available For Pickup\r\n\
5
+ ja: 持ち出し可能"
6
+ id: 1
7
+ note: ""
8
+ position: 1
9
+ circulation_status_00002:
10
+ name: Available On Shelf
11
+ display_name: "en: Available on Shelf\r\n\
12
+ ja: 在架(利用可能)"
13
+ id: 2
14
+ note: ""
15
+ position: 2
16
+ circulation_status_00003:
17
+ name: Circulation Status Undefined
18
+ display_name: Circulation Status Undefined
19
+ id: 3
20
+ note: ""
21
+ position: 3
22
+ circulation_status_00004:
23
+ name: Claimed Returned Or Never Borrowed
24
+ display_name: Claimed Returned Or Never Borrowed
25
+ id: 4
26
+ note: ""
27
+ position: 4
2
28
  circulation_status_00005:
3
29
  name: In Process
4
- display_name: In Process
5
- updated_at: 2008-02-15 17:31:42.422676 +09:00
30
+ display_name: "en: In Process\r\n\
31
+ ja: 作業中"
6
32
  id: 5
7
33
  note: ""
8
- created_at: 2008-02-15 17:31:42.422676 +09:00
9
34
  position: 5
10
35
  circulation_status_00006:
11
36
  name: In Transit Between Library Locations
12
37
  display_name: In Transit Between Library Locations
13
- updated_at: 2008-02-15 17:31:51.227056 +09:00
14
38
  id: 6
15
39
  note: ""
16
- created_at: 2008-02-15 17:31:51.227056 +09:00
17
40
  position: 6
18
41
  circulation_status_00007:
19
42
  name: Lost
20
- display_name: Lost
21
- updated_at: 2008-02-15 17:31:58.627987 +09:00
43
+ display_name: "en: Lost\r\n\
44
+ ja: 紛失"
22
45
  id: 7
23
46
  note: ""
24
- created_at: 2008-02-15 17:31:58.627987 +09:00
25
47
  position: 7
26
48
  circulation_status_00008:
27
49
  name: Missing
28
- display_name: Missing
29
- updated_at: 2008-02-15 17:32:07.006541 +09:00
50
+ display_name: "en: Missing\r\n\
51
+ ja: 行方不明"
30
52
  id: 8
31
53
  note: ""
32
- created_at: 2008-02-15 17:32:07.006541 +09:00
33
54
  position: 8
34
- circulation_status_00010:
35
- name: On Loan
36
- display_name: On Loan
37
- updated_at: 2008-02-15 17:32:22.969896 +09:00
38
- id: 10
39
- note: ""
40
- created_at: 2008-02-15 17:32:22.969896 +09:00
41
- position: 10
42
55
  circulation_status_00009:
43
56
  name: Not Available
44
- display_name: Not Available
45
- updated_at: 2008-02-15 17:32:15.454067 +09:00
57
+ display_name: "en: Not Available\r\n\
58
+ ja: 利用不可"
46
59
  id: 9
47
60
  note: ""
48
- created_at: 2008-02-15 17:32:15.454067 +09:00
49
61
  position: 9
62
+ circulation_status_00010:
63
+ name: On Loan
64
+ display_name: "en: On Loan\r\n\
65
+ ja: 貸出中"
66
+ id: 10
67
+ note: ""
68
+ position: 10
50
69
  circulation_status_00011:
51
70
  name: On Order
52
71
  display_name: On Order
53
- updated_at: 2008-02-15 17:32:30.675735 +09:00
54
72
  id: 11
55
73
  note: ""
56
- created_at: 2008-02-15 17:32:30.675735 +09:00
57
74
  position: 11
58
75
  circulation_status_00012:
59
76
  name: Pending Transfer
60
77
  display_name: Pending Transfer
61
- updated_at: 2008-02-15 17:32:39.395000 +09:00
62
78
  id: 12
63
79
  note: ""
64
- created_at: 2008-02-15 17:32:39.395000 +09:00
65
80
  position: 12
66
- circulation_status_00001:
67
- name: Available For Pickup
68
- display_name: Available For Pickup
69
- updated_at: 2008-02-15 17:31:10.588524 +09:00
70
- id: 1
71
- note: ""
72
- created_at: 2008-02-15 17:31:10.588524 +09:00
73
- position: 1
74
- circulation_status_00002:
75
- name: Available On Shelf
76
- display_name: Available On Shelf
77
- updated_at: 2008-02-15 17:31:18.946298 +09:00
78
- id: 2
79
- note: ""
80
- created_at: 2008-02-15 17:31:18.946298 +09:00
81
- position: 2
82
81
  circulation_status_00013:
83
82
  name: Recalled
84
83
  display_name: Recalled
85
- updated_at: 2008-02-15 17:32:48.355304 +09:00
86
84
  id: 13
87
85
  note: ""
88
- created_at: 2008-02-15 17:32:48.355304 +09:00
89
86
  position: 13
90
87
  circulation_status_00014:
91
88
  name: Waiting To Be Reshelved
92
89
  display_name: Waiting To Be Reshelved
93
- updated_at: 2008-02-15 17:32:59.078750 +09:00
94
90
  id: 14
95
91
  note: ""
96
- created_at: 2008-02-15 17:32:59.078750 +09:00
97
92
  position: 14
98
- circulation_status_00003:
99
- name: Circulation Status Undefined
100
- display_name: Circulation Status Undefined
101
- updated_at: 2008-02-15 17:31:26.564769 +09:00
102
- id: 3
93
+ circulation_status_00015:
94
+ name: Not arrived
95
+ display_name: "en: Not arrived\r\n\
96
+ ja: 未着"
97
+ id: 15
103
98
  note: ""
104
- created_at: 2008-02-15 17:31:26.564769 +09:00
105
- position: 3
106
- circulation_status_00004:
107
- name: Claimed Returned Or Never Borrowed
108
- display_name: Claimed Returned Or Never Borrowed
109
- updated_at: 2008-02-15 17:31:35.786404 +09:00
110
- id: 4
99
+ position: 15
100
+ circulation_status_00016:
101
+ name: Removed
102
+ display_name: "en: Removed\r\n\
103
+ ja: 除籍済み"
104
+ id: 16
111
105
  note: ""
112
- created_at: 2008-02-15 17:31:35.786404 +09:00
113
- position: 4
114
-
115
- # == Schema Information
116
- #
117
- # Table name: circulation_statuses
118
- #
119
- # id :integer not null, primary key
120
- # name :string(255) not null
121
- # display_name :text
122
- # note :text
123
- # position :integer
124
- # created_at :datetime not null
125
- # updated_at :datetime not null
126
- #
127
-
106
+ position: 16
@@ -139,6 +139,12 @@ exemplify_00023:
139
139
  manifestation_id: 11
140
140
  id: 23
141
141
  created_at: 2008-01-11 02:44:37.135721 +09:00
142
+ exemplify_00024:
143
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
144
+ item_id: 24
145
+ manifestation_id: 3
146
+ id: 24
147
+ created_at: 2008-01-11 02:44:37.135721 +09:00
142
148
 
143
149
 
144
150
  # == Schema Information
@@ -21,25 +21,31 @@ item_has_use_restriction_00004:
21
21
  item_id: 17
22
22
  updated_at: 2008-02-13 12:29:36.013448 +09:00
23
23
  id: 4
24
- use_restriction_id: 6
24
+ use_restriction_id: 4
25
25
  created_at: 2008-02-13 12:29:36.013448 +09:00
26
26
  item_has_use_restriction_00005:
27
27
  item_id: 21
28
28
  updated_at: 2008-02-13 12:29:36.013448 +09:00
29
29
  id: 5
30
- use_restriction_id: 6
30
+ use_restriction_id: 4
31
31
  created_at: 2008-02-13 12:29:36.013448 +09:00
32
32
  item_has_use_restriction_00006:
33
33
  item_id: 11
34
34
  updated_at: 2008-02-13 12:29:36.013448 +09:00
35
35
  id: 6
36
- use_restriction_id: 6
36
+ use_restriction_id: 4
37
37
  created_at: 2008-02-13 12:29:36.013448 +09:00
38
38
  item_has_use_restriction_00007:
39
39
  item_id: 6
40
40
  updated_at: 2008-02-13 12:29:36.013448 +09:00
41
41
  id: 7
42
- use_restriction_id: 6
42
+ use_restriction_id: 4
43
+ created_at: 2008-02-13 12:29:36.013448 +09:00
44
+ item_has_use_restriction_00008:
45
+ item_id: 24
46
+ updated_at: 2008-02-13 12:29:36.013448 +09:00
47
+ id: 8
48
+ use_restriction_id: 4
43
49
  created_at: 2008-02-13 12:29:36.013448 +09:00
44
50
 
45
51
  # == Schema Information
@@ -229,6 +229,16 @@ item_00023:
229
229
  id: 23
230
230
  include_supplements: false
231
231
  created_at: 2007-08-24 23:46:20.484813 +09:00
232
+ item_00024:
233
+ updated_at: 2007-08-24 23:46:20.484813 +09:00
234
+ item_identifier: '00024'
235
+ circulation_status_id: 8
236
+ checkout_type_id: 3
237
+ shelf_id: 2
238
+ call_number:
239
+ id: 24
240
+ include_supplements: false
241
+ created_at: 2007-08-24 23:46:20.484813 +09:00
232
242
 
233
243
 
234
244
  # == Schema Information
@@ -72,6 +72,13 @@ lending_policy_00008:
72
72
  fixed_due_date:
73
73
  renewal: 1
74
74
  fine: 10
75
+ lending_policy_00009:
76
+ item_id: 24
77
+ user_group_id: 2
78
+ loan_period: 1
79
+ fixed_due_date:
80
+ renewal: 1
81
+ fine: 10
75
82
 
76
83
  # == Schema Information
77
84
  #
@@ -1943,12 +1943,6 @@ manifestation_00216:
1943
1943
  repository_content: false
1944
1944
 
1945
1945
 
1946
-
1947
-
1948
-
1949
-
1950
-
1951
-
1952
1946
  # == Schema Information
1953
1947
  #
1954
1948
  # Table name: manifestations
@@ -137,6 +137,7 @@ reserve_00015:
137
137
  expired_at: <%= 1.day.from_now %>
138
138
  state: requested
139
139
 
140
+
140
141
  # == Schema Information
141
142
  #
142
143
  # Table name: reserves
@@ -17,7 +17,7 @@ use_restriction_00003:
17
17
  id: 3
18
18
  position: 3
19
19
  note: ""
20
- use_restriction_00003:
20
+ use_restriction_00004:
21
21
  name: Limited Circulation, Normal Loan Period
22
22
  display_name: Limited Circulation, Normal Loan Period
23
23
  id: 4
@@ -7,6 +7,15 @@ describe CheckedItem do
7
7
  it "should respond to available_for_checkout?" do
8
8
  checked_items(:checked_item_00001).available_for_checkout?.should_not be_true
9
9
  end
10
+
11
+ it "should change circulation_status when a missing item is found" do
12
+ basket = FactoryGirl.create(:basket)
13
+ checked_item = CheckedItem.new
14
+ checked_item.item = items(:item_00024)
15
+ checked_item.basket = basket
16
+ checked_item.save!
17
+ items(:item_00024).circulation_status.name.should eq 'Available On Shelf'
18
+ end
10
19
  end
11
20
 
12
21
  # == Schema Information
@@ -6,8 +6,8 @@ describe UserGroupHasCheckoutType do
6
6
 
7
7
  it "should create lending_policy" do
8
8
  old_count = LendingPolicy.count
9
- user_group_has_checkout_types(:user_group_has_checkout_type_00004).create_lending_policy
10
- user_group_has_checkout_types(:user_group_has_checkout_type_00004).checkout_type.items.count.should eq old_count
9
+ user_group_has_checkout_types(:user_group_has_checkout_type_00005).create_lending_policy
10
+ (user_group_has_checkout_types(:user_group_has_checkout_type_00005).checkout_type.items.count + old_count).should eq LendingPolicy.count
11
11
  end
12
12
 
13
13
  it "should update lending_policy" do
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,6 @@
1
+ require 'simplecov'
2
+ SimpleCov.start 'rails'
3
+
1
4
  # This file is copied to spec/ when you run 'rails generate rspec:install'
2
5
  ENV["RAILS_ENV"] ||= 'test'
3
6
  require File.expand_path("../dummy/config/environment", __FILE__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_circulation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre9
4
+ version: 0.1.0.pre10
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-13 00:00:00.000000000 Z
12
+ date: 2013-01-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -267,6 +267,22 @@ dependencies:
267
267
  - - ! '>='
268
268
  - !ruby/object:Gem::Version
269
269
  version: '0'
270
+ - !ruby/object:Gem::Dependency
271
+ name: simplecov
272
+ requirement: !ruby/object:Gem::Requirement
273
+ none: false
274
+ requirements:
275
+ - - ! '>='
276
+ - !ruby/object:Gem::Version
277
+ version: '0'
278
+ type: :development
279
+ prerelease: false
280
+ version_requirements: !ruby/object:Gem::Requirement
281
+ none: false
282
+ requirements:
283
+ - - ! '>='
284
+ - !ruby/object:Gem::Version
285
+ version: '0'
270
286
  description: Circulation management for Next-L Enju
271
287
  email:
272
288
  - tanabe@mwr.mediacom.keio.ac.jp
@@ -617,6 +633,7 @@ files:
617
633
  - spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb
618
634
  - spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb
619
635
  - spec/dummy/db/migrate/20120224094141_create_delayed_jobs.rb
636
+ - spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb
620
637
  - spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb
621
638
  - spec/dummy/db/schema.rb
622
639
  - spec/dummy/db/test.sqlite3
@@ -638,16 +655,16 @@ files:
638
655
  - spec/dummy/solr/conf/spellings.txt
639
656
  - spec/dummy/solr/conf/stopwords.txt
640
657
  - spec/dummy/solr/conf/synonyms.txt
641
- - spec/dummy/solr/data/test/index/_db.fdt
642
- - spec/dummy/solr/data/test/index/_db.fdx
643
- - spec/dummy/solr/data/test/index/_db.fnm
644
- - spec/dummy/solr/data/test/index/_db.frq
645
- - spec/dummy/solr/data/test/index/_db.nrm
646
- - spec/dummy/solr/data/test/index/_db.prx
647
- - spec/dummy/solr/data/test/index/_db.tii
648
- - spec/dummy/solr/data/test/index/_db.tis
658
+ - spec/dummy/solr/data/test/index/_m7.fdt
659
+ - spec/dummy/solr/data/test/index/_m7.fdx
660
+ - spec/dummy/solr/data/test/index/_m7.fnm
661
+ - spec/dummy/solr/data/test/index/_m7.frq
662
+ - spec/dummy/solr/data/test/index/_m7.nrm
663
+ - spec/dummy/solr/data/test/index/_m7.prx
664
+ - spec/dummy/solr/data/test/index/_m7.tii
665
+ - spec/dummy/solr/data/test/index/_m7.tis
649
666
  - spec/dummy/solr/data/test/index/segments.gen
650
- - spec/dummy/solr/data/test/index/segments_rr
667
+ - spec/dummy/solr/data/test/index/segments_19j
651
668
  - spec/dummy/solr/data/test/spellchecker/segments.gen
652
669
  - spec/dummy/solr/data/test/spellchecker/segments_1
653
670
  - spec/factories/basket.rb
@@ -738,7 +755,7 @@ files:
738
755
  - spec/spec_helper.rb
739
756
  - spec/support/controller_macros.rb
740
757
  - spec/support/devise.rb
741
- homepage: https://github.com/nabeta/enju_circulation
758
+ homepage: https://github.com/next-l/enju_circulation
742
759
  licenses: []
743
760
  post_install_message:
744
761
  rdoc_options: []
@@ -752,7 +769,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
752
769
  version: '0'
753
770
  segments:
754
771
  - 0
755
- hash: -2391698968407064322
772
+ hash: -1256582313270003235
756
773
  required_rubygems_version: !ruby/object:Gem::Requirement
757
774
  none: false
758
775
  requirements:
@@ -894,6 +911,7 @@ test_files:
894
911
  - spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb
895
912
  - spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb
896
913
  - spec/dummy/db/migrate/20120224094141_create_delayed_jobs.rb
914
+ - spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb
897
915
  - spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb
898
916
  - spec/dummy/db/schema.rb
899
917
  - spec/dummy/db/test.sqlite3
@@ -915,16 +933,16 @@ test_files:
915
933
  - spec/dummy/solr/conf/spellings.txt
916
934
  - spec/dummy/solr/conf/stopwords.txt
917
935
  - spec/dummy/solr/conf/synonyms.txt
918
- - spec/dummy/solr/data/test/index/_db.fdt
919
- - spec/dummy/solr/data/test/index/_db.fdx
920
- - spec/dummy/solr/data/test/index/_db.fnm
921
- - spec/dummy/solr/data/test/index/_db.frq
922
- - spec/dummy/solr/data/test/index/_db.nrm
923
- - spec/dummy/solr/data/test/index/_db.prx
924
- - spec/dummy/solr/data/test/index/_db.tii
925
- - spec/dummy/solr/data/test/index/_db.tis
936
+ - spec/dummy/solr/data/test/index/_m7.fdt
937
+ - spec/dummy/solr/data/test/index/_m7.fdx
938
+ - spec/dummy/solr/data/test/index/_m7.fnm
939
+ - spec/dummy/solr/data/test/index/_m7.frq
940
+ - spec/dummy/solr/data/test/index/_m7.nrm
941
+ - spec/dummy/solr/data/test/index/_m7.prx
942
+ - spec/dummy/solr/data/test/index/_m7.tii
943
+ - spec/dummy/solr/data/test/index/_m7.tis
926
944
  - spec/dummy/solr/data/test/index/segments.gen
927
- - spec/dummy/solr/data/test/index/segments_rr
945
+ - spec/dummy/solr/data/test/index/segments_19j
928
946
  - spec/dummy/solr/data/test/spellchecker/segments.gen
929
947
  - spec/dummy/solr/data/test/spellchecker/segments_1
930
948
  - spec/factories/basket.rb