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: e6e386d0da58e4380e96a8e7f5c7830fe7cb8ab24bf2ab6e7d0c7e2e50101a71
4
- data.tar.gz: 96103115ba3e78375c208fc61ce77ddd765def0de6aba68a2f0767fe0c63a96b
3
+ metadata.gz: 5a2ab88b557077da6e54d2df433138cf3a440b745536249203c763649d57b712
4
+ data.tar.gz: 57347638a3019c1cee48d4ed08778d7ce6cd49a2725b1454ef4083835850c84b
5
5
  SHA512:
6
- metadata.gz: 314ed535af084a77e131086df422c77299d87feecc3604d9312287f7c422d7930209f3093caf8dd886b3c7b792a178e381058b38c8f46181f38a04b04066ffbe
7
- data.tar.gz: 3f7b0e37b739910d7e355ae78fa2f63fe159bbf7e12ca29a3884ecbc166986a628a787593a6b857e7b1aaa26a0649118072cc349a643435253bf14783e75889f
6
+ metadata.gz: 84cb2d0637f103076fc7ad895ba270e0ecb953fc02a5c9d17524c767e96b5de7d1cdddea3a05596e23388c79bf187fca9dad3fa6d0fe255f4c960e19623a9c9b
7
+ data.tar.gz: e44bdf00da70f2983e24635c894c49c388d15a47d672f3b9a2c9fd7b1dc9d2d4fe4cf0a4312db7914a6051573f710dad21d8c0616c2d3056889e89de86eb9a0a
@@ -34,6 +34,8 @@ module Expressir
34
34
  visitor = Visitor.new(parser.tokens)
35
35
  repo = visitor.visit(parse_tree)
36
36
 
37
+ repo.schemas.each{|schema| schema.file = file}
38
+
37
39
  repo
38
40
  end
39
41
 
@@ -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]
@@ -1,3 +1,3 @@
1
1
  module Expressir
2
- VERSION = "0.2.13".freeze
2
+ VERSION = "0.2.14".freeze
3
3
  end
@@ -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.13
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-25 00:00:00.000000000 Z
11
+ date: 2021-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri