release_manager 0.5.2 → 0.5.3

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
  SHA1:
3
- metadata.gz: 364942ebd85562ce0608b558d9b670bc298a9b4a
4
- data.tar.gz: f2e2e0cefae600b7c16d7518c65ea4f5f4159f3b
3
+ metadata.gz: 93411362c88f291cac34ce961bc4c40ab7e524af
4
+ data.tar.gz: b53bb842f8c4fb2a2990321ccbfc5c6205a46763
5
5
  SHA512:
6
- metadata.gz: cd0dd4f644d138ab707498fe7d689ff2c950d5b742023ff5ad9f5f9398d409c0b52ee86c5fea7c933a9610bac9f263fae1ebc0605b5a0cc7659dc3cc6aa7fd45
7
- data.tar.gz: 515d6a43667012fd475baeea10989d3f83c6a15563eb9641b053b02550ed8b4ada0a8f4ea3234e22e1903a4d5e572f289e4b0c329d9af61d08e47ca9c659636d
6
+ metadata.gz: a09045619e1e27ef1ed4a723326ba7e069b8fb5b1a3b5e342572f06889675f43887addee10028c96a7d19d504c15550c8ee14c532d7693a71db90e912fe012f8
7
+ data.tar.gz: 4c4ba1d7e48ddd825397e3e315ffe4d48c2b6e9698dc35cffd303a3b87cb0ce39db7e84a5d91f913daeefdc5f46db3ee90db92336730883935c973b72d7aeaa9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release Manager
2
+
2
3
  ## Unreleased
4
+
5
+ ## 0.5.3
6
+ * Fixes output when applying patch
3
7
  ## 0.5.2
4
8
  * Adds proper error handling when missing git author name and email with r10k-deploy
5
9
  ## 0.5.1
@@ -44,7 +48,7 @@
44
48
  * Fixes issue with git source not updating when deploying module
45
49
  * Refactors cli into individual files
46
50
  * Removes checking of modules before sandbox creation
47
-
51
+
48
52
  ## v0.2.0
49
53
  * adds the ability to auto generate a complete r10k sandbox
50
54
  * adds gitlab adapter
@@ -52,16 +56,16 @@
52
56
  ## v0.1.8
53
57
  * Fix pinning of version to puppetfile
54
58
  * adds more testing
55
-
59
+
56
60
  ## v0.1.7
57
61
  * Adds more tests
58
62
  * Fixes typos
59
63
  * Fixes issue with push and commit during deployment
60
64
  * Fixes stack level issue when calling upstream
61
- * Adds ability to easily add upstream remote
65
+ * Adds ability to easily add upstream remote
62
66
  ## v0.1.6
63
67
  * add dry run to deploy-mod
64
-
68
+
65
69
  ## v0.1.5
66
70
  * Fixes an issue where the latest tag was not being selected correctly
67
71
 
@@ -69,6 +73,6 @@
69
73
  * Fixes #8 - upstream does not exist
70
74
  * Fixes #9 - bump changelog assumes changelog exists
71
75
  * Fixes #10 - executable scripts should communicate options more clearly
72
-
76
+
73
77
  ## v0.1.0
74
78
  * initial implementation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- release_manager (0.5.2)
4
+ release_manager (0.5.3)
5
5
  gitlab (~> 4.2.0)
6
6
  highline (~> 1.7)
7
7
  rugged (~> 0.26)
@@ -232,6 +232,7 @@ module ReleaseManager
232
232
  def apply_patch(file)
233
233
  # TODO: change this to rugged implementation
234
234
  logger.info("Applying patch #{file}")
235
+ output = ''
235
236
  Dir.chdir(path) do
236
237
  output = `#{git_command} apply #{file} 2>&1`
237
238
  end
@@ -1,3 +1,3 @@
1
1
  module ReleaseManager
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: release_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Osman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-28 00:00:00.000000000 Z
11
+ date: 2017-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gitlab