enju_inventory 0.2.0.beta.1 → 0.2.0.beta.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14eac3233a4067892209307731879d6ef9cf0374
4
- data.tar.gz: 611476c9dfc325ca22d441121eec20e96ed0e8a4
3
+ metadata.gz: ec8b7798878cc728d9dd5b0e5ca573e9eda2c2f9
4
+ data.tar.gz: 2ac774473d6c823c695ca740b33ec45eb61ccafb
5
5
  SHA512:
6
- metadata.gz: 78b743ca6bae20540cab2be58a178ab4d725af6e53c48e835cdebdf34728484837b07a632dc5e97962de7554ca88cd76a09cb4d4e1272a4c35af88d91a91f7c2
7
- data.tar.gz: 83be83a735656b8f1876451fd035fdf4833ce64828230baebc35b4f5c4bc1c7d22845002cb87d8d084cbf8c1ef408b9198e4c918169c5d890c90b451a9980ecc
6
+ metadata.gz: 3e2891c4ada21be5e9097aa8a6a31c84adfae4f9270ad72b761a344036e280d52892b5ad21394ded6b1eeba335c7193bfc3a8e2d111252630bd1f0c2590b5e1f
7
+ data.tar.gz: f26109aaed4fa27def66ffbbe2b1addefdaeb1ddedc6c87bd8fe811057d9495d3bd9ee64e0f25bd300a1ee962439abc0f68faac8062b05226326ec8a273ca0ad
@@ -17,7 +17,6 @@ end
17
17
  # item_id :integer
18
18
  # inventory_file_id :integer
19
19
  # note :text
20
- # created_at :datetime not null
21
- # updated_at :datetime not null
20
+ # created_at :datetime
21
+ # updated_at :datetime
22
22
  #
23
-
@@ -43,17 +43,16 @@ end
43
43
  # Table name: inventory_files
44
44
  #
45
45
  # id :integer not null, primary key
46
- # filename :string(255)
47
- # content_type :string(255)
46
+ # filename :string
47
+ # content_type :string
48
48
  # size :integer
49
49
  # user_id :integer
50
50
  # note :text
51
- # created_at :datetime not null
52
- # updated_at :datetime not null
53
- # inventory_file_name :string(255)
54
- # inventory_content_type :string(255)
51
+ # created_at :datetime
52
+ # updated_at :datetime
53
+ # inventory_file_name :string
54
+ # inventory_content_type :string
55
55
  # inventory_file_size :integer
56
56
  # inventory_updated_at :datetime
57
- # inventory_fingerprint :string(255)
57
+ # inventory_fingerprint :string
58
58
  #
59
-
@@ -1,5 +1,4 @@
1
- require 'enju_library'
2
- require 'paperclip'
1
+ require 'enju_biblio'
3
2
 
4
3
  module EnjuInventory
5
4
  class Engine < ::Rails::Engine
@@ -1,3 +1,3 @@
1
1
  module EnjuInventory
2
- VERSION = "0.2.0.beta.1"
2
+ VERSION = "0.2.0.beta.2"
3
3
  end
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require 'rails_helper'
2
2
 
3
3
  describe InventoriesController do
4
4
  fixtures :all
@@ -1,5 +1,4 @@
1
- # -*- encoding: utf-8 -*-
2
- require 'spec_helper'
1
+ require 'rails_helper'
3
2
 
4
3
  describe InventoryFilesController do
5
4
  fixtures :all
@@ -1,7 +1,6 @@
1
1
  class ApplicationController < ActionController::Base
2
2
  protect_from_forgery
3
3
 
4
- include EnjuLeaf::Controller
5
4
  include EnjuLibrary::Controller
6
5
  include EnjuInventory::Controller
7
6
  after_action :verify_authorized
@@ -3,5 +3,5 @@ class User < ActiveRecord::Base
3
3
  :recoverable, :rememberable, :trackable, #, :validatable
4
4
  :lockable, :lock_strategy => :none, :unlock_strategy => :none
5
5
 
6
- include EnjuLeaf::EnjuUser
6
+ include EnjuSeed::EnjuUser
7
7
  end
@@ -5,6 +5,8 @@ require 'rails/all'
5
5
  Bundler.require(*Rails.groups)
6
6
  require 'enju_inventory'
7
7
  require 'enju_leaf'
8
+ require 'globalize'
9
+ require 'globalize-accessors'
8
10
 
9
11
  module Dummy
10
12
  class Application < Rails::Application
@@ -6,7 +6,7 @@ class CreateUserImportFiles < ActiveRecord::Migration
6
6
  t.datetime :executed_at
7
7
  t.string :user_import_file_name
