lutaml 0.9.40 → 0.9.41

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: 3a25bacbf3519d5503fcd4170350b61fe5ab7eda2b375a93e4b3d1897bbe7b4b
4
- data.tar.gz: 7f10420fd2ac6ef7bbb963790b935096c9767ff15fbe60561e93a86270cc99f7
3
+ metadata.gz: 0f621771edf0e06706b47f6ae904a914c7b70e7e1aa59deb7014b0b11e78ff44
4
+ data.tar.gz: e73b37317621f4e795637cb720c4e909f7531a92935ae5d199e06559e97092bf
5
5
  SHA512:
6
- metadata.gz: 06cdd75854cf6ab4a665deafd86437d9a8e793d925ac998fd2195d7c2dbea92229844b847ac85cb9ac656b13d9aba58e3d399664a9ad80c4d5d51961ab5a9c9e
7
- data.tar.gz: 6b3385b7cef67d5e7aee600c56397c0bb780676788c62b8beb388e6d6386dd6b89dcab3b9191be703a76b98c855d200a078d3618151fd751ac8d9d46a259e38b
6
+ metadata.gz: c3742c1252a487c8a8345d24c43667be8125b764c0d035c15700fa66ac3ee938055f5b5a2d2bf83888480cae399b208c6677408d7d55174ba43ff53b16987f17
7
+ data.tar.gz: 6e92157660f166291385ee44e55c6e37178494e98aad23e19722d486611458da06bc253c16a9bdf3f16a423a38359d9589a8eab85bcc5d89e4ef4a1170806f82
data/README.adoc CHANGED
@@ -26,7 +26,7 @@ Directly:
26
26
  $ gem install lutaml
27
27
  ----
28
28
 
29
- == Usage
29
+ == Usages
30
30
 
31
31
  === Parsing
32
32
 
@@ -100,6 +100,12 @@ $ lutaml -o assets -t png test.lutaml
100
100
 
101
101
  For additional info refer to `lutaml --help output`.
102
102
 
103
+ == Other Usages
104
+
105
+ * link:docs/lutaml-uml.adoc[Usage with Lutaml::Uml]
106
+ * link:docs/lutaml-express.adoc[Usage with Lutaml::Express]
107
+ * link:docs/lutaml-xmi.adoc[Usage with Lutaml::XMI]
108
+ // * link:docs/lutaml-sysml.adoc[Usage with Lutaml::Sysml]
103
109
 
104
110
  == Copyright and license
105
111
 
