xmi 0.3.21 → 0.5.0

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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/release.yml +13 -6
  3. data/.gitignore +2 -1
  4. data/.rubocop.yml +12 -13
  5. data/.rubocop_todo.yml +150 -13
  6. data/CHANGELOG.md +55 -0
  7. data/CODE_OF_CONDUCT.md +84 -0
  8. data/Gemfile +10 -0
  9. data/README.adoc +319 -6
  10. data/benchmark_parse.rb +60 -0
  11. data/docs/migration.md +141 -0
  12. data/docs/versioning.md +255 -0
  13. data/lib/xmi/add.rb +14 -38
  14. data/lib/xmi/{the_custom_profile.rb → custom_profile.rb} +25 -25
  15. data/lib/xmi/delete.rb +14 -38
  16. data/lib/xmi/difference.rb +14 -38
  17. data/lib/xmi/documentation.rb +16 -101
  18. data/lib/xmi/ea_root.rb +114 -33
  19. data/lib/xmi/extension.rb +6 -6
  20. data/lib/xmi/namespace/dynamic.rb +28 -0
  21. data/lib/xmi/namespace/omg.rb +81 -0
  22. data/lib/xmi/namespace/sparx.rb +39 -0
  23. data/lib/xmi/namespace.rb +9 -0
  24. data/lib/xmi/namespace_detector.rb +138 -0
  25. data/lib/xmi/namespace_registry.rb +119 -0
  26. data/lib/xmi/parsing.rb +113 -0
  27. data/lib/xmi/replace.rb +14 -38
  28. data/lib/xmi/root.rb +49 -213
  29. data/lib/xmi/sparx/connector.rb +241 -0
  30. data/lib/xmi/sparx/custom_profile.rb +19 -0
  31. data/lib/xmi/sparx/diagram.rb +97 -0
  32. data/lib/xmi/sparx/ea_stub.rb +20 -0
  33. data/lib/xmi/{extensions/eauml.rb → sparx/ea_uml.rb} +3 -2
  34. data/lib/xmi/sparx/element.rb +453 -0
  35. data/lib/xmi/sparx/extension.rb +43 -0
  36. data/lib/xmi/{extensions → sparx}/gml.rb +9 -3
  37. data/lib/xmi/sparx/mappings/base_mapping.rb +182 -0
  38. data/lib/xmi/sparx/mappings.rb +10 -0
  39. data/lib/xmi/sparx/primitive_type.rb +18 -0
  40. data/lib/xmi/sparx/root.rb +60 -0
  41. data/lib/xmi/sparx/sys_ph_s.rb +18 -0
  42. data/lib/xmi/sparx.rb +17 -1376
  43. data/lib/xmi/type.rb +37 -0
  44. data/lib/xmi/uml.rb +191 -469
  45. data/lib/xmi/v20110701.rb +81 -0
  46. data/lib/xmi/v20131001.rb +68 -0
  47. data/lib/xmi/v20161101.rb +61 -0
  48. data/lib/xmi/version.rb +1 -1
  49. data/lib/xmi/version_registry.rb +164 -0
  50. data/lib/xmi/versioned.rb +142 -0
  51. data/lib/xmi.rb +83 -11
  52. data/scripts-xmi-profile/profile_xmi_simple.rb +213 -0
  53. data/xmi.gemspec +3 -9
  54. metadata +38 -77
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 417ea26dbb49b0f746cdbf966d8dad802cace2d418d6162564c5a7d5a391b4ce
4
- data.tar.gz: b1bc0f232eb2dc2d46fa20740da843cf596c1bcb060a620544a4df58c8d9770a
3
+ metadata.gz: 7ef7e586a3a637179d25efce69e62366184380659e0aa757a5c57327e8c190aa
4
+ data.tar.gz: c8331b279ba8c54c8333dc4c954a2812558a35f844811c641ed49922fbe11492
5
5
  SHA512:
6
- metadata.gz: b2688ad891bca39b56decaca87e08cc18df996eef98f84db010e5506b38675702003b48f8987f166ed45425ab53de4b69b817f2154edfe9e51260155ef2ef9b1
7
- data.tar.gz: 64af4239404c4c4fc598b04adef8a4986798db0be66c35f9add1d456dba4c35952e178b0c8300ebfecdee1f4ceeba56daaac001792001a82af51606212869ead
6
+ metadata.gz: 36141b75f57006f831f6c9e1081f73a737a08e79bd281f295de59a39ff495ef91fa0437899842158d49688b0b08f8b8a5801ade3c6a17f0dbbbce93b1cf4d07d
7
+ data.tar.gz: 5bbd57fbae92032dbf081532f905974bf89f1faafa1c07a49d40d794050972a1d11ffeaff8b361fe3256f662a6e30a9ec855b14a372a9ef77ecf037d2817fd33
@@ -1,22 +1,29 @@
1
+ # Auto-generated by Cimas: Do not edit it manually!
2
+ # See https://github.com/metanorma/cimas
1
3
  name: release