8
8
  t.string :user_import_content_type
9
- t.string :user_import_file_size
9
+ t.integer :user_import_file_size
10
10
  t.datetime :user_import_updated_at
11
11
  t.string :user_import_fingerprint
12
12
  t.string :edit_mode
@@ -0,0 +1,5 @@
1
+ class AddErrorMessageToUserImportResult < ActiveRecord::Migration
2
+ def change
3
+ add_column :user_import_results, :error_message, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddHtmlSnippetToLibraryGroup < ActiveRecord::Migration
2
+ def change
3
+ add_column :library_groups, :html_snippet, :text
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToUserImportFileTransitions < ActiveRecord::Migration
2
+ def up
3
+ add_column :user_import_file_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :user_import_file_transitions, :most_recent
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class AddMostRecentToUserExportFileTransitions < ActiveRecord::Migration
2
+ def up
3
+ add_column :user_export_file_transitions, :most_recent, :boolean, null: true
4
+ end
5
+
6
+ def down
7
+ remove_column :user_export_file_transitions, :most_recent
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ class AddEmailToLibraryGroup < ActiveRecord::Migration
2
+ def change
3
+ add_column :library_groups, :email, :string
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: 20151213072705) do
14
+ ActiveRecord::Schema.define(version: 20160813130535) do
15
15
 
16
16
  create_table "accepts", force: :cascade do |t|
17
17
  t.integer "basket_id"
@@ -488,6 +488,8 @@ ActiveRecord::Schema.define(version: 20151213072705) do
488
488
  t.text "admin_networks"
489
489
  t.string "url", default: "http://localhost:3000/"
490
490
  t.text "settings"
491
+ t.text "html_snippet"
492
+ t.string "email"
491
493
  end
492
494
 
493
495
  add_index "library_groups", ["short_name"], name: "index_library_groups_on_short_name"
@@ -894,6 +896,7 @@ ActiveRecord::Schema.define(version: 20151213072705) do
894
896
  t.integer "user_export_file_id"
895
897
  t.datetime "created_at"
896
898
  t.datetime "updated_at"
899
+ t.boolean "most_recent"
897
900
  end
898
901
 
899
902
  add_index "user_export_file_transitions", ["sort_key", "user_export_file_id"], name: "index_user_export_file_transitions_on_sort_key_and_file_id", unique: true
@@ -939,6 +942,7 @@ ActiveRecord::Schema.define(version: 20151213072705) do
939
942
  t.integer "user_import_file_id"
940
943
  t.datetime "created_at"
941
944
  t.datetime "updated_at"
945
+ t.boolean "most_recent"
942
946
  end
943
947
 
944
948
  add_index "user_import_file_transitions", ["sort_key", "user_import_file_id"], name: "index_user_import_file_transitions_on_sort_key_and_file_id", unique: true
@@ -950,7 +954,7 @@ ActiveRecord::Schema.define(version: 20151213072705) do
950
954
  t.datetime "executed_at"
951
955
  t.string "user_import_file_name"
952
956
  t.string "user_import_content_type"
953
- t.string "user_import_file_size"
957
+ t.integer "user_import_file_size"
954
958
  t.datetime "user_import_updated_at"
955
959
  t.string "user_import_fingerprint"
956
960
  t.string "edit_mode"
@@ -968,6 +972,7 @@ ActiveRecord::Schema.define(version: 20151213072705) do
968
972
  t.text "body"
969
973
  t.datetime "created_at"
970
974
  t.datetime "updated_at"
975
+ t.text "error_message"
971
976
  end
972
977
 
973
978
  create_table "users", force: :cascade do |t|
@@ -20,7 +20,6 @@ inventory_00002:
20
20
  # item_id :integer
21
21
  # inventory_file_id :integer
22
22
  # note :text
23
- # created_at :datetime not null
24
- # updated_at :datetime not null
23
+ # created_at :datetime
24
+ # updated_at :datetime
25
25
  #
26
-
@@ -24,17 +24,16 @@ inventory_file_00003:
24
24
  # Table name: inventory_files
25
25
  #
26
26
  # id :integer not null, primary key
27
- # filename :string(255)
28
- # content_type :string(255)
27
+ # filename :string
28
+ # content_type :string
29
29
  # size :integer
30
30
  # user_id :integer
31
31
  # note :text
32
- # created_at :datetime not null
33
- # updated_at :datetime not null
34
- # inventory_file_name :string(255)
35
- # inventory_content_type :string(255)
32
+ # created_at :datetime
33
+ # updated_at :datetime
34
+ # inventory_file_name :string
35
+ # inventory_content_type :string
36
36
  # inventory_file_size :integer
