enju_oai 0.1.0.pre4 → 0.1.0.pre5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/app/views/manifestations/list_identifiers.oai.builder +1 -1
  2. data/app/views/manifestations/list_records.oai.builder +1 -1
  3. data/lib/enju_oai/version.rb +1 -1
  4. data/spec/dummy/app/models/setting.rb +4 -0
  5. data/spec/dummy/config/application.yml +38 -0
  6. data/spec/dummy/db/migrate/20120728204337_create_series_statement_relationships.rb +11 -0
  7. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  8. data/spec/dummy/db/schema.rb +11 -1
  9. data/spec/dummy/db/test.sqlite3 +0 -0
  10. data/spec/dummy/solr/conf/admin-extra.html +31 -0
  11. data/spec/dummy/solr/conf/elevate.xml +36 -0
  12. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  13. data/spec/dummy/solr/conf/protwords.txt +21 -0
  14. data/spec/dummy/solr/conf/schema.xml +250 -0
  15. data/spec/dummy/solr/conf/scripts.conf +24 -0
  16. data/spec/dummy/solr/conf/solrconfig.xml +934 -0
  17. data/spec/dummy/solr/conf/spellings.txt +2 -0
  18. data/spec/dummy/solr/conf/stopwords.txt +58 -0
  19. data/spec/dummy/solr/conf/synonyms.txt +31 -0
  20. data/spec/dummy/solr/data/test/index/_c.fdt +0 -0
  21. data/spec/dummy/solr/data/test/index/_c.fdx +0 -0
  22. data/spec/dummy/solr/data/test/index/_c.fnm +7 -0
  23. data/spec/dummy/solr/data/test/index/_c.frq +0 -0
  24. data/spec/dummy/solr/data/test/index/_c.nrm +1 -0
  25. data/spec/dummy/solr/data/test/index/_c.prx +0 -0
  26. data/spec/dummy/solr/data/test/index/_c.tii +0 -0
  27. data/spec/dummy/solr/data/test/index/_c.tis +0 -0
  28. data/spec/dummy/solr/data/test/index/_d.fdt +0 -0
  29. data/spec/dummy/solr/data/test/index/_d.fdx +0 -0
  30. data/spec/dummy/solr/data/test/index/_d.fnm +7 -0
  31. data/spec/dummy/solr/data/test/index/_d.frq +0 -0
  32. data/spec/dummy/solr/data/test/index/_d.nrm +1 -0
  33. data/spec/dummy/solr/data/test/index/_d.prx +0 -0
  34. data/spec/dummy/solr/data/test/index/_d.tii +0 -0
  35. data/spec/dummy/solr/data/test/index/_d.tis +0 -0
  36. data/spec/dummy/solr/data/test/index/_e.fdt +0 -0
  37. data/spec/dummy/solr/data/test/index/_e.fdx +0 -0
  38. data/spec/dummy/solr/data/test/index/_e.fnm +7 -0
  39. data/spec/dummy/solr/data/test/index/_e.frq +0 -0
  40. data/spec/dummy/solr/data/test/index/_e.nrm +1 -0
  41. data/spec/dummy/solr/data/test/index/_e.prx +0 -0
  42. data/spec/dummy/solr/data/test/index/_e.tii +0 -0
  43. data/spec/dummy/solr/data/test/index/_e.tis +0 -0
  44. data/spec/dummy/solr/data/test/index/segments.gen +0 -0
  45. data/spec/dummy/solr/data/test/index/segments_l +0 -0
  46. data/spec/dummy/solr/data/test/spellchecker/segments.gen +0 -0
  47. data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
  48. metadata +99 -28
  49. data/spec/dummy/config/configatron/cucumber.rb +0 -4
  50. data/spec/dummy/config/configatron/defaults.rb +0 -28
  51. data/spec/dummy/config/configatron/development.rb +0 -4
  52. data/spec/dummy/config/configatron/production.rb.sample +0 -12
  53. data/spec/dummy/config/configatron/test.rb +0 -7
  54. data/spec/dummy/config/initializers/configatron.rb +0 -2
  55. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  56. data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
