enju_seed 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91ee753aaf3aefd0bf26d1b887ba3b456201ccb8
4
- data.tar.gz: 3da5ee3a78634a4e0c6763338492537e80c2befc
3
+ metadata.gz: f82f28685be0ce77bbae3b1a5669dd3f8e4efd7a
4
+ data.tar.gz: 6e850f5e9c2962054d294a256eada15067afa5a5
5
5
  SHA512:
6
- metadata.gz: 5cf6b0aa28175b246e6b568c987f2597152d4dc1612a9e6b81448297b73be78f8523f58882ff96c18e661e1edb440017aa095f25261b6c3c55e94bf88fa4393b
7
- data.tar.gz: 9f8db69b3f6df5b63aee0a8cfc6ec0a0989c9b73ee90f1f64b37b207b299d29c8ef13d057f381b98b1040b791015cba1f90e988e71050403d72a81e4a225b9ff
6
+ metadata.gz: 12a0dad577c19e0f6a5d82101381ddd630bb06d24a3fdd8fc57641f8f661c0c854105d66f75a00b758a39c2e19abb7ba8b200ed5cc1dcc7c10a3918c37d70477
7
+ data.tar.gz: ffcaaf6327814aff63e4a3bc3f40576b61aebf712287659e35fbfd6b9e90e014e466ad9f4a23283d3741588e0ee41733dc408c677708c3270b07594e9335a0ba
@@ -1,3 +1,3 @@
1
1
  module EnjuSeed
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
@@ -27,8 +27,8 @@ describe MyAccountsController do
27
27
  describe "GET edit" do
28
28
  describe "When logged in as Administrator" do
29
29
  before(:each) do
30
- profile = FactoryGirl.create(:profile)
31
- @user = FactoryGirl.create(:admin)
30
+ profile = FactoryBot.create(:profile)
31
+ @user = FactoryBot.create(:admin)
32
32
  @user.profile = profile
33
33
  sign_in @user
34
34
  end
@@ -41,8 +41,8 @@ describe MyAccountsController do
41
41
 
42
42
  describe "When logged in as Librarian" do
43
43
  before(:each) do
44
- profile = FactoryGirl.create(:profile)
45
- @user = FactoryGirl.create(:librarian)
44
+ profile = FactoryBot.create(:profile)
45
+ @user = FactoryBot.create(:librarian)
46
46
  @user.profile = profile
47
47
  sign_in @user
48
48
  end
@@ -55,8 +55,8 @@ describe MyAccountsController do
55
55
 
56
56
  describe "When logged in as User" do
57
57
  before(:each) do
58
- profile = FactoryGirl.create(:profile)
59
- @user = FactoryGirl.create(:user)
58
+ profile = FactoryBot.create(:profile)
59
+ @user = FactoryBot.create(:user)
60
60
  @user.profile = profile
61
61
  sign_in @user
62
62
  end
@@ -86,8 +86,8 @@ describe MyAccountsController do
86
86
 
87
87
  describe "When logged in as Administrator" do
88
88
  before(:each) do
89
- profile = FactoryGirl.create(:profile)
90
- @user = FactoryGirl.create(:admin, :password => 'password', :password_confirmation => 'password')
89
+ profile = FactoryBot.create(:profile)
90
+ @user = FactoryBot.create(:admin, :password => 'password', :password_confirmation => 'password')
91
91
  @user.profile = profile
92
92
  sign_in @user
93
93
  end
@@ -134,8 +134,8 @@ describe MyAccountsController do
134
134
 
135
135
  describe "When logged in as Librarian" do
136
136
  before(:each) do
137
- profile = FactoryGirl.create(:profile)
138
- @user = FactoryGirl.create(:librarian, :password => 'password', :password_confirmation => 'password')
137
+ profile = FactoryBot.create(:profile)
138
+ @user = FactoryBot.create(:librarian, :password => 'password', :password_confirmation => 'password')
139
139
  @user.profile = profile
140
140
  sign_in @user
141
141
  end
@@ -177,8 +177,8 @@ describe MyAccountsController do
177
177
 
178
178
  describe "When logged in as User" do
179
179
  before(:each) do
180
- profile = FactoryGirl.create(:profile)
181
- @user = FactoryGirl.create(:user, :password => 'password', :password_confirmation => 'password')
180
+ profile = FactoryBot.create(:profile)
181
+ @user = FactoryBot.create(:user, :password => 'password', :password_confirmation => 'password')
182
182
  @user.profile = profile
183
183
  sign_in @user
184
184
  end
@@ -71,7 +71,7 @@ describe ProfilesController do
71
71
  assigns(:profile).should eq(profiles(:admin))
