lutaml-lml 0.1.1 → 0.1.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
  SHA256:
3
- metadata.gz: 16aa3d91bcea83c3eec5b3ab8ae3d3c9b91386d39abf80da4da5704487d22edf
4
- data.tar.gz: e1a1db496cd7888458915a831f874b16e72f6894b251740bc873aea17f6bf6b3
3
+ metadata.gz: 7d0abfcd0323da47f7c05a6df8de6ddd2a17b91a6c022f2d503372bf9ad3ad62
4
+ data.tar.gz: 98a5f6ba03661fb78b761e590631aef8870171332cbebe9a51d173633fc1e4a5
5
5
  SHA512:
6
- metadata.gz: f407f3ce4984f37f9b0a4c5932e99b4062439aceb6287a43e960f9166eeb0b3476a675981afd6777d453a1e895f09e576e0ea4b813cd42921712999bb8f38cca
7
- data.tar.gz: 04705fa33b170b9966ef004a743100c4490c4dd954b43cb2cfe243badbaf6d3b898aea33b24dd980f14d2074bc4db83db2ddf2e4f64dae79bd4b911a84db8999
6
+ metadata.gz: 77d556ec76e8d1fc4d60b3d903211d39223f35ed04cbde561e812ca8eadd3ef93553364d36e404c59372add94eb24ca99132147446875eb2e47bebf1e9e90484
7
+ data.tar.gz: 8124cc37dac4d70ef905a1b8edb80d23acc40efe1d73496c15414250fb13d15f5dc86ebf576ff674b32d4aa3dd9e5ff69a1c7a33df558f56925813ca064aa035
data/exe/lutaml-lml ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "lutaml/lml/cli"
5
+
6
+ Lutaml::Cli::LmlCommands.start(ARGV)
@@ -38,7 +38,7 @@ module Lutaml
38
38
  attribute_keyword? >>
39
39
  spaces? >>
40
40
  quotes? >>
41
- match['a-zA-Z0-9_\- \/\+'].repeat(1).as(:type) >>
41
+ match['a-zA-Z0-9_\- :\/\+'].repeat(1).as(:type) >>
42
42
  quotes? >>
43
43
  spaces?
44
44
  )
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lutaml
4
4
  module Lml
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lutaml-lml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-08-18 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: lutaml-model
@@ -70,10 +71,12 @@ description: 'Parses LML (.lml / .lutaml) text syntax into UML/LML domain models
70
71
  (collections, imports, exports).'
71
72
  email:
72
73
  - open.source@ribose.com
73
- executables: []
74
+ executables:
75
+ - lutaml-lml
74
76
  extensions: []
75
77
  extra_rdoc_files: []
76
78
  files:
79
+ - exe/lutaml-lml
77
80
  - lib/lutaml/lml.rb
78
81
  - lib/lutaml/lml/association_label_resolver.rb
79
82
  - lib/lutaml/lml/cli.rb
@@ -158,6 +161,7 @@ metadata:
158
161
  homepage_uri: https://github.com/lutaml/lutaml-lml
159
162
  source_code_uri: https://github.com/lutaml/lutaml-lml
160
163
  changelog_uri: https://github.com/lutaml/lutaml-lml/releases
164
+ post_install_message:
161
165
  rdoc_options: []
162
166
  require_paths:
163
167
  - lib
@@ -172,7 +176,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
176
  - !ruby/object:Gem::Version
173
177
  version: '0'
174
178
  requirements: []
175
- rubygems_version: 3.6.9
179
+ rubygems_version: 3.5.22
180
+ signing_key:
176
181
  specification_version: 4
177
182
  summary: LutaML Model Language (LML) parser and converter
178
183
  test_files: []