qualiac_twine 0.0.8 → 0.0.9

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: 2e633cdffc3f301cbbc15ee485ec58605d5e9a0d7187a7d5214a61addd9fc720
4
- data.tar.gz: 3665f6a6bcea2eb6fcadd51f995a8057b4cb0120ab085a38aef930ff88f4ba29
3
+ metadata.gz: a792f47071ef51632b41d74b79af05884fd88fa82dd58d704ad9d7f2131c38ac
4
+ data.tar.gz: '08182d50eab6f82cb59c72d52bfdcb328f81cf868e3c7e6c6a90901b2531a844'
5
5
  SHA512:
6
- metadata.gz: 14bfaa9d0996d583625e81b3df6a931fe6a7105489f4815fcb50ee40bdcc98da4697a7302cd42b61ef338df4e5dec4d30201534ee9a79f619c2cdc4672e57cd3
7
- data.tar.gz: 2649b98c58d7128d89ba979f3d2678499d0b86500a06b4ebf22a17629351b527466ab0a662acf5fad4fef4add74a7ab2e32de59600ddd015440734930a3280c6
6
+ metadata.gz: 75779dc90fe70a9e500e4b07eecc20b66ea7f1213da67e9ebea7c922cbae257ae47dead5f7bed3059a2d1adaacdd3aff6c41b75c384b1162f9b2853f28c3bfb7
7
+ data.tar.gz: 3533aa5fb566db97b34c1bd7c15fa943bb909a2f3c04a588409868a5b07d47d0875165e34395b1420eec468036f322a81eeea507244cde78251d993db055d7d9
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,20 @@
1
+ # This file is a template, and might need editing before it works on your project.
2
+ # Official language image. Look for the different tagged releases at:
3
+ # https://hub.docker.com/r/library/ruby/tags/
4
+ image: "ruby:2.5"
5
+
6
+ variables:
7
+ API_KEY: b6c595ec176d1b99d6e0a721f4b87e81
8
+
9
+ # This is a basic example for a gem or script which doesn't use
10
+ # services such as redis or postgres
11
+ before_script:
12
+ - ruby -v
13
+
14
+ production:
15
+ stage: deploy
16
+ script:
17
+ - gem install dpl
18
+ - dpl --provider=rubygems --api-key=$API_KEY
19
+ only:
20
+ - tags
@@ -34,7 +34,7 @@ module Twine
34
34
 
35
35
  def format_sections(twine_file, lang)
36
36
  result = "import Foundation\n"
37
- result += "import QualiacApp\n\n"
37
+ result += "import QualiacKernel\n\n"
38
38
  result += "// swiftlint:disable identifier_name line_length superfluous_disable_command\n"
39
39
  result += "extension QKRString {\n"
40
40
 
@@ -33,9 +33,9 @@ module Twine
33
33
  end
34
34
 
35
35
  def format_sections(twine_file, lang)
36
- result = "import Foundation\n"
36
+ result = "\nimport Foundation\n\n"
37
37
  result += "// swiftlint:disable identifier_name line_length superfluous_disable_command\n"
38
- result += "extension QKRString {\n"
38
+ result += "public extension QKRString {\n"
39
39
 
40
40
  result += super + "\n"
41
41
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'qualiac_twine'
3
- s.version = '0.0.8'
4
- s.date = '2019-04-17'
3
+ s.version = '0.0.9'
4
+ s.date = '2019-09-12'
5
5
  s.description = s.summary = 'Qualiac plugin for twine'
6
6
  s.description += '.' # avoid identical warning
7
7
  s.authors = ["Damien DANGLARD"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qualiac_twine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damien DANGLARD
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-17 00:00:00.000000000 Z
11
+ date: 2019-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: twine
@@ -30,6 +30,7 @@ executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
+ - ".gitlab-ci.yml"
33
34
  - LICENSE
34
35
  - README.md
35
36
  - lib/qualiac_twine.rb