@@ -0,0 +1,2 @@
1
+ pizza
2
+ history
@@ -0,0 +1,58 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ #-----------------------------------------------------------------------
17
+ # a couple of test stopwords to test that the words are really being
18
+ # configured from this file:
19
+ stopworda
20
+ stopwordb
21
+
22
+ #Standard english stop words taken from Lucene's StopAnalyzer
23
+ a
24
+ an
25
+ and
26
+ are
27
+ as
28
+ at
29
+ be
30
+ but
31
+ by
32
+ for
33
+ if
34
+ in
35
+ into
36
+ is
37
+ it
38
+ no
39
+ not
40
+ of
41
+ on
42
+ or
43
+ s
44
+ such
45
+ t
46
+ that
47
+ the
48
+ their
49
+ then
50
+ there
51
+ these
52
+ they
53
+ this
54
+ to
55
+ was
56
+ will
57
+ with
58
+
@@ -0,0 +1,31 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ #some test synonym mappings unlikely to appear in real input text
15
+ aaa => aaaa
16
+ bbb => bbbb1 bbbb2
17
+ ccc => cccc1,cccc2
18
+ a\=>a => b\=>b
19
+ a\,a => b\,b
20
+ fooaaa,baraaa,bazaaa
21
+
22
+ # Some synonym groups specific to this example
23
+ GB,gib,gigabyte,gigabytes
24
+ MB,mib,megabyte,megabytes
25
+ Television, Televisions, TV, TVs
26
+ #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
27
+ #after us won't split it into two words.
28
+
29
+ # Synonym mappings can be used for spelling correction too
30
+ pixima => pixma
31
+
@@ -0,0 +1,7 @@
1
+ ����*idtype
2
+ class_nametitle_smconnect_title_sconnect_creator_sconnect_publisher_sisbn_smcarrier_type_s
3
+ library_sm
4
+ language_sitem_identifier_smshelf_sm created_at_d updated_at_dcreator_ids_imcontributor_ids_impublisher_ids_im item_ids_imrequired_role_id_i start_page_i
5
+ end_page_inumber_of_pages_iseries_statement_id_irepository_content_b
6
+ creator_sm sort_title_s periodical_bperiodical_master_b
7
+ title_text creator_textcontributor_textpublisher_textitem_identifier_text aulast_text aufirst_textau_text btitle_text isbn_textoriginal_manifestation_ids_im jtitle_text pub_date_dm
@@ -0,0 +1 @@
1
+ NRM�turxtuxutrtwsssuuvyrttrvrrtxtxswuywtrtyvywtuwwttptxy|||||||||||tuuu|||||||||||||||||||||||||||||||||wxwwx|||||||||||||||||||||||||||||||||||||||||||||wxwwx|||||||||||||||||||||||||||u|||||||||||||||||uvw|||||||x|||||||||||||||||||||||||||||||||||||||y||||||||||||w���|||||||||||||||||||||||||||||||||��|||||||||||w���|||||||||||||||||||||||||||||||||xy|||||||||||tuuu|||||||||||||||||||||||||||||||||turxtuxutrtwsssuuvyrttrvrrtxtxswuywtrtyvywtuwwttpt||||��|||||��||||||||||||||||||||||||||||||||||||||tu|||||||||||||||||||||||||||||||||||||||||||||||
@@ -0,0 +1,7 @@
1
+ ����*idtype
2
+ class_nametitle_smconnect_title_sconnect_creator_sconnect_publisher_sisbn_smcarrier_type_s
3
+ library_sm
4
+ language_sitem_identifier_smshelf_sm created_at_d updated_at_dcreator_ids_imcontributor_ids_impublisher_ids_im item_ids_imrequired_role_id_i start_page_i
5
+ end_page_inumber_of_pages_iseries_statement_id_irepository_content_b
6
+ creator_sm sort_title_s periodical_bperiodical_master_b
7
+ title_text creator_textcontributor_textpublisher_textitem_identifier_text aulast_text aufirst_textau_text btitle_text isbn_textoriginal_manifestation_ids_im jtitle_text pub_date_dm
@@ -0,0 +1 @@
1
+ NRM�xuuwuyutxxvxvxwtyvxwxxxvvtwwxvytwxwrwvxxyxuyxyuysx||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||xuuwuyutxxvxvxwtyvxwxxxvvtwwxvytwxwrwvxxyxuyxyuysx||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@@ -0,0 +1,7 @@
1
+ ����0idtype
2
+ class_nametitle_smconnect_title_sconnect_creator_sconnect_publisher_sisbn_smcarrier_type_s
3
+ library_sm
4
+ language_sitem_identifier_smshelf_sm created_at_d updated_at_dcreator_ids_imcontributor_ids_impublisher_ids_im item_ids_imrequired_role_id_i start_page_i
5
+ end_page_inumber_of_pages_iseries_statement_id_irepository_content_b
6
+ creator_sm sort_title_s periodical_bperiodical_master_b
7
+ title_text creator_textcontributor_textpublisher_textitem_identifier_text aulast_text aufirst_textau_text btitle_text isbn_textoriginal_manifestation_ids_im jtitle_text pub_date_dmissn_sm issn_textvolume_number_imissue_number_imserial_number_im atitle_text
@@ -0,0 +1 @@
1
+ NRM�vruwvvuur|xutttttwwuuuuuuxx||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||xtt|uuutt||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||vruwvvuur|xu||tttwwuuuuuuxx|||||y|||��|||||||���������||||||||||||xw|||||||||||||||||||||||||y||||||||||||||||||||||||||tt|||||||||||||
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_oai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre4
4
+ version: 0.1.0.pre5
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-07-31 00:00:00.000000000 Z
12
+ date: 2012-12-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -98,7 +98,7 @@ dependencies:
98
98
  requirements:
99
99
  - - ~>
100
100
  - !ruby/object:Gem::Version
101
- version: 0.1.0.pre
101
+ version: 0.1.0.pre13
102
102
  type: :development
103
103
  prerelease: false
104
104
  version_requirements: !ruby/object:Gem::Requirement
@@ -106,7 +106,7 @@ dependencies:
106
106
  requirements:
107
107
  - - ~>
108
108
  - !ruby/object:Gem::Version
109
- version: 0.1.0.pre
109
+ version: 0.1.0.pre13
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: enju_library
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -114,7 +114,7 @@ dependencies:
114
114
  requirements:
115
115
  - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 0.1.0.pre
117
+ version: 0.1.0.pre6
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -122,23 +122,23 @@ dependencies:
122
122
  requirements:
123
123
  - - ~>
124
124
  - !ruby/object:Gem::Version
125
- version: 0.1.0.pre
125
+ version: 0.1.0.pre6
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: enju_manifestation_viewer
128
128
  requirement: !ruby/object:Gem::Requirement
129
129
  none: false
130
130
  requirements:
131
- - - ! '>='
131
+ - - ~>
132
132
  - !ruby/object:Gem::Version
133
- version: '0'
133
+ version: 0.1.0.pre3
134
134
  type: :development
135
135
  prerelease: false
136
136
  version_requirements: !ruby/object:Gem::Requirement
137
137
  none: false
138
138
  requirements:
139
- - - ! '>='
139
+ - - ~>
140
140
  - !ruby/object:Gem::Version
141
- version: '0'
141
+ version: 0.1.0.pre3
142
142
  - !ruby/object:Gem::Dependency
143
143
  name: sunspot_solr
144
144
  requirement: !ruby/object:Gem::Requirement
@@ -146,7 +146,7 @@ dependencies:
146
146
  requirements:
147
147
  - - ~>
148
148
  - !ruby/object:Gem::Version
149
- version: 2.0.0.pre.120720
149
+ version: 2.0.0.pre.120925
150
150
  type: :development
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
@@ -154,7 +154,7 @@ dependencies:
154
154
  requirements:
155
155
  - - ~>
156
156
  - !ruby/object:Gem::Version
157
- version: 2.0.0.pre.120720
157
+ version: 2.0.0.pre.120925
158
158
  description: provide OAI-PMH methods for Next-L Enju
159
159
  email:
160
160
  - tanabe@mwr.mediacom.keio.ac.jp
@@ -187,23 +187,19 @@ files:
187
187
  - spec/dummy/app/helpers/application_helper.rb
188
188
  - spec/dummy/app/models/ability.rb
189
189
  - spec/dummy/app/models/role.rb
190
+ - spec/dummy/app/models/setting.rb
190
191
  - spec/dummy/app/models/user.rb
191
192
  - spec/dummy/app/models/user_has_role.rb
192
193
  - spec/dummy/app/views/layouts/application.html.erb
193
194
  - spec/dummy/config/application.rb
195
+ - spec/dummy/config/application.yml
194
196
  - spec/dummy/config/boot.rb