2
4
 
5
+ permissions:
6
+ contents: write
7
+ packages: write
8
+ id-token: write
9
+
3
10
  on:
4
11
  workflow_dispatch:
5
12
  inputs:
6
13
  next_version:
7
14
  description: |
8
- Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
15
+ Next release version. Possible values: x.y.z, major, minor, patch (or pre|rc|etc).
16
+ Also, you can pass 'skip' to skip 'git tag' and do 'gem push' for the current version
9
17
  required: true
10
18
  default: 'skip'
11
- push:
12
- tags: [ v* ]
19
+ repository_dispatch:
20
+ types: [ do-release ]
21
+
13
22
 
14
23
  jobs:
15
24
  release:
16
- uses: metanorma/ci/.github/workflows/rubygems-release.yml@main
25
+ uses: lutaml/support/.github/workflows/release.yml@main
17
26
  with:
18
27
  next_version: ${{ github.event.inputs.next_version }}
19
28
  secrets:
20
29
  rubygems-api-key: ${{ secrets.LUTAML_CI_RUBYGEMS_API_KEY }}
21
- pat_token: ${{ secrets.LUTAML_CI_PAT_TOKEN }}
22
-
data/.gitignore CHANGED
@@ -12,4 +12,5 @@
12
12
  .ruby-version
13
13
  .vscode
14
14
  Gemfile.lock
15
- .DS_Store
15
+ .DS_Store
16
+ /old-docs
data/.rubocop.yml CHANGED
@@ -1,16 +1,15 @@
1
- inherit_from: .rubocop_todo.yml
1
+ inherit_from:
2
+ - https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
3
+ - .rubocop_todo.yml
2
4
 
3
- AllCops:
4
- TargetRubyVersion: 3.0
5
- Exclude:
6
- - "references/codes/**/*.rb"
7
- - "vendor/bundle/**/*"
8
-
9
- Style/StringLiterals:
10
- EnforcedStyle: double_quotes
5
+ inherit_mode:
6
+ merge:
7
+ - Exclude
11
8
 
12
- Style/StringLiteralsInInterpolation:
13
- EnforcedStyle: double_quotes
9
+ plugins:
10
+ - rubocop-rspec
11
+ - rubocop-performance
12
+ - rubocop-rake
14
13
 
15
- Documentation:
16
- Enabled: false
14
+ AllCops:
15
+ TargetRubyVersion: 3.2
data/.rubocop_todo.yml CHANGED
@@ -1,31 +1,168 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2025-03-19 17:04:06 UTC using RuboCop version 1.74.0.
3
+ # on 2026-03-22 01:00:16 UTC using RuboCop version 1.85.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 2
9
+ # Offense count: 1
10
+ Gemspec/RequiredRubyVersion:
11
+ Exclude:
12
+ - 'xmi.gemspec'
13
+
14
+ # Offense count: 8
10
15
  # This cop supports safe autocorrection (--autocorrect).
11
- # Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
12
- # SupportedHashRocketStyles: key, separator, table
13
- # SupportedColonStyles: key, separator, table
14
- # SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
15
- Layout/HashAlignment:
16
+ # Configuration parameters: Width, EnforcedStyleAlignWith, AllowedPatterns.
17
+ # SupportedStylesAlignWith: start_of_line, relative_to_receiver
18
+ Layout/IndentationWidth:
16
19
  Exclude:
17
- - 'lib/xmi/sparx.rb'
20
+ - 'scripts-xmi-profile/profile_xmi_simple.rb'
21
+
22
+ # Offense count: 67
23
+ # This cop supports safe autocorrection (--autocorrect).
24
+ # Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
25
+ # URISchemes: http, https
26
+ Layout/LineLength:
27
+ Enabled: false
18
28
 
19
29
  # Offense count: 2
20
30
  # This cop supports safe autocorrection (--autocorrect).
31
+ # Configuration parameters: EnforcedStyle, IndentationWidth.
32
+ # SupportedStyles: aligned, indented, indented_relative_to_receiver
33
+ Layout/MultilineMethodCallIndentation:
34
+ Exclude:
35
+ - 'spec/xmi/sparx/sparx_root_citygml_spec.rb'
36
+
37
+ # Offense count: 3
38
+ # This cop supports safe autocorrection (--autocorrect).
21
39
  # Configuration parameters: AllowInHeredoc.
