vtasks 0.0.15 → 0.0.16

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: bf6ec4c38b47a3aba51ce6d41e33ea65557cc7e713748034c69c17f05d87716b
4
- data.tar.gz: adfc75d44061aad0c738a7eabb1731e46fb23153948c8e8c1907b0b538d116e9
3
+ metadata.gz: aec1551cdcfe34c75b9dff6d5704a4095c386217ec81afa95c659e5c90ee9ba8
4
+ data.tar.gz: 53bed2c1f8d3961dda19b7f5ce826e6608baafce780f2abdfcd9310ba5e055e1
5
5
  SHA512:
6
- metadata.gz: 0480457cbd810baa96a9ba2c7261782baff124cb97f7c5de39b68f03ccccf6607fcbfaad42416cb513468a338c4fc98671d004fbf4b0e87505bb0021c5f1a2f0
7
- data.tar.gz: 5a37d09fb4c5e71cfc23f98ccfbdcdfab37172bb7edae9381cab0880a9fbf49e0d85d82ca3f799617ff74f459590277fb5ec565ce7bc8acc47f985cbd0b0ec2d
6
+ metadata.gz: cddbf52b1a251fda31bef19f92a5f6051556d44a1d57699167d2c445e8ea84452b541fcdd23187259c533a83a764f00cbe583e764c4e88d45195ccea9306a2bc
7
+ data.tar.gz: 8c31dcaecdc16c351cb12028eb9c90d66f76093be60d1da168f3afa8842da2f3d19b1f91cce5f4cf43896306d9548bf5135e607d14aee2e5ce788c8bb35c3555
data/README.md CHANGED
@@ -156,13 +156,19 @@ Vtasks::Release.new
156
156
  require 'vtasks/release'
157
157
  Vtasks::Release.new(
158
158
  write_changelog: true,
159
- ci_status: true
159
+ require_pull_request: true
160
+ wait_for_ci_success: true,
161
+ bug_labels: 'Type: Bug',
162
+ enhancement_labels: 'Type: Enhancement'
160
163
  )
