appbundle-updater 1.0.3 → 1.0.4

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: bc38c5462173a101679a559137ac31f25acc30d3b967a6fdd3ee3eb69d72fccd
4
- data.tar.gz: 418c9085c5d1bd752c9ad6ac560b28145f4d67f75ed0967f034a3742fec3f2bd
3
+ metadata.gz: ab39881e965a49031a6de49a681c42ab1a6aca16d78732007ed680c476d94cb0
4
+ data.tar.gz: 52ac4491a06b576bb5ba8483364315d7d11804394e02994104d3ef306557ccdb
5
5
  SHA512:
6
- metadata.gz: 4e8d197d1d45bc63180b98311ad186280680c0c4cca83e4c78d5b2a44100e8ea3111c1acb049d5f48615177c8c0bc30adf14ce6a7d95ea505f61bf9867f0b93c
7
- data.tar.gz: 91600e577f7efff406192626ae214ea5b18d65ea106f43c32dc8269c50ab6c4481259e2e14140037a6e2058f32daa2367ef57bd1132a4256c8fc57dd29429fb7
6
+ metadata.gz: bbbd27814f71aee479f1d01984c90783b5e2f0e58ecb70d38a239a5d1bfb33ecc78b51faaf3f1f79af8c0b6f6d15a4d8f5f9086cd13f07ef3b4539e5dfa848b6
7
+ data.tar.gz: d73d4ff424e7e60892ac80df43f36e709b693d4671e4c6bd772c1a089d8567406f8e9e5a6b286d0bc6fbaabb54e032dd5cf072361b1919db55151c01dc22a96b
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 1.0.3 -->
4
- ## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
3
+ <!-- latest_release 1.0.4 -->
4
+ ## [v1.0.4](https://github.com/chef/appbundle-updater/tree/v1.0.4) (2020-04-28)
5
5
 
6
6
  #### Merged Pull Requests
7
- - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=1.0.2 -->
10
+ <!-- release_rollup since=1.0.3 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.3 -->
14
+ - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.4 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
19
+
20
+ #### Merged Pull Requests
21
+ - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v1.0.2](https://github.com/chef/appbundle-updater/tree/v1.0.2) (2020-03-12)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - omit the right groups for ohai [#50](https://github.com/chef/appbundle-updater/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v1.0.1](https://github.com/chef/appbundle-updater/tree/v1.0.1) (2020-03-12)
25
30
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.3
1
+ 1.0.4
@@ -134,7 +134,7 @@ chef_install_command =
134
134
  if windows?
135
135
  "#{bin_dir.join("gem")} build chef-windows.gemspec & #{bin_dir.join("gem")} install chef*.gem --no-document"
136
136
  else
137
- "#{bin_dir.join("rake")} install"
137
+ "#{bin_dir.join("bundle")} exec #{bin_dir.join("rake")} install"
138
138
  end
139
139
 
140
140
  CHEFDK_APPS = [
@@ -150,10 +150,10 @@ CHEFDK_APPS = [
150
150
  "server docgen maintenance pry travis integration ci chefstyle",
151
151
  chef_install_command,
152
152
  {
153
- "chef" => %w{server docgen maintenance pry travis integration ci chefstyle},
154
- "chef-bin" => %w{server docgen maintenance pry travis integration ci chefstyle},
155
- "ohai" => %w{development docs ci debug},
156
- "inspec-core-bin" => %w{server docgen maintenance pry travis integration ci chefstyle},
153
+ "chef" => %w{docgen chefstyle},
154
+ "chef-bin" => %w{development},
155
+ "ohai" => %w{development docs debug},
156
+ "inspec-core-bin" => %w{development},
157
157
  },
158
158
  ),
159
159
  App.new(
@@ -204,7 +204,7 @@ CHEFDK_APPS = [
204
204
  App.new(
205
205
  "ohai",
206
206
  "chef/ohai",
207
- "ci docs debug",
207
+ "development docs debug",
208
208
  "#{bin_dir.join("rake")} install"
209
209
  ),
210
210
  App.new(
@@ -283,7 +283,7 @@ class Updater
283
283
  banner("Installing gem")
284
284
  Dir.chdir(app_dir) do
285
285
  Array(install_commands).each do |command|
286
- ruby("#{bin_dir.join("bundle")} exec #{command}")
286
+ ruby(command)
287
287
  end
288
288
  end
289
289
 
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "1.0.3".freeze
2
+ VERSION = "1.0.4".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.3
4
+ version: 1.0.4
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-03-12 00:00:00.000000000 Z
11
+ date: 2020-04-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email: