deploy-context 2.1.29.1.gb63f262 → 2.1.30.1.gdf915e9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81dfd2b7dd4f8a915cc06940f06ee00afd69154011b8106762baf6ac0c77cfa4
4
- data.tar.gz: 135d24f0d85858a8162cfb1ff8cd2e2da7edb746bf65d92acc06c9767095a757
3
+ metadata.gz: b6bea84caf3a50db2fc4af7c62f40c9fb9071d711d586f73f77e0aa8b8e658c3
4
+ data.tar.gz: f6ab33de10da46e47e36c17cd9b4b2ca07d5473d3df8566dfd66a54dbf321802
5
5
  SHA512:
6
- metadata.gz: d8ee674c37ae4fd59725ef7be1bef7ff2208cd5232e70a2419c9049e8e5b5d4d6acc2754f3aae6fc2a1f0a6d2053a3193823816383e97fcf1052c68b2122007c
7
- data.tar.gz: b7ba0c307fbf0fde059eb564d3783752c214c6b7180c50fd22734fb27fac8e349246743fffe78031271ed40d7cb516ea62d21d2b74e8430a21d0e79224a28857
6
+ metadata.gz: a0bd052cd06a4f1e41890cdb9f9c311a9e54cde4c242850758d01f3833aae0ca3084bec60596e6ec5331c436a22632534110841c4a6cbb210059821dbd5650ef
7
+ data.tar.gz: e4631af2c065d91c26ef1535cdd9ebc61b7e450337da69bc6cb351e45c78ff0a6a0282fc508b3120ab6b05ad172e1949d26b33b71c58df939dfc282f02c18337
checksums.yaml.gz.sig CHANGED
Binary file
@@ -29,9 +29,9 @@ module Context
29
29
  end
30
30
 
31
31
  def version
32
- puts "Getting version info for #{context_folder} and version should be #{GVB.version}"
33
- Dir.chdir(context_folder)
34
- Gem::Version.new(GVB.version)
32
+ git_build(self)
33
+ puts "Getting version info for #{context_folder} and version should be #{GitVersionBump.version}"
34
+ Gem::Version.new(GitVersionBump.version)
35
35
  end
36
36
 
37
37
  def cycle
@@ -41,10 +41,10 @@ module Context
41
41
  def test_context_successful?
42
42
  puts "Check if #{context_name} is install #{version}"
43
43
  if gem_installed?(self)
44
- puts "Test context was successfully install on version #{version}"
44
+ puts "Test context #{context_name} was successfully install on version #{version}"
45
45
  true
46
46
  else
47
- abort "Test context has failed to install #{version}"
47
+ abort "Test context #{context_name} has failed to install #{version}"
48
48
  end
49
49
  end
50
50
 
@@ -72,15 +72,15 @@ module Context
72
72
  end
73
73
 
74
74
  def patch_bump
75
- git_bump(self, 'patch')
75
+ GitVersionBump.tag_version "#{GitVersionBump.major_version}.#{GitVersionBump.minor_version}.#{GitVersionBump.patch_version+1}"
76
76
  end
77
77
 
78
78
  def minor_bump
79
- git_bump(self, 'minor')
79
+ GitVersionBump.tag_version "#{GitVersionBump.major_version}.#{GitVersionBump.minor_version+1}.0"
80
80
  end
81
81
 
82
82
  def major_bump
83
- git_bump(self, 'major')
83
+ GitVersionBump.tag_version "#{GitVersionBump.major_version + 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.29.1.gb63f262
4
+ version: 2.1.30.1.gdf915e9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jimmy Provencher
metadata.gz.sig CHANGED
Binary file