@@ -0,0 +1,35 @@
1
+ = Lutaml::Express
2
+
3
+ Lutaml::Express provides functionality to parse and manipulate EXPRESS files,
4
+ enabling seamless integration with the Lutaml framework.
5
+
6
+ == Usages
7
+
8
+ The parser `Lutaml::Express::Parsers::Exp` is used to parse EXPRESS schema file
9
+ `.exp` into `Expressir::Model::Repository` model.
10
+
11
+ === Examples
12
+
13
+ .EXPRESS schema file parsing
14
+ [example]
15
+ ====
16
+
17
+ When using the `Lutaml::Express::Parsers::Exp` parser, you can parse an EXPRESS
18
+ schema file as follows:
19
+
20
+ [source,ruby]
21
+ ----
22
+ require "lutaml"
23
+
24
+ Lutaml::Express::Parsers::Exp.parse(File.new("path/to/example.exp"))
25
+ # => returns Expressir::Model::Repository model
26
+ ----
27
+
28
+
29
+ `Expressir::Model::Repository` is a Lutaml model that can be further processed
30
+ or converted to other formats.
31
+
32
+ Please refer to https://github.com/lutaml/expressir[expressir] or
33
+ https://github.com/lutaml/lutaml-model[lutaml-model] for more details.
34
+
35
+ ====
@@ -0,0 +1,10 @@
1
+ = Lutaml::Sysml
2
+
3
+ Lutaml::Sysml extends Lutaml::Uml by adding concepts relevant to systems
4
+ engineering, supporting a Model-Based Systems Engineering (MBSE) approach
5
+ throughout the entire system lifecycle.
6
+
7
+ == Usage
8
+
9
+ Lutaml::Sysml provides specialized diagram types and elements for systems engineering modeling.
10
+
@@ -0,0 +1,111 @@
1
+ = Lutaml::Uml
2
+
3
+ Lutaml::Uml is a language for specifying UML class diagrams and a tool for
4
+ converting it into various different formats.
5
+
6
+ == Language
7
+
8
+ See link:lutaml_syntax.adoc[LutaML syntax]
9
+
10
+ == Usages
11
+
12
+ Converter executables are available:
13
+
14
+ * PlantUML WSD or PUML to LutaML UML: `lutaml-wsd2uml`
15
+ * LutaML YAML to LutaML UML: `lutaml-yaml2uml`
16
+
17
+ === Examples
18
+
19
+ .PlantUML to LutaML UML
20
+ [example]
21
+ ====
22
+
23
+ Given the following PlantUML PUML file `example.puml`:
24
+
25
+ [source,plantuml]
26
+ ----
27
+ @startuml
28
+ Alice -> Bob: Authentication Request
29
+ Bob --> Alice: Authentication Response
30
+ @enduml
31
+ ----
32
+
33
+ Running the command:
34
+
35
+ ```
36
+ lutaml-wsd2uml example.puml
37
+ ```
38
+
39
+ The following results will be produced:
40
+
41
+ [source,lutaml]
42
+ ----
43
+ diagram plantuml-simple.puml {
44
+ association {
45
+ owner Alice
46
+ member Request
47
+ member_type direct
48
+ }
49
+ association {
50
+ owner Bob
51
+ member Response
52
+ member_type direct
53
+ }
54
+ }
55
+ ----
56
+ ====
57
+
58
+ .LutaML YAML to LutaML UML
59
+ [example]
60
+ ====
61
+
62
+ Given the following LutaML YAML file `Address.yml`:
63
+
64
+ [source,yaml]
65
+ ----
66
+ name: Address
67
+ modelType: class
68
+ relations:
69
+ - target: AddressComponent
70
+ relationship:
71
+ source:
72
+ type: aggregation
73
+ attributes:
74
+ address:
75
+ cardinality:
76
+ min: 1
77
+ max: "*"
78
+ target:
79
+ type: direct
80
+ attributes:
81
+ addressComponent:
82
+ cardinality:
83
+ min: 1
84
+ max: "*"
85
+ action:
86
+ verb: comprises
87
+ direction: target
88
+ ----
89
+
90
+ Running the command:
91
+
92
+ ```
93
+ lutaml-yaml2uml Address.yml
94
+ ```
95
+
96
+ The following results will be produced:
97
+
98
+ [source,lutaml]
99
+ ----
100
+ diagram Address {
101
+ title ''
102
+ caption ''
103
+ association {
104
+ owner_type aggregation
105
+ owner
106
+ member_type direct
107
+ member AddressComponent
108
+ }
109
+ }
110
+ ----
111
+ ====
@@ -0,0 +1,33 @@
1
+ = Lutaml::XMI
2
+
3
+ Lutaml::XMI provides functionality to parse and manipulate
4
+ Enterprise Architecture XMI files.
5
+
6
+ == Usages
7
+
8
+ The parser `Lutaml::XMI::Parsers::XML` is used to parse XMI files into
9
+ `Lutaml::Uml::Document` model.
10
+
11
+ === Examples
12
+
13
+ .Parsing XMI file
14
+ [example]
15
+ ====
16
+
17
+ When using the `Lutaml::XMI::Parsers::XML` parser, you can parse an XMI
18
+ file as follows:
19
+
20
+ [source,ruby]
21
+ ----
22
+ require "lutaml"
23
+
24
+ Lutaml::XMI::Parsers::XML.parse(File.new("path/to/example.xmi"))
25
+ # => returns Lutaml::Uml::Document model
26
+ ----
27
+
28
+ `Lutaml::Uml::Document` model is a Lutaml model that can be further processed or
29
+ converted to other formats.
30
+
31
+ Please refer to https://github.com/lutaml/lutaml-model[lutaml-model] for more details.
32
+
33
+ ====
data/exe/lutaml-yaml2uml CHANGED
@@ -84,7 +84,7 @@ view_yaml["relations"]&.each do |values|
84
84
  process_association(values["source"], values, encountered_relations)
85
85
  end
86
86
 
87
- view_yaml["imports"].each_key do |entry| # rubocop:disable Metrics/BlockLength
87
+ view_yaml["imports"]&.each_key do |entry| # rubocop:disable Metrics/BlockLength
88
88
  import = YAML.safe_load(File.read(File.join(models_path, "#{entry}.yml")))
89
89
  import_name = import["name"] || File.basename(entry)
90
90
  # Class notation
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "lutaml/express/version"
4
3
  require "lutaml/express/parsers/exp"
5
4
 
6
5
  module Lutaml
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Allocate < Lutaml::Uml::Abstraction
4
4
  attr_accessor :base_abstraction
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Allocated < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_named_element, :allocated_from, :allocated_to
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class BindingConnector < Lutaml::Uml::Connector
4
4
  attr_accessor :base_connector
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Block < Lutaml::Uml::Class
4
4
  attr_accessor :base_class
5
5
 
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class ConstraintBlock < Block
4
4
  def initialize # rubocop:disable Lint/MissingSuper
5
5
  @xmi_id = nil
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Copy < Trace
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class DeriveRequirement < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_abstraction
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class NestedConnectorEnd < Lutaml::Uml::ConnectorEnd
4
4
  attr_accessor :base_connectorend, :property_path
