enju_inventory 0.2.0.beta.1 → 0.2.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/inventory.rb +2 -3
- data/app/models/inventory_file.rb +7 -8
- data/lib/enju_inventory/engine.rb +1 -2
- data/lib/enju_inventory/version.rb +1 -1
- data/spec/controllers/inventories_controller_spec.rb +1 -1
- data/spec/controllers/inventory_files_controller_spec.rb +1 -2
- data/spec/dummy/app/controllers/application_controller.rb +0 -1
- data/spec/dummy/app/models/user.rb +1 -1
- data/spec/dummy/config/application.rb +2 -0
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +1 -1
- data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +5 -0
- data/spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160813130535_add_email_to_library_group.rb +5 -0
- data/spec/dummy/db/schema.rb +7 -2
- data/spec/fixtures/inventories.yml +2 -3
- data/spec/fixtures/inventory_files.yml +7 -8
- data/spec/models/inventory_file_spec.rb +8 -10
- data/spec/models/inventory_spec.rb +3 -5
- data/spec/rails_helper.rb +39 -0
- data/spec/spec_helper.rb +88 -35
- metadata +29 -33
- data/spec/dummy/private/system/inventories/4/original/inventory_file_sample.tsv +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec8b7798878cc728d9dd5b0e5ca573e9eda2c2f9
|
4
|
+
data.tar.gz: 2ac774473d6c823c695ca740b33ec45eb61ccafb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e2891c4ada21be5e9097aa8a6a31c84adfae4f9270ad72b761a344036e280d52892b5ad21394ded6b1eeba335c7193bfc3a8e2d111252630bd1f0c2590b5e1f
|
7
|
+
data.tar.gz: f26109aaed4fa27def66ffbbe2b1addefdaeb1ddedc6c87bd8fe811057d9495d3bd9ee64e0f25bd300a1ee962439abc0f68faac8062b05226326ec8a273ca0ad
|
data/app/models/inventory.rb
CHANGED
@@ -43,17 +43,16 @@ end
|
|
43
43
|
# Table name: inventory_files
|
44
44
|
#
|
45
45
|
# id :integer not null, primary key
|
46
|
-
# filename :string
|
47
|
-
# content_type :string
|
46
|
+
# filename :string
|
47
|
+
# content_type :string
|
48
48
|
# size :integer
|
49
49
|
# user_id :integer
|
50
50
|
# note :text
|
51
|
-
# created_at :datetime
|
52
|
-
# updated_at :datetime
|
53
|
-
# inventory_file_name :string
|
54
|
-
# inventory_content_type :string
|
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
|
57
|
+
# inventory_fingerprint :string
|
58
58
|
#
|
59
|
-
|
@@ -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.
|
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
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -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:
|
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.
|
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|
|
@@ -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
|
28
|
-
# content_type :string
|
27
|
+
# filename :string
|
28
|
+
# content_type :string
|
29
29
|
# size :integer
|
30
30
|
# user_id :integer
|
31
31
|
# note :text
|
32
|
-
# created_at :datetime
|
33
|
-
# updated_at :datetime
|
34
|
-
# inventory_file_name :string
|
35
|
-
# inventory_content_type :string
|
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
|
38
|
+
# inventory_fingerprint :string
|
39
39
|
#
|
40
|
-
|
@@ -1,5 +1,4 @@
|
|
1
|
-
|
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
|
24
|
-
# content_type :string
|
22
|
+
# filename :string
|
23
|
+
# content_type :string
|
25
24
|
# size :integer
|
26
25
|
# user_id :integer
|
27
26
|
# note :text
|
28
|
-
# created_at :datetime
|
29
|
-
# updated_at :datetime
|
30
|
-
# inventory_file_name :string
|
31
|
-
# inventory_content_type :string
|
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
|
33
|
+
# inventory_fingerprint :string
|
35
34
|
#
|
36
|
-
|
@@ -1,5 +1,4 @@
|
|
1
|
-
|
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
|
18
|
-
# updated_at :datetime
|
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
|
data/spec/spec_helper.rb
CHANGED
@@ -1,39 +1,92 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
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
|
-
#
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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
|
-
#
|
13
|
-
#
|
14
|
-
|
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
|
17
|
-
#
|
18
|
-
#
|
19
|
-
|
20
|
-
|
21
|
-
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
|
25
|
-
|
26
|
-
|
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
|
-
|
39
|
-
|
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.
|
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-
|
11
|
+
date: 2016-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
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.
|
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.
|
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.
|
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.
|
40
|
+
version: 1.2.0.beta.2
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
42
|
+
name: globalize
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
|
-
- - "
|
45
|
+
- - ">="
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0
|
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
|
54
|
+
version: '0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
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
|
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
|
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
|