deploy-context 2.1.31 → 2.1.31.1.g6ccfd57
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
- checksums.yaml.gz.sig +0 -0
- data/lib/deploy-context/deploy.rb +5 -5
- data.tar.gz.sig +0 -0
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c4790347be42e7ed73a93b9251302192eb6e366b2c2ba28ae5f0557c29b2e05
|
4
|
+
data.tar.gz: 63bf3d0cbc0f753992c8b000157a0d38b29da843c800cdbf5f957bd57e4f98d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f13c41adfb0f3136e8e175262df30c732aca0601091dddb60fa567941eeaf36dafad3545f8ee1ace19696338cb15395694af410aa926ad6358336467df098e71
|
7
|
+
data.tar.gz: 323dba5bbc3dd41875c85519ef79c9b3cb81dab4de8c1bb7e7db030f4e8adf97bff90298f8b09a7edde478f745f59db7327ef99890055eec2f44aec2847630f1
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -30,8 +30,8 @@ module Context
|
|
30
30
|
|
31
31
|
def version
|
32
32
|
git_build(self)
|
33
|
-
puts "Getting version info for #{context_folder} and version should be #{GitVersionBump.version}"
|
34
|
-
Gem::Version.new(GitVersionBump.version)
|
33
|
+
puts "Getting version info for #{context_folder} and version should be #{GitVersionBump.version(true)}"
|
34
|
+
Gem::Version.new(GitVersionBump.version(true))
|
35
35
|
end
|
36
36
|
|
37
37
|
def cycle
|
@@ -72,15 +72,15 @@ module Context
|
|
72
72
|
end
|
73
73
|
|
74
74
|
def patch_bump
|
75
|
-
GitVersionBump.tag_version
|
75
|
+
GitVersionBump.tag_version("#{GitVersionBump.major_version(true)}.#{GitVersionBump.minor_version(true)}.#{GitVersionBump.patch_version(true) + 1}")
|
76
76
|
end
|
77
77
|
|
78
78
|
def minor_bump
|
79
|
-
GitVersionBump.tag_version
|
79
|
+
GitVersionBump.tag_version("#{GitVersionBump.major_version(true)}.#{GitVersionBump.minor_version(true) + 1}.0")
|
80
80
|
end
|
81
81
|
|
82
82
|
def major_bump
|
83
|
-
GitVersionBump.tag_version
|
83
|
+
GitVersionBump.tag_version("#{GitVersionBump.major_version(true) + 1}.0.0")
|
84
84
|
end
|
85
85
|
|
86
86
|
def wait_until_release_available
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploy-context
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.31
|
4
|
+
version: 2.1.31.1.g6ccfd57
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Provencher
|
@@ -131,9 +131,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
131
131
|
version: '0'
|
132
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
133
|
requirements:
|
134
|
-
- - "
|
134
|
+
- - ">"
|
135
135
|
- !ruby/object:Gem::Version
|
136
|
-
version:
|
136
|
+
version: 1.3.1
|
137
137
|
requirements: []
|
138
138
|
rubygems_version: 3.2.32
|
139
139
|
signing_key:
|
metadata.gz.sig
CHANGED
Binary file
|