72
72
  end
73
73
  it "assigns the another requested user as @profile" do
74
- admin_profile = FactoryGirl.create :admin_profile
74
+ admin_profile = FactoryBot.create :admin_profile
75
75
  get :show, id: admin_profile.id
76
76
  expect(response).not_to be_forbidden
77
77
  expect(assigns(:profile)).to eq admin_profile
@@ -86,12 +86,12 @@ describe ProfilesController do
86
86
  assigns(:profile).should eq(profiles(:librarian1))
87
87
  end
88
88
  it "should not assign the requested user as @admin" do
89
- admin = FactoryGirl.create(:admin_profile)
89
+ admin = FactoryBot.create(:admin_profile)
90
90
  get :show, id: admin.id
91
91
  response.should be_forbidden
92
92
  end
93
93
  it "should assign the requested user as @librarian" do
94
- librarian = FactoryGirl.create(:librarian_profile)
94
+ librarian = FactoryBot.create(:librarian_profile)
95
95
  get :show, id: librarian.id
96
96
  response.should_not be_forbidden
97
97
  assigns(:profile).should eq librarian
@@ -170,7 +170,7 @@ describe ProfilesController do
170
170
  login_fixture_admin
171
171
 
172
172
  it "assigns the requested user as @profile" do
173
- profile = FactoryGirl.create(:profile)
173
+ profile = FactoryBot.create(:profile)
174
174
  get :edit, id: profile.id
175
175
  assigns(:profile).should eq(profile)
176
176
  end
@@ -180,25 +180,25 @@ describe ProfilesController do
180
180
  login_fixture_librarian
181
181
 
182
182
  it "should assign the requested user as @profile" do
183
- profile = FactoryGirl.create(:profile)
183
+ profile = FactoryBot.create(:profile)
184
184
  get :edit, id: profile.id
185
185
  assigns(:profile).should eq(profile)
186
186
  end
187
187
  it "should not get edit page for admin required user" do
188
- admin = FactoryGirl.create(:admin_profile)
188
+ admin = FactoryBot.create(:admin_profile)
189
189
  get :edit, id: admin.id
190
190
  response.should be_forbidden
191
191
  #assigns(:profile).should_not eq(admin)
192
192
  end
193
193
  it "should get edit page for other librarian user" do
194
- librarian = FactoryGirl.create(:librarian_profile)
194
+ librarian = FactoryBot.create(:librarian_profile)
195
195
  get :edit, id: librarian.id
196
196
  response.should_not be_forbidden
197
197
  assigns(:profile).should eq librarian
198
198
  end
199
199
 
200
200
  it "should get edit page for other librarian user" do
201
- admin = FactoryGirl.create(:admin_profile, required_role_id: Role.where(name: 'Librarian').first.id)
201
+ admin = FactoryBot.create(:admin_profile, required_role_id: Role.where(name: 'Librarian').first.id)
202
202
  get :edit, id: admin.id
203
203
  response.should be_forbidden
204
204
  assigns(:profile).should eq admin
@@ -209,7 +209,7 @@ describe ProfilesController do
209
209
  login_fixture_user
210
210
 
211
211
  it "should not assign the requested user as @profile" do
212
- profile = FactoryGirl.create(:profile)
212
+ profile = FactoryBot.create(:profile)
213
213
  get :edit, id: profile.id
214
214
  assigns(:profile).should eq(profile)
215
215
  response.should be_forbidden
@@ -223,7 +223,7 @@ describe ProfilesController do
223
223
 
224
224
  describe "When not logged in" do
225
225
  it "should not assign the requested user as @profile" do
226
- profile = FactoryGirl.create(:profile)
226
+ profile = FactoryBot.create(:profile)
227
227
  get :edit, id: profile.id
228
228
  assigns(:profile).should eq(profile)
229
229
  response.should redirect_to(new_user_session_url)
@@ -233,7 +233,7 @@ describe ProfilesController do
233
233
 
234
234
  describe "POST create" do
235
235
  before(:each) do
236
- @attrs = FactoryGirl.attributes_for(:profile)
236
+ @attrs = FactoryBot.attributes_for(:profile)
237
237
  @invalid_attrs = {:user_group_id => '', :user_number => '日本語'}
238
238
  end
239
239
 
@@ -551,7 +551,7 @@ describe ProfilesController do
551
551
  end
552
552
 
553
553
  it "should not be able to delete other librarian user" do
554
- librarian = FactoryGirl.create(:librarian_profile)
554
+ librarian = FactoryBot.create(:librarian_profile)
555
555
  delete :destroy, id: librarian.id