37
37
  # inventory_updated_at :datetime
38
- # inventory_fingerprint :string(255)
38
+ # inventory_fingerprint :string
39
39
  #
40
-
@@ -1,5 +1,4 @@
1
- # -*- encoding: utf-8 -*-
2
- require 'spec_helper'
1
+ require 'rails_helper'
3
2
 
4
3
  describe InventoryFile do
5
4
  fixtures :users
@@ -20,17 +19,16 @@ end
20
19
  # Table name: inventory_files
21
20
  #
22
21
  # id :integer not null, primary key
23
- # filename :string(255)
24
- # content_type :string(255)
22
+ # filename :string
23
+ # content_type :string
25
24
  # size :integer
26
25
  # user_id :integer
27
26
  # note :text
28
- # created_at :datetime not null
29
- # updated_at :datetime not null
30
- # inventory_file_name :string(255)
31
- # inventory_content_type :string(255)
27
+ # created_at :datetime
28
+ # updated_at :datetime
29
+ # inventory_file_name :string
30
+ # inventory_content_type :string
32
31
  # inventory_file_size :integer
33
32
  # inventory_updated_at :datetime
34
- # inventory_fingerprint :string(255)
33
+ # inventory_fingerprint :string
35
34
  #
36
-
@@ -1,5 +1,4 @@
1
- # -*- encoding: utf-8 -*-
2
- require 'spec_helper'
1
+ require 'rails_helper'
3
2
 
4
3
  describe Inventory do
5
4
  #pending "add some examples to (or delete) #{__FILE__}"
@@ -14,7 +13,6 @@ end
14
13
  # item_id :integer
15
14
  # inventory_file_id :integer
16
15
  # note :text
17
- # created_at :datetime not null
18
- # updated_at :datetime not null
16
+ # created_at :datetime
17
+ # updated_at :datetime
19
18
  #
20
-
@@ -0,0 +1,39 @@
1
+ require 'simplecov'
2
+ require 'coveralls'
3
+ SimpleCov.start 'rails'
4
+ Coveralls.wear!
5
+
6
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
7
+ ENV["RAILS_ENV"] ||= 'test'
8
+ require File.expand_path("../dummy/config/environment", __FILE__)
9
+ require 'rspec/rails'
10
+ require 'factory_girl'
11
+
12
+ # Requires supporting ruby files with custom matchers and macros, etc,
13
+ # in spec/support/ and its subdirectories.
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
15
+
16
+ RSpec.configure do |config|
17
+ # == Mock Framework
18
+ #
19
+ # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
20
+ #
21
+ # config.mock_with :mocha
22
+ # config.mock_with :flexmock
23
+ # config.mock_with :rr
24
+ config.mock_with :rspec
25
+
26
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
27
+ config.fixture_path = "#{::Rails.root}/../../spec/fixtures"
28
+
29
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
30
+ # examples within a transaction, remove the following line or assign false
31
+ # instead of true.
32
+ config.use_transactional_fixtures = true
33
+ config.extend ControllerMacros, :type => :controller
34
+
35
+ config.infer_spec_type_from_file_location!
36
+ end
37
+
38
+ FactoryGirl.definition_file_paths << "#{::Rails.root}/../../spec/factories"
39
+ FactoryGirl.find_definitions
@@ -1,39 +1,92 @@
1
- require 'simplecov'
2
- require 'coveralls'
3
- SimpleCov.start 'rails'
4
- Coveralls.wear!
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
5
33
 
6
- # This file is copied to spec/ when you run 'rails generate rspec:install'
7
- ENV["RAILS_ENV"] ||= 'test'
8
- require File.expand_path("../dummy/config/environment", __FILE__)
9
- require 'rspec/rails'
10
- require 'factory_girl'
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = false
41
+ end
11
42
 
12
- # Requires supporting ruby files with custom matchers and macros, etc,
13
- # in spec/support/ and its subdirectories.
14
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
15
52
 
16
- RSpec.configure do |config|
17
- # == Mock Framework
18
- #
19
- # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
20
- #
21
- # config.mock_with :mocha
22
- # config.mock_with :flexmock
23
- # config.mock_with :rr
24
- config.mock_with :rspec
25
-
26
- # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
27
- config.fixture_path = "#{::Rails.root}/../../spec/fixtures"
28
-
29
- # If you're not using ActiveRecord, or you'd prefer not to run each of your
30
- # examples within a transaction, remove the following line or assign false
31
- # instead of true.
32
- config.use_transactional_fixtures = true
33
- config.extend ControllerMacros, :type => :controller
34
-
35
- config.infer_spec_type_from_file_location!
36
- end
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
37
64
 
