expressir 0.2.13-x86-linux → 0.2.14-x86-linux
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a2ab88b557077da6e54d2df433138cf3a440b745536249203c763649d57b712
|
4
|
+
data.tar.gz: 57347638a3019c1cee48d4ed08778d7ce6cd49a2725b1454ef4083835850c84b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84cb2d0637f103076fc7ad895ba270e0ecb953fc02a5c9d17524c767e96b5de7d1cdddea3a05596e23388c79bf187fca9dad3fa6d0fe255f4c960e19623a9c9b
|
7
|
+
data.tar.gz: e44bdf00da70f2983e24635c894c49c388d15a47d672f3b9a2c9fd7b1dc9d2d4fe4cf0a4312db7914a6051573f710dad21d8c0616c2d3056889e89de86eb9a0a
|
@@ -1,6 +1,8 @@
|
|
1
1
|
module Expressir
|
2
2
|
module Model
|
3
3
|
class Schema < ModelElement
|
4
|
+
attr_accessor :file
|
5
|
+
|
4
6
|
include Identifier
|
5
7
|
|
6
8
|
attr_accessor :head_source
|
@@ -16,6 +18,8 @@ module Expressir
|
|
16
18
|
attr_accessor :rules
|
17
19
|
|
18
20
|
def initialize(options = {})
|
21
|
+
@file = options[:file]
|
22
|
+
|
19
23
|
@id = options[:id]
|
20
24
|
@remarks = options.fetch(:remarks, [])
|
21
25
|
@source = options[:source]
|
data/lib/expressir/version.rb
CHANGED
@@ -8,10 +8,15 @@ RSpec.describe Expressir::ExpressExp::Parser do
|
|
8
8
|
|
9
9
|
schemas = repo.schemas
|
10
10
|
expect(schemas.count).to eq(5)
|
11
|
+
expect(schemas[0].file).to eq(sample_files[0])
|
11
12
|
expect(schemas[0].id).to eq("syntax_schema")
|
13
|
+
expect(schemas[1].file).to eq(sample_files[1])
|
12
14
|
expect(schemas[1].id).to eq("remark_schema")
|
15
|
+
expect(schemas[2].file).to eq(sample_files[2])
|
13
16
|
expect(schemas[2].id).to eq("entity_schema")
|
17
|
+
expect(schemas[3].file).to eq(sample_files[2])
|
14
18
|
expect(schemas[3].id).to eq("version_entity_schema")
|
19
|
+
expect(schemas[4].file).to eq(sample_files[2])
|
15
20
|
expect(schemas[4].id).to eq("version_interface_entity_schema")
|
16
21
|
end
|
17
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: expressir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.14
|
5
5
|
platform: x86-linux
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|