5
5
 
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Refine < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_abstraction
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class RequirementRelated < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_named_element, :satisfies, :refines
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Satisfy < Trace
4
4
  attr_accessor :base_realization
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class TestCase < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_behavior, :verifies
5
5
 
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Trace < Lutaml::Uml::TopElement
4
4
  attr_accessor :base_abstraction
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class Verify < Trace
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  module Lutaml
2
- module SysMl
2
+ module Sysml
3
3
  class XmiFile
4
4
  attr_accessor :package_list, :model_list, :class_list, :activity_list,
5
5
  :property_list, :port_list,
data/lib/lutaml/sysml.rb CHANGED
@@ -1,4 +1,3 @@
1
- require "lutaml/sysml/version"
2
1
  require "lutaml/uml"
3
2
  require "nokogiri"
4
3
 
@@ -1,3 +1,3 @@
1
1
  module Lutaml
2
- VERSION = "0.9.40".freeze
2
+ VERSION = "0.9.41".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lutaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.40
4
+ version: 0.9.41
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-21 00:00:00.000000000 Z
11
+ date: 2025-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: expressir
@@ -197,7 +197,6 @@ files:
197
197
  - ".rubocop.yml"
198
198
  - CODE_OF_CONDUCT.md
199
199
  - Gemfile
200
- - LUTAML.adoc
201
200
  - Makefile
202
201
  - README.adoc
203
202
  - Rakefile
@@ -206,7 +205,11 @@ files:
206
205
  - bin/plantuml2lutaml
207
206
  - bin/setup
208
207
  - bin/yaml2lutaml
209
- - docs/UML_README.adoc
208
+ - docs/lutaml-express.adoc
209
+ - docs/lutaml-sysml.adoc
210
+ - docs/lutaml-uml.adoc
211
+ - docs/lutaml-xmi.adoc
212
+ - docs/lutaml_syntax.adoc
210
213
  - exe/lutaml
211
214
  - exe/lutaml-sysml
212
215
  - exe/lutaml-wsd2uml
@@ -216,9 +219,7 @@ files:
216
219
  - lib/lutaml/converter/dsl_to_uml.rb
217
220
  - lib/lutaml/converter/xmi_hash_to_uml.rb
218
221
  - lib/lutaml/express.rb
219
- - lib/lutaml/express/README.adoc
220
222
  - lib/lutaml/express/parsers/exp.rb
221
- - lib/lutaml/express/version.rb
222
223
  - lib/lutaml/formatter.rb
223
224
  - lib/lutaml/formatter/base.rb
224
225
  - lib/lutaml/formatter/graphviz.rb
@@ -226,7 +227,6 @@ files:
226
227
  - lib/lutaml/layout/graph_viz_engine.rb
227
228
  - lib/lutaml/parser.rb
228
229
  - lib/lutaml/sysml.rb
229
- - lib/lutaml/sysml/README.md
230
230
  - lib/lutaml/sysml/allocate.rb
231
231
  - lib/lutaml/sysml/allocated.rb
232
232
  - lib/lutaml/sysml/binding_connector.rb
@@ -242,7 +242,6 @@ files:
242
242
  - lib/lutaml/sysml/test_case.rb
243
243
  - lib/lutaml/sysml/trace.rb
244
244
  - lib/lutaml/sysml/verify.rb
245
- - lib/lutaml/sysml/version.rb
246
245
  - lib/lutaml/sysml/xmi_file.rb
247
246
  - lib/lutaml/uml.rb
248
247
  - lib/lutaml/uml/abstraction.rb
@@ -305,7 +304,6 @@ files:
305
304
  - lib/lutaml/uml/vertex.rb
306
305
  - lib/lutaml/version.rb
307
306
  - lib/lutaml/xmi.rb
308
- - lib/lutaml/xmi/README.adoc
309
307
  - lib/lutaml/xmi/liquid_drops/association_drop.rb
310
308
  - lib/lutaml/xmi/liquid_drops/attribute_drop.rb
311
309
  - lib/lutaml/xmi/liquid_drops/cardinality_drop.rb