22
40
  Layout/TrailingWhitespace:
23
41
  Exclude:
24
- - 'lib/xmi/sparx.rb'
42
+ - 'scripts-xmi-profile/profile_xmi_simple.rb'
43
+ - 'spec/xmi/versioning_spec.rb'
44
+
45
+ # Offense count: 2
46
+ # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
47
+ Metrics/AbcSize:
48
+ Exclude:
49
+ - 'lib/xmi/ea_root.rb'
50
+ - 'lib/xmi/version_registry.rb'
51
+
52
+ # Offense count: 94
53
+ # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode.
54
+ # AllowedMethods: refine
55
+ Metrics/BlockLength:
56
+ Max: 143
57
+
58
+ # Offense count: 12
59
+ # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
60
+ Metrics/MethodLength:
61
+ Max: 25
62
+
63
+ # Offense count: 1
64
+ # Configuration parameters: AllowedMethods, AllowedPatterns, Max.
65
+ Metrics/PerceivedComplexity:
66
+ Exclude:
67
+ - 'lib/xmi/version_registry.rb'
68
+
69
+ # Offense count: 13
70
+ # Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
71
+ # SupportedStyles: snake_case, normalcase, non_integer
72
+ # AllowedIdentifiers: TLS1_1, TLS1_2, capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
73
+ Naming/VariableNumber:
74
+ Exclude:
75
+ - 'lib/xmi/v20110701.rb'
76
+ - 'lib/xmi/v20131001.rb'
77
+ - 'lib/xmi/v20161101.rb'
78
+ - 'spec/xmi/versioning_spec.rb'
79
+
80
+ # Offense count: 1
81
+ # This cop supports unsafe autocorrection (--autocorrect-all).
82
+ Performance/TimesMap:
83
+ Exclude:
84
+ - 'benchmark_parse.rb'
85
+
86
+ # Offense count: 1
87
+ RSpec/BeforeAfterAll:
88
+ Exclude:
89
+ - 'spec/xmi/edge_cases_spec.rb'
90
+
91
+ # Offense count: 12
92
+ # Configuration parameters: Prefixes, AllowedPatterns.
93
+ # Prefixes: when, with, without
94
+ RSpec/ContextWording:
95
+ Exclude:
96
+ - 'spec/xmi/sparx/sparx_root_citygml_rel_ns_spec.rb'
97
+ - 'spec/xmi/sparx/sparx_root_citygml_spec.rb'
98
+ - 'spec/xmi/sparx/sparx_root_eauml_spec.rb'
99
+ - 'spec/xmi/sparx/sparx_root_gml_spec.rb'
100
+ - 'spec/xmi/sparx/sparx_root_mdg_spec.rb'
101
+
102
+ # Offense count: 3
103
+ # Configuration parameters: IgnoredMetadata.
104
+ RSpec/DescribeClass:
105
+ Exclude:
106
+ - 'spec/xmi/edge_cases_spec.rb'
107
+ - 'spec/xmi/namespace_aliases_spec.rb'
108
+ - 'spec/xmi/versioning_spec.rb'
109
+
110
+ # Offense count: 4
111
+ # This cop supports unsafe autocorrection (--autocorrect-all).
112
+ # Configuration parameters: SkipBlocks, EnforcedStyle, OnlyStaticConstants.
113
+ # SupportedStyles: described_class, explicit
114
+ RSpec/DescribedClass:
115
+ Exclude:
116
+ - 'spec/xmi/sparx/sparx_root_citygml_spec.rb'
117
+
118
+ # Offense count: 26
119
+ # Configuration parameters: CountAsOne.
120
+ RSpec/ExampleLength:
121
+ Max: 31
25
122
 
26
123
  # Offense count: 2
27
124
  # This cop supports safe autocorrection (--autocorrect).
