unidom-article_number 2.2 → 2.2.1
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/app/models/unidom/article_number/ean13_barcode.rb +1 -0
- data/app/models/unidom/article_number/ean8_barcode.rb +1 -0
- data/app/models/unidom/article_number/marking.rb +1 -0
- data/app/models/unidom/article_number/vehicle_identification_number.rb +1 -0
- data/app/views/layouts/unidom/article_number/application.html.erb +2 -2
- data/lib/unidom/article_number/engine.rb +3 -3
- data/lib/unidom/article_number/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 003e4aa617a834882efe176e4683542904a4882f
|
|
4
|
+
data.tar.gz: 37d0364218d04272635098641e2db85130ab8966
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45a76e9ccdf9940900aac8b189c52d870d238fecc3564ea1a4a4f92b4b6bf3042ad8c9d11447f6af5fd0221a91113c2e750742675a087ba9149c33b56e5cd392
|
|
7
|
+
data.tar.gz: d275a1ee218495c7139d7e295aa764c41d0cec462fc207ce34541eebfb356f4120446dbb775dbe1eead6644a808123c3b21f1dcb75aa2db76dd2079f22442986
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
|
-
<title>
|
|
5
|
-
<%= stylesheet_link_tag
|
|
4
|
+
<title>Unidom Article Number</title>
|
|
5
|
+
<%= stylesheet_link_tag 'unidom/article_number/application', media: "all" %>
|
|
6
6
|
<%= csrf_meta_tags %>
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
@@ -3,11 +3,11 @@ module Unidom
|
|
|
3
3
|
|
|
4
4
|
class Engine < ::Rails::Engine
|
|
5
5
|
|
|
6
|
+
include Unidom::Common::EngineExtension
|
|
7
|
+
|
|
6
8
|
isolate_namespace ::Unidom::ArticleNumber
|
|
7
9
|
|
|
8
|
-
|
|
9
|
-
config.paths['db/migrate'].expanded.each { |expanded_path| app.config.paths['db/migrate'] << expanded_path } unless app.root.to_s.match root.to_s
|
|
10
|
-
end
|
|
10
|
+
enable_initializer enum_enabled: false, migration_enabled: true
|
|
11
11
|
|
|
12
12
|
end
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unidom-article_number
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Topbit Du
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: unidom-common
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.8'
|
|
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: '1.
|
|
26
|
+
version: '1.8'
|
|
27
27
|
description: Unidom (UNIfied Domain Object Model) is a series of domain model engines.
|
|
28
28
|
The Article Number domain model engine includes EAN-13, EAN-8, and IMEI models.
|
|
29
29
|
Unidom (统一领域对象模型)是一系列的领域模型引擎。物品编码领域模型引擎包括EAN-13、EAN-8和IMEI的模型。
|