195
- - spec/dummy/config/configatron/cucumber.rb
196
- - spec/dummy/config/configatron/defaults.rb
197
- - spec/dummy/config/configatron/development.rb
198
- - spec/dummy/config/configatron/production.rb.sample
199
- - spec/dummy/config/configatron/test.rb
200
197
  - spec/dummy/config/database.yml
201
198
  - spec/dummy/config/environment.rb
202
199
  - spec/dummy/config/environments/development.rb
203
200
  - spec/dummy/config/environments/production.rb
204
201
  - spec/dummy/config/environments/test.rb
205
202
  - spec/dummy/config/initializers/backtrace_silencers.rb
206
- - spec/dummy/config/initializers/configatron.rb
207
203
  - spec/dummy/config/initializers/devise.rb
208
204
  - spec/dummy/config/initializers/inflections.rb
209
205
  - spec/dummy/config/initializers/mime_types.rb
@@ -319,6 +315,8 @@ files:
319
315
  - spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb
320
316
  - spec/dummy/db/migrate/20120511072422_add_patron_identifier_to_patron.rb
321
317
  - spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb
318
+ - spec/dummy/db/migrate/20120728204337_create_series_statement_relationships.rb
319
+ - spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb
322
320
  - spec/dummy/db/schema.rb
323
321
  - spec/dummy/db/test.sqlite3
324
322
  - spec/dummy/lib/enju_leaf.rb
@@ -329,8 +327,44 @@ files:
329
327
  - spec/dummy/Rakefile
330
328
  - spec/dummy/README.rdoc
331
329
  - spec/dummy/script/rails
332
- - spec/dummy/tmp/cache/4F7/F90/default_role
333
- - spec/dummy/tmp/cache/6E4/420/search_engine_all
330
+ - spec/dummy/solr/conf/admin-extra.html
331
+ - spec/dummy/solr/conf/elevate.xml
332
+ - spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt
333
+ - spec/dummy/solr/conf/protwords.txt
334
+ - spec/dummy/solr/conf/schema.xml
335
+ - spec/dummy/solr/conf/scripts.conf
336
+ - spec/dummy/solr/conf/solrconfig.xml
337
+ - spec/dummy/solr/conf/spellings.txt
338
+ - spec/dummy/solr/conf/stopwords.txt
339
+ - spec/dummy/solr/conf/synonyms.txt
340
+ - spec/dummy/solr/data/test/index/_c.fdt
341
+ - spec/dummy/solr/data/test/index/_c.fdx
342
+ - spec/dummy/solr/data/test/index/_c.fnm
343
+ - spec/dummy/solr/data/test/index/_c.frq
344
+ - spec/dummy/solr/data/test/index/_c.nrm
345
+ - spec/dummy/solr/data/test/index/_c.prx
346
+ - spec/dummy/solr/data/test/index/_c.tii
347
+ - spec/dummy/solr/data/test/index/_c.tis
348
+ - spec/dummy/solr/data/test/index/_d.fdt
349
+ - spec/dummy/solr/data/test/index/_d.fdx
350
+ - spec/dummy/solr/data/test/index/_d.fnm
351
+ - spec/dummy/solr/data/test/index/_d.frq
352
+ - spec/dummy/solr/data/test/index/_d.nrm
353
+ - spec/dummy/solr/data/test/index/_d.prx
354
+ - spec/dummy/solr/data/test/index/_d.tii
355
+ - spec/dummy/solr/data/test/index/_d.tis
356
+ - spec/dummy/solr/data/test/index/_e.fdt
357
+ - spec/dummy/solr/data/test/index/_e.fdx
358
+ - spec/dummy/solr/data/test/index/_e.fnm
359
+ - spec/dummy/solr/data/test/index/_e.frq
360
+ - spec/dummy/solr/data/test/index/_e.nrm
361
+ - spec/dummy/solr/data/test/index/_e.prx
362
+ - spec/dummy/solr/data/test/index/_e.tii
363
+ - spec/dummy/solr/data/test/index/_e.tis
364
+ - spec/dummy/solr/data/test/index/segments.gen
365
+ - spec/dummy/solr/data/test/index/segments_l
366
+ - spec/dummy/solr/data/test/spellchecker/segments.gen
367
+ - spec/dummy/solr/data/test/spellchecker/segments_1
334
368
  - spec/factories/manifestation.rb