161
164
  ```
162
165
 
163
166
  Parameters:
164
167
  - `write_changelog`: [Boolean] whether to write the changelog (defaults to `false`)
165
- - `ci_status`: [Boolean] whether CI status is required (defaults to `false`)
168
+ - `require_pull_request`: [Boolean] in case the branch is protected and a pull request is required, the task will create a separate branch on which it will commit the changelog, and merge that into master (defaults to `false`). .
169
+ - `wait_for_ci_success`: [Boolean] whether a "SUCCESS" CI status is required (defaults to `false`)
170
+ - `bug_labels`: [STRING] Issues with the specified labels will be added to "Fixed bugs" section (defaults to `bug`)
171
+ - `enhancement_labels`: [STRING] Issues with the specified labels will be added to "Implemented enhancements" section (defaults to `enhancement`)
166
172
 
167
173
  Note:
168
174
  First time you have to create an annotated tag and commit the initial CHANGELOG, before creating issues or pull requests (if there these are not present it will fail)
@@ -66,7 +66,6 @@ module Vtasks
66
66
  git_clean_repo
67
67
 
68
68
  # Write changelog
69
- # Create a separate release branch (works with protected branches as well)
70
69
  if write_changelog == true
71
70
  info 'Generate new changelog'
72
71
  ::GitHubChangelogGenerator::RakeTask.new(:latest_release) do |config|
@@ -77,6 +76,7 @@ module Vtasks
77
76
  if system 'git diff --quiet HEAD'
78
77
  info 'CHANGELOG has not changed. Skipping...'
79
78
  else
79
+ # Create a separate release branch (works with protected branches as well)
80
80
  if require_pull_request == true
81
81
  info 'Create a new release branch'
82
82
  sh "git checkout -b #{release_branch}"
@@ -1,91 +1,91 @@
1
- module Vtasks
2
- module Utils
3
- # DockerSharedContext module
4
- module DockerSharedContext
5
- require 'rspec/core'
6
-
7
- begin
8
- require 'serverspec'
9
- require 'docker'
10
- rescue LoadError
11
- nil # Might be in a group that is not installed
12
- end
13
-
14
- # Docker image context
15
- module Image
16
- extend ::RSpec::Core::SharedContext
17
-
18
- before(:all) do
19
- @image = ::Docker::Image.build_from_dir(DOCKER_IMAGE_DIRECTORY)
20
- set :backend, :docker
21
- end
22
- end
23
-
24
- # Clean-up
25
- module CleanUp
26
- extend ::RSpec::Core::SharedContext
27
-
28
- after(:all) do
29
- @container.kill
30
- @container.delete(force: true)
31
- end
32
- end
33
-
34
- # Docker container context
35
- module Container
36
- extend ::RSpec::Core::SharedContext
37
-
38
- include Image
39
-
40
- before(:all) do
41
- @container = ::Docker::Container.create('Image' => @image.id)
42
- @container.start
43
-
44
- set :docker_container, @container.id
45
- end
46
-
47
- include CleanUp
48
- end
49
-
50
- # Docker always running container
51
- # Overwrite the entrypoint so that we can run the tests
52
- module RunningEntrypointContainer
53
- extend ::RSpec::Core::SharedContext
54
-
55
- include Image
56
-
57
- before(:all) do
58
- @container = ::Docker::Container.create(
59
- 'Image' => @image.id,
60
- 'Entrypoint' => ['sh', '-c', 'while true; do sleep 1; done']
61
- )
62
- @container.start
63
-
64
- set :docker_container, @container.id
65
- end
66
-
67
- include CleanUp
68
- end
69
-
70
- # Docker always running container
71
- # Overwrite the command so that we can run the tests
72
- module RunningCommandContainer
73
- extend ::RSpec::Core::SharedContext
74
-
75
- include Image
76
-
77
- before(:all) do
78
- @container = ::Docker::Container.create(
79
- 'Image' => @image.id,
80
- 'Cmd' => ['sh', '-c', 'while true; do sleep 1; done']
81
- )
82
- @container.start
83
-
84
- set :docker_container, @container.id
85
- end
86
-
87
- include CleanUp
88
- end
89
- end # module DockerSharedContext
90
- end # module Utils
91
- end # module Vtasks
1
+ module Vtasks
2
+ module Utils
3
+ # DockerSharedContext module
4
+ module DockerSharedContext
5
+ require 'rspec/core'
6
+
7
+ begin
8
+ require 'serverspec'
9
+ require 'docker'
10
+ rescue LoadError
11
+ nil # Might be in a group that is not installed
12
+ end
13
+
14
+ # Docker image context
15
+ module Image
16
+ extend ::RSpec::Core::SharedContext
17
+
18
+ before(:all) do
19
+ @image = ::Docker::Image.build_from_dir(DOCKER_IMAGE_DIRECTORY)
20
+ set :backend, :docker
21
+ end
22
+ end
23
+
24
+ # Clean-up
25
+ module CleanUp
26
+ extend ::RSpec::Core::SharedContext
27
+
28
+ after(:all) do
29
+ @container.kill
30
+ @container.delete(force: true)
31
+ end
32
+ end
33
+
34
+ # Docker container context
35
+ module Container
36
+ extend ::RSpec::Core::SharedContext
37
+
38
+ include Image
39
+
40
+ before(:all) do
41
+ @container = ::Docker::Container.create('Image' => @image.id)
42
+ @container.start
43
+
44
+ set :docker_container, @container.id
45
+ end
46
+
47
+ include CleanUp
48
+ end
49
+
50
+ # Docker always running container
51
+ # Overwrite the entrypoint so that we can run the tests
52
+ module RunningEntrypointContainer
53
+ extend ::RSpec::Core::SharedContext
54
+
55
+ include Image
56
+
57
+ before(:all) do
58
+ @container = ::Docker::Container.create(
59
+ 'Image' => @image.id,
60
+ 'Entrypoint' => ['sh', '-c', 'while true; do sleep 1; done']
61
+ )
62
+ @container.start
63
+
64
+ set :docker_container, @container.id
65
+ end
66
+
67
+ include CleanUp
68
+ end
69
+
70
+ # Docker always running container
71
+ # Overwrite the command so that we can run the tests
72
+ module RunningCommandContainer
73
+ extend ::RSpec::Core::SharedContext
74
+
75
+ include Image
76
+
77
+ before(:all) do
78
+ @container = ::Docker::Container.create(
79
+ 'Image' => @image.id,
80
+ 'Cmd' => ['sh', '-c', 'while true; do sleep 1; done']
81
+ )
82
+ @container.start
83
+
84
+ set :docker_container, @container.id
85
+ end
86
+
87
+ include CleanUp
88
+ end
89
+ end # module DockerSharedContext
90
+ end # module Utils
91
+ end # module Vtasks
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vtasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vlad Ghinea