qualiac_twine 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a792f47071ef51632b41d74b79af05884fd88fa82dd58d704ad9d7f2131c38ac
4
- data.tar.gz: '08182d50eab6f82cb59c72d52bfdcb328f81cf868e3c7e6c6a90901b2531a844'
3
+ metadata.gz: 0c9cad6b4ff47ca3a0336ec8cee21d9b33853d4259abc6296b8b5cb74de3dabc
4
+ data.tar.gz: 65956a41c115d73f90cfe46bf7679493b9a1a948e27382f59f0a59a80ad50c46
5
5
  SHA512:
6
- metadata.gz: 75779dc90fe70a9e500e4b07eecc20b66ea7f1213da67e9ebea7c922cbae257ae47dead5f7bed3059a2d1adaacdd3aff6c41b75c384b1162f9b2853f28c3bfb7
7
- data.tar.gz: 3533aa5fb566db97b34c1bd7c15fa943bb909a2f3c04a588409868a5b07d47d0875165e34395b1420eec468036f322a81eeea507244cde78251d993db055d7d9
6
+ metadata.gz: fa54426fac779b1f8744631f602a05845b6c51defd42d4fbc0bdaabebfb8e0be93ce284891528d85c4bac5c861cce4f4f097b11af590656485694a0554a04998
7
+ data.tar.gz: 67ea0dfb3b3e4684c4875386e1e48ff7178865c81f976955c3e936cf1e8fe1b197727ef01af7291632ba91a73f82fa1e373f04031a031b0f52dad6f3ccfbd039
data/.idea/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+
2
+ # Default ignored files
3
+ /workspace.xml
data/.idea/misc.xml ADDED
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JavaScriptSettings">
4
+ <option name="languageLevel" value="ES6" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.6.3-p62" project-jdk-type="RUBY_SDK" />
7
+ </project>
data/.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/qualiac-twine.iml" filepath="$PROJECT_DIR$/.idea/qualiac-twine.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="ModuleRunConfigurationManager">
4
+ <shared />
5
+ </component>
6
+ <component name="NewModuleRootManager">
7
+ <content url="file://$MODULE_DIR$" />
8
+ <orderEntry type="inheritedJdk" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ <orderEntry type="library" scope="PROVIDED" name="rubyzip (v1.3.0, ruby-2.6.3-p62) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="safe_yaml (v1.0.5, ruby-2.6.3-p62) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="twine (v1.0.6, ruby-2.6.3-p62) [gem]" level="application" />
13
+ </component>
14
+ </module>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -53,7 +53,12 @@ module Twine
53
53
  end
54
54
 
55
55
  def format_key(key)
56
- escape_quotes(key)
56
+ if ["class", "deinit", "enum", "func", "import", "init", "internal", "let", "operator", "private", "protocol",
57
+ "public", "static", "struct", "subscript", "typealias", "var"].include? key
58
+ key = "`#{key}`"
59
+ end
60
+
61
+ key
57
62
  end
58
63
 
59
64
  def format_value(value)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'qualiac_twine'
3
- s.version = '0.0.9'
3
+ s.version = '0.0.10'
4
4
  s.date = '2019-09-12'
5
5
  s.description = s.summary = 'Qualiac plugin for twine'
6
6
  s.description += '.' # avoid identical warning
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qualiac_twine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damien DANGLARD
@@ -31,6 +31,11 @@ extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
33
  - ".gitlab-ci.yml"
34
+ - ".idea/.gitignore"
35
+ - ".idea/misc.xml"
36
+ - ".idea/modules.xml"
37
+ - ".idea/qualiac-twine.iml"
38
+ - ".idea/vcs.xml"
34
39
  - LICENSE
35
40
  - README.md
36
41
  - lib/qualiac_twine.rb