data/docs/UML_README.adoc DELETED
@@ -1,44 +0,0 @@
1
- # Lutaml::Uml
2
-
3
- image:https://badge.fury.io/rb/lutaml-uml.svg["Gem Version", link="https://badge.fury.io/rb/lutaml-uml"]
4
-
5
- image:https://github.com/lutaml/lutaml-uml/actions/workflows/macos.yml/badge.svg["macos", link="https://github.com/lutaml/lutaml-uml/actions/workflows/macos.yml"]
6
- image:https://github.com/lutaml/lutaml-uml/actions/workflows/ubuntu.yml/badge.svg["ubuntu", link="https://github.com/lutaml/lutaml-uml/actions/workflows/ubuntu.yml"]
7
- image:https://github.com/lutaml/lutaml-uml/actions/workflows/windows.yml/badge.svg["windows", link="https://github.com/lutaml/lutaml-uml/actions/workflows/windows.yml"]
8
-
9
- Lutaml is a language for specifying UML class diagrams and a tool for converting it into various different formats.
10
-
11
- ## Install
12
-
13
- ### Bundler: `gem "lutaml-uml"`
14
-
15
- ### RubyGems: `gem install lutaml-uml`
16
-
17
- ## Language
18
-
19
- See link:LUTAML.adoc[LUTAML.adoc]
20
-
21
- ## Usage
22
-
23
- Converter executables are available:
24
-
25
- * PlantUML WSD to LutaML UML: `lutaml-wsd2uml`
26
- * LutaML YAML to LutaML UML: `lutaml-yaml2uml`
27
-
28
- EXAMPLE: `lutaml-wsd2uml mn/metanorma-model-standoc/models/StandardDoc_Blocks_New.wsd`
29
-
30
-
31
- ## Development
32
-
33
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
34
-
35
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
36
-
37
- ## Contributing
38
-
39
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lutaml-uml. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lutaml-uml/blob/master/CODE_OF_CONDUCT.md).
40
-
41
-
42
- ## Code of Conduct
43
-
44
- Everyone interacting in the Lutaml::Uml project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/lutaml-uml/blob/master/CODE_OF_CONDUCT.md).
@@ -1,55 +0,0 @@
1
- image:https://img.shields.io/gem/v/lutaml-express.svg["Gem Version", link="https://rubygems.org/gems/lutaml-express"]
2
- // image:https://codeclimate.com/github/lutaml/lutaml-express/badges/gpa.svg["Code Climate", link="https://codeclimate.com/github/lutaml/lutaml-express"]
3
- image:https://github.com/lutaml/lutaml-express/workflows/rake/badge.svg["Build Status", link="https://github.com/lutaml/lutaml-express/actions?workflow=rake"]
4
-
5
- = lutaml-express
6
-
7
- == Functionality
8
-
9
- Gem-extention for lutaml, works with EXPRESS files
10
-
11
- === Installation
12
-
13
- With bundler:
14
-
15
- [source,ruby]
16
- ----
17
- # Gemfile
18
- gem "lutaml-express"
19
- ----
20
-
21
- Then in console:
22
-
23
- [source,console]
24
- ----
25
- $ bundle
26
- ----
27
-
28
- With RubyGems:
29
-
30
- [source,console]
31
- ----
32
- $ gem install lutaml-express
33
- ----
34
-
35
- === Usage
36
-
37
- [source,ruby]
38
- ----
39
- Lutaml::Express::Parsers::Exp.parse(File.new('/path/to/file.exp')) # => Expressir::Model::Repository
40
- ----
41
-
42
- == Development
43
-
44
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
45
-
46
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
47
-
48
- ## Contributing
49
-
50
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lutaml-express. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lutaml-express/blob/master/CODE_OF_CONDUCT.md).
51
-
52
-
53
- == Code of Conduct
54
-
55
- Everyone interacting in the Lutaml::Uml project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/lutaml-express/blob/master/CODE_OF_CONDUCT.md).
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Lutaml
4
- module Express
5
- VERSION = "0.2.1"
6
- end
7
- end
@@ -1,40 +0,0 @@
1
- # Lutaml::Sysml
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/lutaml/sysml`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'lutaml-sysml'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle install
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install lutaml-sysml
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lutaml-sysml. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lutaml-sysml/blob/master/CODE_OF_CONDUCT.md).
36
-
37
-
38
- ## Code of Conduct
39
-
40
- Everyone interacting in the Lutaml::Sysml project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/lutaml-sysml/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +0,0 @@
1
- module Lutaml
2
- module Sysml
3
- VERSION = "0.1.0".freeze
4
- end
5
- end
@@ -1,24 +0,0 @@
1
- # Lutaml::Uml
2
-
3
- Lutaml-xmi is a parser for XML Metadata Interchange (XMI) Specification files.
4
-
5
- ## Install
6
-
7
- ### Bundler: `gem "lutaml-xmi"`
8
-
9
- ### RubyGems: `gem install lutaml-xmi`
10
-
11
- ## Development
12
-
13
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
14
-
15
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
16
-
17
- ## Contributing
18
-
19
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lutaml-xmi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lutaml-xmi/blob/master/CODE_OF_CONDUCT.md).
20
-
21
-
22
- ## Code of Conduct
23
-
24
- Everyone interacting in the Lutaml::Uml project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/lutaml-xmi/blob/master/CODE_OF_CONDUCT.md).
File without changes