556
556
  response.should be_forbidden
557
557
  end
@@ -0,0 +1,5 @@
1
+ class AddCsvCharsetConversionToLibraryGroup < ActiveRecord::Migration
2
+ def change
3
+ add_column :library_groups, :csv_charset_conversion, :boolean, null: false, default: false
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddHeaderLogoToLibraryGroup < ActiveRecord::Migration
2
+ def change
3
+ add_attachment :library_groups, :header_logo
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class RenameLoginBannerToOldLoginBanner < ActiveRecord::Migration
2
+ def change
3
+ rename_column :library_groups, :login_banner, :old_login_banner
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddForeignKeyToLibraryGroupIdOnLibrary < ActiveRecord::Migration
2
+ def change
3
+ add_foreign_key :libraries, :library_groups, null: false
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddHeaderLogoMetaToLibraryGroup < ActiveRecord::Migration
2
+ def change
3
+ add_column :library_groups, :header_logo_meta, :text
4
+ end
5
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20160813203039) do
14
+ ActiveRecord::Schema.define(version: 20180102162311) do
15
15
 
16
16
  create_table "accepts", force: :cascade do |t|
17
17
  t.integer "basket_id"
@@ -592,7 +592,7 @@ ActiveRecord::Schema.define(version: 20160813203039) do
592
592
  t.text "display_name"
593
593
  t.string "short_name", null: false
594
594
  t.text "my_networks"
595
- t.text "login_banner"
595
+ t.text "old_login_banner"
596
596
  t.text "note"
597
597
  t.integer "country_id"
598
598
  t.integer "position"
@@ -606,6 +606,12 @@ ActiveRecord::Schema.define(version: 20160813203039) do
606
606
  t.boolean "family_name_first", default: true
607
607
  t.integer "pub_year_facet_range_interval", default: 10
608
608
  t.integer "user_id"
609
+ t.boolean "csv_charset_conversion", default: false, null: false
610
+ t.string "header_logo_file_name"
611
+ t.string "header_logo_content_type"
612
+ t.integer "header_logo_file_size"
613
+ t.datetime "header_logo_updated_at"
614
+ t.text "header_logo_meta"
609
615
  end
610
616
 
611
617
  add_index "library_groups", ["short_name"], name: "index_library_groups_on_short_name"
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :profile, :class => Profile do |f|
3
3
  f.user_group_id {UserGroup.first.id}
4
4
  f.required_role_id {Role.where(name: 'User').first.id}
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :admin, class: User do |f|
3
3
  f.sequence(:username){|n| "admin_#{n}"}
4
4
  f.sequence(:email){|n| "admin_#{n}@example.jp"}
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :user_group do |f|
3
3
  f.sequence(:name){|n| "user_group_#{n}"}
4
4
  end
@@ -9,7 +9,6 @@ one:
9
9
  ::/0"
10
10
  url: "http://localhost:3000/"
11
11
  position: 1
12
- login_banner: "*Next-L Enju*"
13
12
  admin_networks: "0.0.0.0/0\r\n\
14
13
  ::/0"
15
14
  user_id: 1
@@ -5,35 +5,35 @@ describe Profile do
5
5
  fixtures :all
6
6
 
7
7
  it 'should create a profile' do
8
- FactoryGirl.create(:profile)
8
+ FactoryBot.create(:profile)
9
9
  end
10
10
 
11
11
  it 'should destroy a profile' do
12
- profile = FactoryGirl.create(:profile)
12
+ profile = FactoryBot.create(:profile)
13
13
  profile.destroy.should be_truthy
14
14
  end
15
15
 
16
16
  it 'should not set expired_at if its user group does not have valid period' do
17
- profile = FactoryGirl.create(:profile)
17
+ profile = FactoryBot.create(:profile)
18
18
  profile.expired_at.should be_nil
19
19
  end
20
20
 
21
21
  it 'should set expired_at if its user group has valid period' do
22
- profile = FactoryGirl.build(:profile)
23
- user_group = FactoryGirl.create(:user_group, :valid_period_for_new_user => 10)
22
+ profile = FactoryBot.build(:profile)
23
+ user_group = FactoryBot.create(:user_group, :valid_period_for_new_user => 10)
24
24
  user_group.profiles << profile
25
25
  profile.user_group.valid_period_for_new_user.should eq 10
26
26
  profile.expired_at.should eq 10.days.from_now.end_of_day
27
27
  end
28
28
 
29
29
  it "should create profile" do
30
- profile = FactoryGirl.create(:profile)
30
+ profile = FactoryBot.create(:profile)
31
31
  assert !profile.new_record?, "#{profile.errors.full_messages.to_sentence}"