28
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
29
- # URISchemes: http, https
30
- Layout/LineLength:
31
- Max: 135
125
+ # Configuration parameters: CustomTransform, IgnoredWords, DisallowedExamples.
126
+ # DisallowedExamples: works
127
+ RSpec/ExampleWording:
128
+ Exclude:
129
+ - 'spec/xmi/sparx/sparx_root_eauml_spec.rb'
130
+ - 'spec/xmi/sparx/sparx_root_gml_spec.rb'
131
+
132
+ # Offense count: 35
133
+ RSpec/MultipleExpectations:
134
+ Max: 8
135
+
136
+ # Offense count: 10
137
+ # Configuration parameters: AllowSubject.
138
+ RSpec/MultipleMemoizedHelpers:
139
+ Max: 7
140
+
141
+ # Offense count: 7
142
+ # Configuration parameters: AllowedGroups.
143
+ RSpec/NestedGroups:
144
+ Max: 4
145
+
146
+ # Offense count: 1
147
+ # This cop supports safe autocorrection (--autocorrect).
148
+ # Configuration parameters: EnforcedStyle.
149
+ # SupportedStyles: trailing_conditional, ternary
150
+ Style/EmptyStringInsideInterpolation:
151
+ Exclude:
152
+ - 'scripts-xmi-profile/profile_xmi_simple.rb'
153
+
154
+ # Offense count: 5
155
+ # Configuration parameters: AllowedClasses.
156
+ Style/OneClassPerFile:
157
+ Exclude:
158
+ - 'lib/xmi.rb'
159
+ - 'lib/xmi/namespace/dynamic.rb'
160
+ - 'spec/xmi/sparx/shared_contexts.rb'
161
+
162
+ # Offense count: 1
163
+ # This cop supports safe autocorrection (--autocorrect).
164
+ # Configuration parameters: EnforcedStyleForMultiline.
165
+ # SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
166
+ Style/TrailingCommaInArguments:
167
+ Exclude:
168
+ - 'spec/xmi/sparx/sparx_root_citygml_spec.rb'
data/CHANGELOG.md ADDED
@@ -0,0 +1,55 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+
12
+ - Namespace-bound registers for version-aware type resolution
13
+ - `Register#bind_namespace` for binding registers to namespaces
14
+ - `Register#resolve_in_namespace` for namespace-aware type lookup
15
+ - `Register#import_model_tree` for importing entire model trees
16
+ - `GlobalContext#register_for_namespace` for reverse namespace lookup
17
+ - Version-aware XML parsing in `Document#parse_element`
18
+ - `Xmi::Versioned` module for version-specific model organization
19
+ - `Xmi::Common` module for shared models
20
+ - `Xmi::VersionRegistry` for version management
21
+ - `Xmi::V20110701`, `Xmi::V20131001`, `Xmi::V20161101` version modules
22
+ - `Xmi::Parsing` unified API for version-aware parsing
23
+ - `Xmi.parse` and `Xmi.parse_with_version` convenience methods
24
+ - `Xmi::Parsing.detect_version` for version detection without full parsing
25
+ - `Xmi::Parsing.parse_file` for parsing XMI files
26
+ - `Xmi::Parsing.supported_versions` and `Xmi::Parsing.version_supported?`
27
+ - Version-aware type resolution during XML parsing
28
+ - Mixed namespace document support (XMI version may differ from UML version)
29
+ - `Xmi::VersionRegistry.detect_register` for auto-detecting mixed namespaces
30
+ - `Xmi::VersionRegistry.extend_fallback_for_mixed_namespaces` for fallback chain extension
31
+ - `Xmi::NamespaceRegistry` for namespace URI to class resolution
32
+
33
+ ### Documentation
34
+
35
+ - `docs/versioning.md` - Added mixed namespace document handling section explaining how
36
+ `detect_register` detects all namespace versions and extends the fallback chain
37
+ - `docs/versioning.md` - Added version-specific namespace binding documentation
38
+ - `docs/versioning.md` - Added mixed namespace fallback chain diagram
39
+
40
+ ### Deprecated
41
+
42
+ - `Xmi::ReplaceXmlns` - use `Xmi.parse` instead
43
+
44
+ ### Fixed
45
+
46
+ - Type resolution now considers XML namespace during parsing
47
+ - Version-specific models correctly resolved via fallback chain
48
+
49
+ ## [0.4.0] - 2024-01-01
50
+
51
+ ### Added
52
+
53
+ - Initial release with Sparx EA XMI parsing support
54
+ - Dynamic class generation from extension XML files
55
+ - Support for UML 2.5.1 namespace
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at ronald.tse@ribose.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile CHANGED
@@ -4,3 +4,13 @@ source "https://rubygems.org"
4
4
 
5
5
  # Specify your gem's dependencies in xmi.gemspec
6
6
  gemspec
7
+
8
+ gem "canon"
9
+ gem "lutaml-model", github: "lutaml/lutaml-model", ref: "main"
10
+ gem "rake"
11
+ gem "rspec"
12
+ gem "rubocop"
13
+ gem "rubocop-performance"
14
+ gem "rubocop-rake"
15
+ gem "rubocop-rspec"
16
+ gem "toml-rb"