335
369
  - spec/factories/user.rb
336
370
  - spec/fixtures/bookstores.yml
@@ -393,6 +427,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
393
427
  - - ! '>='
394
428
  - !ruby/object:Gem::Version
395
429
  version: '0'
430
+ segments:
431
+ - 0
432
+ hash: 331524829676256477
396
433
  required_rubygems_version: !ruby/object:Gem::Requirement
397
434
  none: false
398
435
  requirements:
@@ -413,23 +450,19 @@ test_files:
413
450
  - spec/dummy/app/helpers/application_helper.rb
414
451
  - spec/dummy/app/models/ability.rb
415
452
  - spec/dummy/app/models/role.rb
453
+ - spec/dummy/app/models/setting.rb
416
454
  - spec/dummy/app/models/user.rb
417
455
  - spec/dummy/app/models/user_has_role.rb
418
456
  - spec/dummy/app/views/layouts/application.html.erb
419
457
  - spec/dummy/config/application.rb
458
+ - spec/dummy/config/application.yml
420
459
  - spec/dummy/config/boot.rb
421
- - spec/dummy/config/configatron/cucumber.rb
422
- - spec/dummy/config/configatron/defaults.rb
423
- - spec/dummy/config/configatron/development.rb
424
- - spec/dummy/config/configatron/production.rb.sample
425
- - spec/dummy/config/configatron/test.rb
426
460
  - spec/dummy/config/database.yml
427
461
  - spec/dummy/config/environment.rb
428
462
  - spec/dummy/config/environments/development.rb
429
463
  - spec/dummy/config/environments/production.rb
430
464
  - spec/dummy/config/environments/test.rb
431
465
  - spec/dummy/config/initializers/backtrace_silencers.rb
432
- - spec/dummy/config/initializers/configatron.rb
433
466
  - spec/dummy/config/initializers/devise.rb
434
467
  - spec/dummy/config/initializers/inflections.rb
435
468
  - spec/dummy/config/initializers/mime_types.rb
@@ -545,6 +578,8 @@ test_files:
545
578
  - spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb
546
579
  - spec/dummy/db/migrate/20120511072422_add_patron_identifier_to_patron.rb
547
580
  - spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb
581
+ - spec/dummy/db/migrate/20120728204337_create_series_statement_relationships.rb
582
+ - spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb
548
583
  - spec/dummy/db/schema.rb
549
584
  - spec/dummy/db/test.sqlite3
550
585
  - spec/dummy/lib/enju_leaf.rb
@@ -555,8 +590,44 @@ test_files:
555
590
  - spec/dummy/Rakefile
556
591
  - spec/dummy/README.rdoc
557
592
  - spec/dummy/script/rails
558
- - spec/dummy/tmp/cache/4F7/F90/default_role
559
- - spec/dummy/tmp/cache/6E4/420/search_engine_all
593
+ - spec/dummy/solr/conf/admin-extra.html
594
+ - spec/dummy/solr/conf/elevate.xml
595
+ - spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt
596
+ - spec/dummy/solr/conf/protwords.txt
597
+ - spec/dummy/solr/conf/schema.xml
598
+ - spec/dummy/solr/conf/scripts.conf
599
+ - spec/dummy/solr/conf/solrconfig.xml
600
+ - spec/dummy/solr/conf/spellings.txt
601
+ - spec/dummy/solr/conf/stopwords.txt
602
+ - spec/dummy/solr/conf/synonyms.txt
603
+ - spec/dummy/solr/data/test/index/_c.fdt
604
+ - spec/dummy/solr/data/test/index/_c.fdx
605
+ - spec/dummy/solr/data/test/index/_c.fnm
606
+ - spec/dummy/solr/data/test/index/_c.frq
607
+ - spec/dummy/solr/data/test/index/_c.nrm
608
+ - spec/dummy/solr/data/test/index/_c.prx
609
+ - spec/dummy/solr/data/test/index/_c.tii
610
+ - spec/dummy/solr/data/test/index/_c.tis
611
+ - spec/dummy/solr/data/test/index/_d.fdt
612
+ - spec/dummy/solr/data/test/index/_d.fdx
613
+ - spec/dummy/solr/data/test/index/_d.fnm
614
+ - spec/dummy/solr/data/test/index/_d.frq
615
+ - spec/dummy/solr/data/test/index/_d.nrm
616
+ - spec/dummy/solr/data/test/index/_d.prx
617
+ - spec/dummy/solr/data/test/index/_d.tii
618
+ - spec/dummy/solr/data/test/index/_d.tis
619
+ - spec/dummy/solr/data/test/index/_e.fdt
620
+ - spec/dummy/solr/data/test/index/_e.fdx
621
+ - spec/dummy/solr/data/test/index/_e.fnm
622
+ - spec/dummy/solr/data/test/index/_e.frq
623
+ - spec/dummy/solr/data/test/index/_e.nrm
624
+ - spec/dummy/solr/data/test/index/_e.prx
625
+ - spec/dummy/solr/data/test/index/_e.tii
626
+ - spec/dummy/solr/data/test/index/_e.tis
627
+ - spec/dummy/solr/data/test/index/segments.gen
628
+ - spec/dummy/solr/data/test/index/segments_l
629
+ - spec/dummy/solr/data/test/spellchecker/segments.gen
630
+ - spec/dummy/solr/data/test/spellchecker/segments_1
560
631
  - spec/factories/manifestation.rb