32
32
  end
33
33
 
34
34
  it "should create profile with empty user_number" do
35
- profile1 = FactoryGirl.create(:profile, user_number: "")
36
- profile2 = FactoryGirl.create(:profile, user_number: "")
35
+ profile1 = FactoryBot.create(:profile, user_number: "")
36
+ profile2 = FactoryBot.create(:profile, user_number: "")
37
37
  profile1.should be_valid
38
38
  profile2.should be_valid
39
39
  end
@@ -6,42 +6,42 @@ describe User do
6
6
  fixtures :all
7
7
 
8
8
  it 'should create an user' do
9
- FactoryGirl.create(:user)
9
+ FactoryBot.create(:user)
10
10
  end
11
11
 
12
12
  it 'should destroy an user' do
13
- user = FactoryGirl.create(:user)
13
+ user = FactoryBot.create(:user)
14
14
  user.destroy.should be_truthy
15
15
  end
16
16
 
17
17
  it 'should respond to has_role(Administrator)' do
18
- admin = FactoryGirl.create(:admin)
18
+ admin = FactoryBot.create(:admin)
19
19
  admin.has_role?('Administrator').should be_truthy
20
20
  end
21
21
 
22
22
  it 'should respond to has_role(Librarian)' do
23
- librarian = FactoryGirl.create(:librarian)
23
+ librarian = FactoryBot.create(:librarian)
24
24
  librarian.has_role?('Administrator').should be_falsy
25
25
  librarian.has_role?('Librarian').should be_truthy
26
26
  librarian.has_role?('User').should be_truthy
27
27
  end
28
28
 
29
29
  it 'should respond to has_role(User)' do
30
- user = FactoryGirl.create(:user)
30
+ user = FactoryBot.create(:user)
31
31
  user.has_role?('Administrator').should be_falsy
32
32
  user.has_role?('Librarian').should be_falsy
33
33
  user.has_role?('User').should be_truthy
34
34
  end
35
35
 
36
36
  it 'should lock an user' do
37
- user = FactoryGirl.create(:user)
37
+ user = FactoryBot.create(:user)
38
38
  user.locked = '1'
39
39
  user.save
40
40
  user.active_for_authentication?.should be_falsy
41
41
  end
42
42
 
43
43
  it 'should unlock an user' do
44
- user = FactoryGirl.create(:user)
44
+ user = FactoryBot.create(:user)
45
45
  user.lock_access!
46
46
  user.locked = '0'
47
47
  user.save
@@ -49,26 +49,26 @@ describe User do
49
49
  end
50
50
 
51
51
  it "should create user" do
52
- user = FactoryGirl.create(:user)
52
+ user = FactoryBot.create(:user)
53
53
  assert !user.new_record?, "#{user.errors.full_messages.to_sentence}"
54
54
  end
55
55
 
56
56
  it "should require username" do
57
57
  old_count = User.count
58
- user = FactoryGirl.build(:user, :username => nil)
58
+ user = FactoryBot.build(:user, :username => nil)
59
59
  user.save
60
60
  user.errors[:username].should be_truthy
61
61
  User.count.should eq old_count
62
62
  end
63
63
 
64
64
  it "should require password" do
65
- user = FactoryGirl.build(:user, :password => nil)
65
+ user = FactoryBot.build(:user, :password => nil)
66
66
  user.save
67
67
  user.errors[:password].should be_truthy
68
68
  end
69
69
 
70
70
  it "should not require password_confirmation on create" do
71
- user = FactoryGirl.build(:user, :password => 'new_password', :password_confirmation => nil)
71
+ user = FactoryBot.build(:user, :password => 'new_password', :password_confirmation => nil)
72
72
  user.save
73
73
  user.errors[:email].should be_empty
74
74
  end
@@ -7,7 +7,7 @@ require File.expand_path('../../spec/dummy/config/environment', __FILE__)
7
7
  abort("The Rails environment is running in production mode!") if Rails.env.production?
8
8
  require 'spec_helper'
9
9
  require 'rspec/rails'
10
- require 'factory_girl'
10
+ require 'factory_bot'
11
11
  require 'rspec/active_model/mocks'
12
12
  require 'sunspot_matchers'
13
13
  require 'pundit/rspec'
@@ -69,5 +69,5 @@ RSpec.configure do |config|
69
69
  config.include SunspotMatchers
70
70
  end
71
71
 
72
- FactoryGirl.definition_file_paths << "#{::Rails.root}/../../spec/factories"
73
- FactoryGirl.find_definitions
72
+ FactoryBot.definition_file_paths << "#{::Rails.root}/../../spec/factories"
73
+ FactoryBot.find_definitions
@@ -2,21 +2,21 @@ module ControllerMacros
2
2
  def login_admin