38
- FactoryGirl.definition_file_paths << "#{::Rails.root}/../../spec/factories"
39
- FactoryGirl.find_definitions
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
metadata CHANGED
@@ -1,85 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_inventory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.beta.1
4
+ version: 0.2.0.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kosuke Tanabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-08 00:00:00.000000000 Z
11
+ date: 2016-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: enju_library
14
+ name: enju_biblio
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.2.0.beta.1
19
+ version: 0.2.0.beta.2
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.2.0.beta.1
27
- - !ruby/object:Gem::Dependency
28
- name: paperclip
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
26
+ version: 0.2.0.beta.2
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: enju_leaf
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
31
  - - "~>"
46
32
  - !ruby/object:Gem::Version
47
- version: 1.2.0.beta.1
33
+ version: 1.2.0.beta.2
48
34
  type: :development
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
38
  - - "~>"
53
39
  - !ruby/object:Gem::Version
54
- version: 1.2.0.beta.1
40
+ version: 1.2.0.beta.2
55
41
  - !ruby/object:Gem::Dependency
56
- name: enju_biblio
42
+ name: globalize
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
- - - "~>"
45
+ - - ">="
60
46
  - !ruby/object:Gem::Version
61
- version: 0.2.0.beta.1
47
+ version: '0'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
- - - "~>"
52
+ - - ">="
67
53
  - !ruby/object:Gem::Version
68
- version: 0.2.0.beta.1
54
+ version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
- name: enju_manifestation_viewer
56
+ name: globalize-accessors
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
- - - "~>"
59
+ - - ">="
74
60
  - !ruby/object:Gem::Version
75
- version: 0.2.0.beta.1
61
+ version: '0'
76
62
  type: :development
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
- - - "~>"
66
+ - - ">="
81
67
  - !ruby/object:Gem::Version
82
- version: 0.2.0.beta.1
68
+ version: '0'
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: sqlite3
85
71
  requirement: !ruby/object:Gem::Requirement
@@ -391,11 +377,15 @@ files:
391
377
  - spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb
392
378
  - spec/dummy/db/migrate/20150124152756_add_foreign_key_to_shelves_referencing_libraries.rb
393
379
  - spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb
380
+ - spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb
394
381
  - spec/dummy/db/migrate/20150924115059_create_withdraws.rb
395
382
  - spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb
396
383
  - spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb
384
+ - spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb
385
+ - spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb
386
+ - spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb
387
+ - spec/dummy/db/migrate/20160813130535_add_email_to_library_group.rb
397
388
  - spec/dummy/db/schema.rb
398
- - spec/dummy/private/system/inventories/4/original/inventory_file_sample.tsv
399
389
  - spec/dummy/public/404.html
400
390
  - spec/dummy/public/422.html
401
391
  - spec/dummy/public/500.html
@@ -411,6 +401,7 @@ files:
411
401
  - spec/fixtures/users.yml
412
402
  - spec/models/inventory_file_spec.rb
413
403
  - spec/models/inventory_spec.rb
404
+ - spec/rails_helper.rb
414
405
  - spec/spec_helper.rb
415
406
  - spec/support/controller_macros.rb
416
407
  - spec/support/devise.rb
@@ -599,11 +590,15 @@ test_files:
599
590
  - spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb
600
591
  - spec/dummy/db/migrate/20150124152756_add_foreign_key_to_shelves_referencing_libraries.rb
601
592
  - spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb
593
+ - spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb
602
594
  - spec/dummy/db/migrate/20150924115059_create_withdraws.rb
603
595
  - spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb
604
596
  - spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb
597
+ - spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb
598
+ - spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb
599
+ - spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb
600
+ - spec/dummy/db/migrate/20160813130535_add_email_to_library_group.rb
605
601
  - spec/dummy/db/schema.rb
606
- - spec/dummy/private/system/inventories/4/original/inventory_file_sample.tsv
607
602
  - spec/dummy/public/404.html
608
603
  - spec/dummy/public/422.html
609
604
  - spec/dummy/public/500.html
@@ -620,6 +615,7 @@ test_files:
620
615
  - spec/fixtures/users.yml
621
616
  - spec/models/inventory_file_spec.rb
622
617
  - spec/models/inventory_spec.rb
618
+ - spec/rails_helper.rb
623
619
  - spec/spec_helper.rb
624
620
  - spec/support/controller_macros.rb
625
621
  - spec/support/devise.rb
@@ -1,7 +0,0 @@
1
- 00001
2
- 00002
3
- 00003
4
- 00001
5
- 99997
6
- 99998
7
- 99999