561
632
  - spec/factories/user.rb
562
633
  - spec/fixtures/bookstores.yml
@@ -1,4 +0,0 @@
1
- # Override your default settings for the Cucumber environment here.
2
-
3
- # By default load in the settings from the test environment:
4
- require File.join(File.dirname(__FILE__), 'test')
@@ -1,28 +0,0 @@
1
- # Put all your default configatron settings here.
2
-
3
- # Example:
4
- # configatron.emails.welcome.subject = 'Welcome!'
5
- # configatron.emails.sales_reciept.subject = 'Thanks for your order'
6
- #
7
- # configatron.file.storage = :s3
8
-
9
- configatron.enju.web_hostname = 'localhost'
10
- configatron.enju.web_port_number = 3000
11
-
12
- # パトロンの名前を入力する際、姓を先に表示する
13
- configatron.family_name_first = true
14
-
15
- configatron.max_number_of_results = 500
16
- configatron.write_search_log_to_file = true
17
- configatron.csv_charset_conversion = true
18
-
19
- # Choose a locale from 'ca', 'de', 'fr', 'jp', 'uk', 'us'
20
- #AMAZON_AWS_HOSTNAME = 'ecs.amazonaws.com'
21
- configatron.amazon.aws_hostname = 'ecs.amazonaws.jp'
22
- configatron.amazon.hostname = 'www.amazon.co.jp'
23
-
24
- # :google, :amazon
25
- configatron.book_jacket.source = :google
26
-
27
- # :mozshot, :simpleapi, :heartrails, :thumbalizr
28
- configatron.screenshot.generator = :mozshot
@@ -1,4 +0,0 @@
1
- # Override your default settings for the Development environment here.
2
- #
3
- # Example:
4
- # configatron.file.storage = :local
@@ -1,12 +0,0 @@
1
- # Override your default settings for the Production environment here.
2
- #
3
- # Example:
4
- # configatron.uploaded_file.storage = :s3
5
-
6
- #configatron.uploaded_file.storage = :s3
7
-
8
- configatron.amazon.access_key = 'REPLACE_WITH_YOUR_AMAZON_ACCESS_KEY'
9
- configatron.amazon.secret_access_key = 'REPLACE_WITH_YOUR_AMAZON_SECRET_ACCESS_KEY'
10
-
11
- #configatron.google.google_maps_api_key = 'REPLACE_WITH_YOUR_GOOGLE_MAPS_API_KEY'
12
- #configatron.thumbalizr.api_key = 'REPLACE_WITH_YOUR_THUMBALIZR_API_KEY'
@@ -1,7 +0,0 @@
1
- # Override your default settings for the Test environment here.
2
- #
3
- # Example:
4
- # configatron.file.storage = :local
5
-
6
- configatron.amazon.access_key = 'REPLACE_WITH_YOUR_AMAZON_ACCESS_KEY'
7
- configatron.amazon.secret_access_key = 'REPLACE_WITH_YOUR_AMAZON_SECRET_ACCESS_KEY'
@@ -1,2 +0,0 @@
1
- require 'configatron'
2
- Configatron::Rails.init