qualiac_twine 0.0.1 → 0.0.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 +4 -4
- data/lib/qualiac_twine/formatter/qkr_string_swift.rb +4 -3
- data/qualiac_twine.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e370da3234545229ac2f8d131e6a12999cb4a47f04aa2ab0439149f7fdae95b
|
4
|
+
data.tar.gz: 3cee6675b6e797362364b455605c9debe2fe1f976fe628e494a0fb3f735fe3ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a223fcadc61b44f5c96dde1807002addfa9fff38807c99eff5fbf0c4c23878119fcf0baf9e4ad1a7b41e03cfd40e277d89edbe71b34d72639fa2debf322bc1d5
|
7
|
+
data.tar.gz: 24ada185aa51841a0c959845c6be731c0fb7b830983fdaf1a7c76de3fd3547aa41fd08a778cb04b1c53f6a221fc999be8a28c4e2f21cd579cf99b11bd24c4586
|
@@ -35,12 +35,13 @@ module Twine
|
|
35
35
|
def format_sections(twine_file, lang)
|
36
36
|
result = "import Foundation\n"
|
37
37
|
result += "import QualiacApp\n\n"
|
38
|
-
result += "// swiftlint:disable identifier_name line_length superfluous_disable_command"
|
39
|
-
result += "extension QKRString {"
|
38
|
+
result += "// swiftlint:disable identifier_name line_length superfluous_disable_command\n"
|
39
|
+
result += "extension QKRString {\n"
|
40
40
|
|
41
41
|
result += super + "\n"
|
42
42
|
|
43
|
-
result += "}"
|
43
|
+
result += "}\n"
|
44
|
+
result += "// swiftlint:enable identifier_name line_length superfluous_disable_command"
|
44
45
|
end
|
45
46
|
|
46
47
|
def format_section_header(section)
|
data/qualiac_twine.gemspec
CHANGED