drawio_dsl 0.11.3 → 0.11.6

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: dac4173b04b8e13bb159208fc676f52b71f1f782a9505fdde646253e612047de
4
- data.tar.gz: 5315bbf02ea59ba74595a5d4ccae35f1309e3fe7419759263ee1819847e3f7e6
3
+ metadata.gz: c799e3dfe3dbb68930216004ff6b873d2d7f7ff397e6c556844460d6be6e8833
4
+ data.tar.gz: 581dbd1f109f572d79fe35bc3c6b2139456fe52ea1c58c709877c3f1af64c4c6
5
5
  SHA512:
6
- metadata.gz: 28fa31f4011532a2277a0c73b1512d7b8db85750f952e5707306f21c2dfddde52252fcf10a20044e17432ca3a5dca912ce3445f50fa821db3c7acfd83ada29ea
7
- data.tar.gz: 5eb58c9ac1facdfdba7a7fc325183a740be024169b07fe7e6c530cd2f1e02b4af972b599b321c6133068dbf15d145455d29d4847cea015b3f4b8a16d38853da3
6
+ metadata.gz: dc8dcdbf9ab80ffe7ca98caf022ee208adade4e0de4af69b8125868082fbac835500ebf50ec4b9be314c592bbad0c5558b5cbd12369b8a566bf638980ca85f46
7
+ data.tar.gz: 293de738a4116daea9eac13b3b238c79f1134d32eb0101c1db09e80aa63a59db9b44cbb53c451ab0fae5b12390028b2fbe473df087d84ff85fd6fdc7eda106f0
data/.rubocop.yml CHANGED
@@ -70,9 +70,11 @@ Metrics/AbcSize:
70
70
  - "lib/drawio_dsl/configuration.rb"
71
71
  - "lib/drawio_dsl/configuration_shapes.rb"
72
72
  - "lib/drawio_dsl/configuration_themes.rb"
73
+ - "lib/drawio_dsl/schema/line.rb"
73
74
  Metrics/CyclomaticComplexity:
74
75
  Exclude:
75
76
  - "lib/drawio_dsl/drawio_shapes.rb"
77
+ - "lib/drawio_dsl/schema/line.rb"
76
78
  Metrics/MethodLength:
77
79
  Max: 25
78
80
  Exclude:
@@ -84,6 +86,7 @@ Metrics/MethodLength:
84
86
  Metrics/PerceivedComplexity:
85
87
  Exclude:
86
88
  - "lib/drawio_dsl/drawio_shapes.rb"
89
+ - "lib/drawio_dsl/schema/line.rb"
87
90
  Naming/MemoizedInstanceVariableName:
88
91
  Enabled: false
89
92
  Naming/AccessorMethodName:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## [0.11.5](https://github.com/klueless-io/drawio_dsl/compare/v0.11.4...v0.11.5) (2022-03-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add support for :arrow to line ([5511b1a](https://github.com/klueless-io/drawio_dsl/commit/5511b1a56f444b1cac58c11670cdf1ee2e67e0d1))
7
+ * add support for :exit, :entry to line ([3381ff4](https://github.com/klueless-io/drawio_dsl/commit/3381ff45c0e8b4c3458f2c40d7e34f5c7a074800))
8
+
9
+ ## [0.11.4](https://github.com/klueless-io/drawio_dsl/compare/v0.11.3...v0.11.4) (2022-03-28)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add support for :design to line ([bc007e4](https://github.com/klueless-io/drawio_dsl/commit/bc007e4fc77ffaf69491b571e840522220773ac3))
15
+ * refactor shapes to use configuration file and split into elements, lines and texts ([6303747](https://github.com/klueless-io/drawio_dsl/commit/630374751a60b797f045ae84b76506c51a3d0c00))
16
+
17
+ ## [0.11.3](https://github.com/klueless-io/drawio_dsl/compare/v0.11.2...v0.11.3) (2022-03-28)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * add new shapes related to line connectors, plus add stroke: configuration ([f1c64bd](https://github.com/klueless-io/drawio_dsl/commit/f1c64bde3d1d665e9abdf20da87a721651f79461))
23
+ * add new shapes related to line connectors, plus add stroke: configuration ([c7bc02b](https://github.com/klueless-io/drawio_dsl/commit/c7bc02b1ad66fe44e8660d21ab5989ade4838e1f))
24
+
1
25
  ## [0.11.2](https://github.com/klueless-io/drawio_dsl/compare/v0.11.1...v0.11.2) (2022-03-26)
2
26
 
3
27