enju_library 0.1.0.pre20 → 0.1.0.pre21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/enju_library/version.rb +1 -1
- data/spec/dummy/db/migrate/006_create_items.rb +0 -4
- data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
- data/spec/dummy/db/schema.rb +6 -3
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/data/test/index/_a1.fdt +0 -0
- data/spec/dummy/solr/data/test/index/_a1.fdx +0 -0
- data/spec/dummy/solr/data/test/index/_a1.fnm +3 -0
- data/spec/dummy/solr/data/test/index/_a1.frq +1 -0
- data/spec/dummy/solr/data/test/index/_a1.nrm +1 -0
- data/spec/dummy/solr/data/test/index/_a1.prx +0 -0
- data/spec/dummy/solr/data/test/index/{_8x.tii → _a1.tii} +0 -0
- data/spec/dummy/solr/data/test/index/_a1.tis +0 -0
- data/spec/dummy/solr/data/test/index/segments.gen +0 -0
- data/spec/dummy/solr/data/test/index/{segments_kz → segments_ni} +0 -0
- data/spec/fixtures/items.yml +0 -48
- metadata +34 -33
- data/lib/generators/enju_library/views_generator.rb +0 -26
- data/spec/dummy/solr/data/test/index/_8x.fdt +0 -0
- data/spec/dummy/solr/data/test/index/_8x.fdx +0 -0
- data/spec/dummy/solr/data/test/index/_8x.fnm +0 -3
- data/spec/dummy/solr/data/test/index/_8x.frq +0 -0
- data/spec/dummy/solr/data/test/index/_8x.nrm +0 -1
- data/spec/dummy/solr/data/test/index/_8x.prx +0 -0
- data/spec/dummy/solr/data/test/index/_8x.tis +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfbd7422c5f6929cdf50e6bb1ff3a2d4087b5677
|
4
|
+
data.tar.gz: c84a331294f04806703c009fb82624bb5eb3777c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50eb9b15e0db2679fd23a0df2df1d9e83b9a12d9c4b8a98a66a7a1e6b2078de43c3d2f222d1a5ae4f92df3fdfd7074d7bd39af14e751a87abe36fa82df147da7
|
7
|
+
data.tar.gz: 1c1e1d19300dfeaa444e15661696bf1b44c2f2d02f9bf4556abaa464333e5a636175efaf89baf3d9128305ca6358fa96bb6ffbfa301587621ae05c089b658f1b
|
data/lib/enju_library/version.rb
CHANGED
@@ -4,8 +4,6 @@ class CreateItems < ActiveRecord::Migration
|
|
4
4
|
#t.integer :manifestation_id
|
5
5
|
t.string :call_number
|
6
6
|
t.string :item_identifier
|
7
|
-
t.integer :circulation_status_id, :default => 5, :null => false
|
8
|
-
t.integer :checkout_type_id, :default => 1, :null => false
|
9
7
|
t.timestamps
|
10
8
|
t.datetime :deleted_at
|
11
9
|
t.integer :shelf_id, :default => 1, :null => false
|
@@ -22,8 +20,6 @@ class CreateItems < ActiveRecord::Migration
|
|
22
20
|
t.integer :required_score, :default => 0, :null => false
|
23
21
|
end
|
24
22
|
#add_index :items, :manifestation_id
|
25
|
-
add_index :items, :circulation_status_id
|
26
|
-
add_index :items, :checkout_type_id
|
27
23
|
add_index :items, :shelf_id
|
28
24
|
add_index :items, :item_identifier
|
29
25
|
add_index :items, :required_role_id
|
@@ -0,0 +1,8 @@
|
|
1
|
+
class AddCirculationStatusIdToItem < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
add_column :items, :circulation_status_id, :integer, :default => 5, :null => false
|
4
|
+
add_column :items, :checkout_type_id, :integer, :default => 1, :null => false
|
5
|
+
add_index :items, :circulation_status_id
|
6
|
+
add_index :items, :checkout_type_id
|
7
|
+
end
|
8
|
+
end
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20130416054135) do
|
15
15
|
|
16
16
|
create_table "accepts", :force => true do |t|
|
17
17
|
t.integer "basket_id"
|
@@ -166,8 +166,6 @@ ActiveRecord::Schema.define(:version => 20121119153944) do
|
|
166
166
|
create_table "items", :force => true do |t|
|
167
167
|
t.string "call_number"
|
168
168
|
t.string "item_identifier"
|
169
|
-
t.integer "circulation_status_id", :default => 5, :null => false
|
170
|
-
t.integer "checkout_type_id", :default => 1, :null => false
|
171
169
|
t.datetime "created_at", :null => false
|
172
170
|
t.datetime "updated_at", :null => false
|
173
171
|
t.datetime "deleted_at"
|
@@ -186,6 +184,8 @@ ActiveRecord::Schema.define(:version => 20121119153944) do
|
|
186
184
|
t.datetime "acquired_at"
|
187
185
|
t.integer "bookstore_id"
|
188
186
|
t.integer "manifestation_id"
|
187
|
+
t.integer "circulation_status_id", :default => 5, :null => false
|
188
|
+
t.integer "checkout_type_id", :default => 1, :null => false
|
189
189
|
end
|
190
190
|
|
191
191
|
add_index "items", ["bookstore_id"], :name => "index_items_on_bookstore_id"
|
@@ -232,7 +232,10 @@ ActiveRecord::Schema.define(:version => 20121119153944) do
|
|
232
232
|
t.datetime "created_at", :null => false
|
233
233
|
t.datetime "updated_at", :null => false
|
234
234
|
t.datetime "deleted_at"
|
235
|
+
t.text "opening_hour"
|
235
236
|
t.string "isil"
|
237
|
+
t.float "latitude"
|
238
|
+
t.float "longitude"
|
236
239
|
end
|
237
240
|
|
238
241
|
add_index "libraries", ["library_group_id"], :name => "index_libraries_on_library_group_id"
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
NRM�||
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
data/spec/fixtures/items.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
item_00001:
|
3
3
|
updated_at: 2007-08-24 23:46:00.484813 +09:00
|
4
4
|
item_identifier: '00001'
|
5
|
-
circulation_status_id: 2
|
6
|
-
checkout_type_id: 1
|
7
5
|
shelf_id: 1
|
8
6
|
call_number:
|
9
7
|
id: 1
|
@@ -12,8 +10,6 @@ item_00001:
|
|
12
10
|
item_00002:
|
13
11
|
updated_at: 2007-08-24 23:46:01.641413 +09:00
|
14
12
|
item_identifier: '00002'
|
15
|
-
circulation_status_id: 2
|
16
|
-
checkout_type_id: 1
|
17
13
|
shelf_id: 1
|
18
14
|
call_number:
|
19
15
|
id: 2
|
@@ -22,8 +18,6 @@ item_00002:
|
|
22
18
|
item_00003:
|
23
19
|
updated_at: 2007-08-24 23:46:02.502569 +09:00
|
24
20
|
item_identifier: '00003'
|
25
|
-
circulation_status_id: 2
|
26
|
-
checkout_type_id: 2
|
27
21
|
shelf_id: 1
|
28
22
|
call_number:
|
29
23
|
id: 3
|
@@ -32,8 +26,6 @@ item_00003:
|
|
32
26
|
item_00004:
|
33
27
|
updated_at: 2007-08-24 23:46:03.520781 +09:00
|
34
28
|
item_identifier: '00004'
|
35
|
-
circulation_status_id: 2
|
36
|
-
checkout_type_id: 1
|
37
29
|
shelf_id: 1
|
38
30
|
call_number:
|
39
31
|
id: 4
|
@@ -42,8 +34,6 @@ item_00004:
|
|
42
34
|
item_00005:
|
43
35
|
updated_at: 2007-08-24 23:46:04.538073 +09:00
|
44
36
|
item_identifier: '00005'
|
45
|
-
circulation_status_id: 2
|
46
|
-
checkout_type_id: 2
|
47
37
|
shelf_id: 1
|
48
38
|
call_number:
|
49
39
|
id: 5
|
@@ -52,8 +42,6 @@ item_00005:
|
|
52
42
|
item_00006:
|
53
43
|
updated_at: 2007-08-24 23:46:05.555353 +09:00
|
54
44
|
item_identifier: '00006'
|
55
|
-
circulation_status_id: 2
|
56
|
-
checkout_type_id: 2
|
57
45
|
shelf_id: 1
|
58
46
|
call_number:
|
59
47
|
id: 6
|
@@ -62,8 +50,6 @@ item_00006:
|
|
62
50
|
item_00007:
|
63
51
|
updated_at: 2007-08-24 23:46:06.572631 +09:00
|
64
52
|
item_identifier: '00007'
|
65
|
-
circulation_status_id: 2
|
66
|
-
checkout_type_id: 1
|
67
53
|
shelf_id: 1
|
68
54
|
call_number:
|
69
55
|
id: 7
|
@@ -72,8 +58,6 @@ item_00007:
|
|
72
58
|
item_00008:
|
73
59
|
updated_at: 2007-08-24 23:46:07.589909 +09:00
|
74
60
|
item_identifier: '00008'
|
75
|
-
circulation_status_id: 2
|
76
|
-
checkout_type_id: 2
|
77
61
|
shelf_id: 1
|
78
62
|
call_number:
|
79
63
|
id: 8
|
@@ -82,8 +66,6 @@ item_00008:
|
|
82
66
|
item_00009:
|
83
67
|
updated_at: 2007-08-24 23:46:08.607081 +09:00
|
84
68
|
item_identifier: '00009'
|
85
|
-
circulation_status_id: 2
|
86
|
-
checkout_type_id: 1
|
87
69
|
shelf_id: 4
|
88
70
|
call_number:
|
89
71
|
id: 9
|
@@ -92,8 +74,6 @@ item_00009:
|
|
92
74
|
item_00010:
|
93
75
|
updated_at: 2007-08-24 23:46:09.624281 +09:00
|
94
76
|
item_identifier: '00010'
|
95
|
-
circulation_status_id: 2
|
96
|
-
checkout_type_id: 2
|
97
77
|
shelf_id: 1
|
98
78
|
call_number:
|
99
79
|
id: 10
|
@@ -102,8 +82,6 @@ item_00010:
|
|
102
82
|
item_00011:
|
103
83
|
updated_at: 2007-08-24 23:46:10.484813 +09:00
|
104
84
|
item_identifier: '00011'
|
105
|
-
circulation_status_id: 2
|
106
|
-
checkout_type_id: 1
|
107
85
|
shelf_id: 1
|
108
86
|
call_number:
|
109
87
|
id: 11
|
@@ -112,8 +90,6 @@ item_00011:
|
|
112
90
|
item_00012:
|
113
91
|
updated_at: 2007-08-24 23:46:11.484813 +09:00
|
114
92
|
item_identifier: '00012'
|
115
|
-
circulation_status_id: 3
|
116
|
-
checkout_type_id: 2
|
117
93
|
shelf_id: 1
|
118
94
|
call_number:
|
119
95
|
id: 12
|
@@ -122,8 +98,6 @@ item_00012:
|
|
122
98
|
item_00013:
|
123
99
|
updated_at: 2007-08-24 23:46:12.484813 +09:00
|
124
100
|
item_identifier: '00013'
|
125
|
-
circulation_status_id: 10
|
126
|
-
checkout_type_id: 1
|
127
101
|
shelf_id: 1
|
128
102
|
call_number:
|
129
103
|
id: 13
|
@@ -132,8 +106,6 @@ item_00013:
|
|
132
106
|
item_00014:
|
133
107
|
updated_at: 2007-08-24 23:46:13.484813 +09:00
|
134
108
|
item_identifier: '00014'
|
135
|
-
circulation_status_id: 10
|
136
|
-
checkout_type_id: 2
|
137
109
|
shelf_id: 1
|
138
110
|
call_number:
|
139
111
|
id: 14
|
@@ -142,8 +114,6 @@ item_00014:
|
|
142
114
|
item_00015:
|
143
115
|
updated_at: 2007-08-24 23:46:14.484813 +09:00
|
144
116
|
item_identifier: '00015'
|
145
|
-
circulation_status_id: 10
|
146
|
-
checkout_type_id: 3
|
147
117
|
shelf_id: 1
|
148
118
|
call_number:
|
149
119
|
id: 15
|
@@ -152,8 +122,6 @@ item_00015:
|
|
152
122
|
item_00016:
|
153
123
|
updated_at: 2007-08-24 23:46:15.484813 +09:00
|
154
124
|
item_identifier: '00016'
|
155
|
-
circulation_status_id: 10
|
156
|
-
checkout_type_id: 2
|
157
125
|
shelf_id: 1
|
158
126
|
call_number:
|
159
127
|
id: 16
|
@@ -162,8 +130,6 @@ item_00016:
|
|
162
130
|
item_00017:
|
163
131
|
updated_at: 2007-08-24 23:46:16.484813 +09:00
|
164
132
|
item_identifier: '00017'
|
165
|
-
circulation_status_id: 10
|
166
|
-
checkout_type_id: 3
|
167
133
|
shelf_id: 1
|
168
134
|
call_number:
|
169
135
|
id: 17
|
@@ -172,8 +138,6 @@ item_00017:
|
|
172
138
|
item_00018:
|
173
139
|
updated_at: 2007-08-24 23:46:17.484813 +09:00
|
174
140
|
item_identifier: '00018'
|
175
|
-
circulation_status_id: 10
|
176
|
-
checkout_type_id: 3
|
177
141
|
shelf_id: 1
|
178
142
|
call_number:
|
179
143
|
id: 18
|
@@ -182,8 +146,6 @@ item_00018:
|
|
182
146
|
item_00019:
|
183
147
|
updated_at: 2007-08-24 23:46:18.484813 +09:00
|
184
148
|
item_identifier: '00019'
|
185
|
-
circulation_status_id: 2
|
186
|
-
checkout_type_id: 3
|
187
149
|
shelf_id: 1
|
188
150
|
call_number:
|
189
151
|
id: 19
|
@@ -192,8 +154,6 @@ item_00019:
|
|
192
154
|
item_00020:
|
193
155
|
updated_at: 2007-08-24 23:46:19.484813 +09:00
|
194
156
|
item_identifier: '00020'
|
195
|
-
circulation_status_id: 13
|
196
|
-
checkout_type_id: 3
|
197
157
|
shelf_id: 1
|
198
158
|
call_number:
|
199
159
|
id: 20
|
@@ -202,8 +162,6 @@ item_00020:
|
|
202
162
|
item_00021:
|
203
163
|
updated_at: 2007-08-24 23:46:20.484813 +09:00
|
204
164
|
item_identifier: '00021'
|
205
|
-
circulation_status_id: 2
|
206
|
-
checkout_type_id: 3
|
207
165
|
shelf_id: 1
|
208
166
|
call_number:
|
209
167
|
id: 21
|
@@ -212,8 +170,6 @@ item_00021:
|
|
212
170
|
item_00022:
|
213
171
|
updated_at: 2007-08-24 23:46:20.484813 +09:00
|
214
172
|
item_identifier: '00022'
|
215
|
-
circulation_status_id: 2
|
216
|
-
checkout_type_id: 3
|
217
173
|
shelf_id: 1
|
218
174
|
call_number:
|
219
175
|
id: 22
|
@@ -222,8 +178,6 @@ item_00022:
|
|
222
178
|
item_00023:
|
223
179
|
updated_at: 2007-08-24 23:46:20.484813 +09:00
|
224
180
|
item_identifier: '00023'
|
225
|
-
circulation_status_id: 15
|
226
|
-
checkout_type_id: 3
|
227
181
|
shelf_id: 2
|
228
182
|
call_number:
|
229
183
|
id: 23
|
@@ -237,8 +191,6 @@ item_00023:
|
|
237
191
|
# id :integer not null, primary key
|
238
192
|
# call_number :string(255)
|
239
193
|
# item_identifier :string(255)
|
240
|
-
# circulation_status_id :integer default(5), not null
|
241
|
-
# checkout_type_id :integer default(1), not null
|
242
194
|
# created_at :datetime not null
|
243
195
|
# updated_at :datetime not null
|
244
196
|
# deleted_at :datetime
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enju_library
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.pre21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kosuke Tanabe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-04-
|
11
|
+
date: 2013-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: enju_core
|
@@ -142,84 +142,84 @@ dependencies:
|
|
142
142
|
requirements:
|
143
143
|
- - ~>
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 0.1.0.
|
145
|
+
version: 0.1.0.pre15
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - ~>
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.1.0.
|
152
|
+
version: 0.1.0.pre15
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: enju_manifestation_viewer
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
157
|
- - ~>
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: 0.1.0.
|
159
|
+
version: 0.1.0.pre7
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - ~>
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version: 0.1.0.
|
166
|
+
version: 0.1.0.pre7
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
168
|
name: enju_biblio
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
171
|
- - ~>
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 0.1.0.
|
173
|
+
version: 0.1.0.pre31
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - ~>
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: 0.1.0.
|
180
|
+
version: 0.1.0.pre31
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: enju_event
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
185
|
- - ~>
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version: 0.1.17.
|
187
|
+
version: 0.1.17.pre12
|
188
188
|
type: :development
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
192
|
- - ~>
|
193
193
|
- !ruby/object:Gem::Version
|
194
|
-
version: 0.1.17.
|
194
|
+
version: 0.1.17.pre12
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
196
|
name: enju_circulation
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
199
|
- - ~>
|
200
200
|
- !ruby/object:Gem::Version
|
201
|
-
version: 0.1.0.
|
201
|
+
version: 0.1.0.pre21
|
202
202
|
type: :development
|
203
203
|
prerelease: false
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
206
|
- - ~>
|
207
207
|
- !ruby/object:Gem::Version
|
208
|
-
version: 0.1.0.
|
208
|
+
version: 0.1.0.pre21
|
209
209
|
- !ruby/object:Gem::Dependency
|
210
210
|
name: enju_inter_library_loan
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
212
212
|
requirements:
|
213
213
|
- - ~>
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version: 0.1.0.
|
215
|
+
version: 0.1.0.pre7
|
216
216
|
type: :development
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - ~>
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: 0.1.0.
|
222
|
+
version: 0.1.0.pre7
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: sunspot_solr
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -403,7 +403,6 @@ files:
|
|
403
403
|
- lib/generators/enju_library/setup/templates/db/fixtures/library_groups.yml
|
404
404
|
- lib/generators/enju_library/setup/templates/db/fixtures/shelves.yml
|
405
405
|
- lib/generators/enju_library/setup/USAGE
|
406
|
-
- lib/generators/enju_library/views_generator.rb
|
407
406
|
- lib/tasks/enju_library_tasks.rake
|
408
407
|
- MIT-LICENSE
|
409
408
|
- Rakefile
|
@@ -515,6 +514,7 @@ files:
|
|
515
514
|
- spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb
|
516
515
|
- spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb
|
517
516
|
- spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb
|
517
|
+
- spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb
|
518
518
|
- spec/dummy/db/schema.rb
|
519
519
|
- spec/dummy/db/test.sqlite3
|
520
520
|
- spec/dummy/public/404.html
|
@@ -534,16 +534,16 @@ files:
|
|
534
534
|
- spec/dummy/solr/conf/spellings.txt
|
535
535
|
- spec/dummy/solr/conf/stopwords.txt
|
536
536
|
- spec/dummy/solr/conf/synonyms.txt
|
537
|
-
- spec/dummy/solr/data/test/index/
|
538
|
-
- spec/dummy/solr/data/test/index/
|
539
|
-
- spec/dummy/solr/data/test/index/
|
540
|
-
- spec/dummy/solr/data/test/index/
|
541
|
-
- spec/dummy/solr/data/test/index/
|
542
|
-
- spec/dummy/solr/data/test/index/
|
543
|
-
- spec/dummy/solr/data/test/index/
|
544
|
-
- spec/dummy/solr/data/test/index/
|
537
|
+
- spec/dummy/solr/data/test/index/_a1.fdt
|
538
|
+
- spec/dummy/solr/data/test/index/_a1.fdx
|
539
|
+
- spec/dummy/solr/data/test/index/_a1.fnm
|
540
|
+
- spec/dummy/solr/data/test/index/_a1.frq
|
541
|
+
- spec/dummy/solr/data/test/index/_a1.nrm
|
542
|
+
- spec/dummy/solr/data/test/index/_a1.prx
|
543
|
+
- spec/dummy/solr/data/test/index/_a1.tii
|
544
|
+
- spec/dummy/solr/data/test/index/_a1.tis
|
545
545
|
- spec/dummy/solr/data/test/index/segments.gen
|
546
|
-
- spec/dummy/solr/data/test/index/
|
546
|
+
- spec/dummy/solr/data/test/index/segments_ni
|
547
547
|
- spec/dummy/solr/data/test/spellchecker/segments.gen
|
548
548
|
- spec/dummy/solr/data/test/spellchecker/segments_1
|
549
549
|
- spec/dummy/tmp/cache/4AD/470/country_all
|
@@ -745,6 +745,7 @@ test_files:
|
|
745
745
|
- spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb
|
746
746
|
- spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb
|
747
747
|
- spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb
|
748
|
+
- spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb
|
748
749
|
- spec/dummy/db/schema.rb
|
749
750
|
- spec/dummy/db/test.sqlite3
|
750
751
|
- spec/dummy/public/404.html
|
@@ -764,16 +765,16 @@ test_files:
|
|
764
765
|
- spec/dummy/solr/conf/spellings.txt
|
765
766
|
- spec/dummy/solr/conf/stopwords.txt
|
766
767
|
- spec/dummy/solr/conf/synonyms.txt
|
767
|
-
- spec/dummy/solr/data/test/index/
|
768
|
-
- spec/dummy/solr/data/test/index/
|
769
|
-
- spec/dummy/solr/data/test/index/
|
770
|
-
- spec/dummy/solr/data/test/index/
|
771
|
-
- spec/dummy/solr/data/test/index/
|
772
|
-
- spec/dummy/solr/data/test/index/
|
773
|
-
- spec/dummy/solr/data/test/index/
|
774
|
-
- spec/dummy/solr/data/test/index/
|
768
|
+
- spec/dummy/solr/data/test/index/_a1.fdt
|
769
|
+
- spec/dummy/solr/data/test/index/_a1.fdx
|
770
|
+
- spec/dummy/solr/data/test/index/_a1.fnm
|
771
|
+
- spec/dummy/solr/data/test/index/_a1.frq
|
772
|
+
- spec/dummy/solr/data/test/index/_a1.nrm
|
773
|
+
- spec/dummy/solr/data/test/index/_a1.prx
|
774
|
+
- spec/dummy/solr/data/test/index/_a1.tii
|
775
|
+
- spec/dummy/solr/data/test/index/_a1.tis
|
775
776
|
- spec/dummy/solr/data/test/index/segments.gen
|
776
|
-
- spec/dummy/solr/data/test/index/
|
777
|
+
- spec/dummy/solr/data/test/index/segments_ni
|
777
778
|
- spec/dummy/solr/data/test/spellchecker/segments.gen
|
778
779
|
- spec/dummy/solr/data/test/spellchecker/segments_1
|
779
780
|
- spec/dummy/tmp/cache/4AD/470/country_all
|
@@ -1,26 +0,0 @@
|
|
1
|
-
module EnjuLibrary
|
2
|
-
module Generators
|
3
|
-
class ViewsGenerator < Rails::Generators::Base
|
4
|
-
source_root File.expand_path('../../../../app/views', __FILE__)
|
5
|
-
|
6
|
-
def copy_files
|
7
|
-
directories = %w(
|
8
|
-
bookstores
|
9
|
-
budget_types
|
10
|
-
libraries
|
11
|
-
library_groups
|
12
|
-
request_status_types
|
13
|
-
request_types
|
14
|
-
search_engines
|
15
|
-
shelves
|
16
|
-
subscribes
|
17
|
-
subscriptions
|
18
|
-
)
|
19
|
-
|
20
|
-
directories.each do |dir|
|
21
|
-
directory dir, "app/views/#{dir}"
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
Binary file
|
Binary file
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
NRM�vvvv
|
Binary file
|
Binary file
|