3
3
  before(:each) do
4
4
  @request.env["devise.mapping"] = Devise.mappings[:admin]
5
- sign_in FactoryGirl.create(:admin)
5
+ sign_in FactoryBot.create(:admin)
6
6
  end
7
7
  end
8
8
 
9
9
  def login_librarian
10
10
  before(:each) do
11
11
  @request.env["devise.mapping"] = Devise.mappings[:librarian]
12
- sign_in FactoryGirl.create(:librarian)
12
+ sign_in FactoryBot.create(:librarian)
13
13
  end
14
14
  end
15
15
 
16
16
  def login_user
17
17
  before(:each) do
18
18
  @request.env["devise.mapping"] = Devise.mappings[:user]
19
- sign_in FactoryGirl.create(:user)
19
+ sign_in FactoryBot.create(:user)
20
20
  end
21
21
  end
22
22
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_seed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kosuke Tanabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-12 00:00:00.000000000 Z
11
+ date: 2018-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '4.2'
47
+ version: '4.4'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '4.2'
54
+ version: '4.4'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pundit
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -212,14 +212,14 @@ dependencies:
212
212
  requirements:
213
213
  - - "~>"
214
214
  - !ruby/object:Gem::Version
215
- version: '2.3'
215
+ version: '2.5'
216
216
  type: :runtime
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: '2.3'
222
+ version: '2.5'
223
223
  - !ruby/object:Gem::Dependency
224
224
  name: simple_form
225
225
  requirement: !ruby/object:Gem::Requirement
@@ -333,7 +333,7 @@ dependencies:
333
333
  - !ruby/object:Gem::Version
334
334
  version: '0'
335
335
  - !ruby/object:Gem::Dependency
336
- name: factory_girl_rails
336
+ name: factory_bot_rails
337
337
  requirement: !ruby/object:Gem::Requirement
338
338
  requirements:
339
339
  - - ">="
@@ -686,6 +686,11 @@ files:
686
686
  - spec/dummy/db/migrate/20160813191733_add_family_name_first_to_library_group.rb
687
687
  - spec/dummy/db/migrate/20160813192542_add_pub_year_facet_range_interval_to_library_group.rb
688
688
  - spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb
689
+ - spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb
690
+ - spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb
691
+ - spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb
692
+ - spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb
693
+ - spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb
689
694
  - spec/dummy/db/schema.rb
690
695
  - spec/dummy/public/404.html
691
696
  - spec/dummy/public/422.html
@@ -740,7 +745,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
740
745
  version: '0'
741
746
  requirements: []
742
747
  rubyforge_project:
743
- rubygems_version: 2.5.2.1
748
+ rubygems_version: 2.6.14
744
749
  signing_key:
745
750
  specification_version: 4
746
751
  summary: enju_seed plugin
@@ -784,6 +789,7 @@ test_files:
784
789
  - spec/dummy/public/500.html
785
790
  - spec/dummy/public/404.html
786
791
  - spec/dummy/db/schema.rb
792
+ - spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb
787
793
  - spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb
788
794
  - spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb
789
795
  - spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb
@@ -809,12 +815,14 @@ test_files:
809
815
  - spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb
810
816
  - spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb
811
817
  - spec/dummy/db/migrate/20081030023412_create_checkout_types.rb
818
+ - spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb
812
819
  - spec/dummy/db/migrate/20150106001709_create_demands.rb
813
820
  - spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb
814
821
  - spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb
815
822
  - spec/dummy/db/migrate/015_create_creates.rb
816
823
  - spec/dummy/db/migrate/20081025083905_create_languages.rb
817
824
  - spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb
825
+ - spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb
818
826
  - spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb
819
827
  - spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb
820
828
  - spec/dummy/db/migrate/20160703190209_add_foreign_key_on_manifestation_id_to_reserve.rb
@@ -895,6 +903,7 @@ test_files:
895
903
  - spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb
896
904
  - spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb
897
905
  - spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb
906
+ - spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb
898
907
  - spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb
899
908
  - spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb
900
909
  - spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb
@@ -909,6 +918,7 @@ test_files:
909
918
  - spec/dummy/db/migrate/20111124110059_create_create_types.rb
910
919
  - spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb
911
920
  - spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb
921
+ - spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb
912
922
  - spec/dummy/db/migrate/20081027150907_create_picture_files.rb
913
923
  - spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb
914
924
  - spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb