appbundle-updater 1.0.6 → 1.0.7

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: 9a53986875f10f903beebb1f94792bad155512ca54e467be0bd8ff3dea1f199f
4
- data.tar.gz: 95446fe1f52af383d31fa0c12b264ba29b47bb7642773c1a421d6bbc805718eb
3
+ metadata.gz: 03a4beb737db0d1727e2c78be7d74f567bf6d26a7540e9f9cf6233ea8880bd10
4
+ data.tar.gz: 0d250658f71c862973f6e7d6c1dc40c73c70af38ac0c99ea021b298e35723001
5
5
  SHA512:
6
- metadata.gz: 55dd93c052162572c636c7cfb68e46ae9789325ac0ff2ce4d748b7de28d5ba0273d6ee70a09c2e5c327631f521ad5b75257ba32ee0a83d0fd7963a146a8027b8
7
- data.tar.gz: 1289a47d0067e8c36b8a1be0e9b16573b377a0011033127e73ea092e9e7c40287662a9207731b46133919e1d46235444d4dfb72cf35cd6b92264b2841e4b2b43
6
+ metadata.gz: f40d0bfc636c8dd066af1215e786ba0c2dccc0ea1073a5913f24cf48a25de948cc86c9ae19a20f0ab2c1a5f9111ee04f8114f266edc69ceb16144584e8563a0e
7
+ data.tar.gz: d102a63c776642e0c58a6966775e6e5257de2c9d947972ae7d5beb77e311afbc5d72abf060dbb30e939be2b743edd0447994cccdde37b44609c137a0e239e7f9
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 1.0.6 -->
4
- ## [v1.0.6](https://github.com/chef/appbundle-updater/tree/v1.0.6) (2020-05-29)
3
+ <!-- latest_release 1.0.7 -->
4
+ ## [v1.0.7](https://github.com/chef/appbundle-updater/tree/v1.0.7) (2020-08-11)
5
5
 
6
6
  #### Merged Pull Requests
7
- - Just use `rake install` on windows [#55](https://github.com/chef/appbundle-updater/pull/55) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - Make sure we don&#39;t even install profile gem groups [#56](https://github.com/chef/appbundle-updater/pull/56) ([tas50](https://github.com/tas50))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=1.0.5 -->
10
+ <!-- release_rollup since=1.0.6 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - Just use `rake install` on windows [#55](https://github.com/chef/appbundle-updater/pull/55) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.6 -->
14
+ - Make sure we don&#39;t even install profile gem groups [#56](https://github.com/chef/appbundle-updater/pull/56) ([tas50](https://github.com/tas50)) <!-- 1.0.7 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v1.0.6](https://github.com/chef/appbundle-updater/tree/v1.0.6) (2020-05-29)
19
+
20
+ #### Merged Pull Requests
21
+ - Just use `rake install` on windows [#55](https://github.com/chef/appbundle-updater/pull/55) ([lamont-granquist](https://github.com/lamont-granquist))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v1.0.5](https://github.com/chef/appbundle-updater/tree/v1.0.5) (2020-05-29)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v1.0.4](https://github.com/chef/appbundle-updater/tree/v1.0.4) (2020-04-28)
25
30
 
data/Gemfile CHANGED
@@ -9,7 +9,7 @@ group :docs do
9
9
  end
10
10
 
11
11
  group :test do
12
- gem "chefstyle"
12
+ gem "chefstyle", "1.2.1"
13
13
  gem "rake"
14
14
  end
15
15
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.6
1
+ 1.0.7
@@ -1,4 +1,3 @@
1
- # coding: utf-8
2
1
  lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
3
  require "appbundle_updater/version"
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- # -*- encoding: utf-8 -*-
3
2
  #
4
3
  # Author:: Fletcher Nichol (<fnichol@nichol.ca>)
5
4
  #
@@ -142,14 +141,14 @@ CHEFDK_APPS = [
142
141
  App.new(
143
142
  "chef",
144
143
  "chef/chef",
145
- "server docgen maintenance pry travis integration ci chefstyle",
144
+ "server docgen maintenance pry integration ci chefstyle profile",
146
145
  chef_install_command,
147
146
  {
148
147
  "chef" => %w{docgen chefstyle},
149
148
  "chef-bin" => %w{development},
150
149
  "ohai" => %w{development docs debug},
151
150
  "inspec-core-bin" => %w{development},
152
- },
151
+ }
153
152
  ),
154
153
  App.new(
155
154
  "chef-dk",
@@ -170,7 +169,7 @@ CHEFDK_APPS = [
170
169
  "ohai" => %w{changelog},
171
170
  "opscode-pushy-client" => %w{changelog},
172
171
  "cookstyle" => %w{changelog},
173
- },
172
+ }
174
173
  ),
175
174
  App.new(
176
175
  "chef-vault",
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "1.0.6".freeze
2
+ VERSION = "1.0.7".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-29 00:00:00.000000000 Z
11
+ date: 2020-08-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email: