helm-rb 0.2.0-s390x-linux → 0.2.1-s390x-linux

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: 4f5fa2497235583e18b34daa929e2cc56f2f924acf8772de9a008a497e998aa2
4
- data.tar.gz: ba5c44fe7a3caf6c3e0efd31e5c62fac0492fec4e87ba36bb1374b65d7931e04
3
+ metadata.gz: cc09aa140f54997a8cc45ec430ad6f24d6aea418f93a062e032678bea8768fbd
4
+ data.tar.gz: 3c4d62df7ca02a21ef5671d6486e31018230bdcee366831d317d91b4cc45bd92
5
5
  SHA512:
6
- metadata.gz: d295e5c1cdd73d6ea3e709d360c2f770fe1060464fec081f519f07f7c7a2f8a9978e73a1473b8f0e77f09bab562777011ed6b0901c2cd34fe34d95944a4db27b
7
- data.tar.gz: 9409ab53e788477f8250ab497ad19675e2b02086e24108763fd0eb4bf4025e01913bb070fdc07c4c71b0e85bd0edfc16f447308bb082475964e3223d9c352720
6
+ metadata.gz: 9225c0a87405e9b55b09ee3cfba0f82671f7c6a21257adb0a0e61b464e7f04890ce2817ec74e83aabe703a4b438fe189fce07fd2230404bb0f957c419d95b05d
7
+ data.tar.gz: 0573c9b1a7886d2a113c46154a194a9f92e49b17c3515d1585ac35c9dbcec6c732d7efd05a87b96bffc9fbcce4dabbec763b065d29ff5b8b1b2353a7e651230a
data/CHANGELOG.md CHANGED
@@ -1,2 +1,6 @@
1
+ ## 0.2.0
2
+ * Upgrade to Helm 3.6.
3
+ * Add support for ARM Macs.
4
+
1
5
  ## 0.1.0
2
6
  * Birthday!
data/Rakefile CHANGED
@@ -8,7 +8,8 @@ DISTRIBUTIONS = [
8
8
  { rb_platform: 'x86_64-linux', filename: 'linux-amd64.tar.gz' },
9
9
  { rb_platform: 'arm-linux', filename: 'linux-arm.tar.gz' },
10
10
  { rb_platform: 'arm64-linux', filename: 'linux-arm64.tar.gz' },
11
- { rb_platform: 'i386-linux', filename: 'linux-386.tar.gz' },
11
+ { rb_platform: 'aarch64-linux', filename: 'linux-arm64.tar.gz' },
12
+ { rb_platform: 'x86-linux', filename: 'linux-386.tar.gz' },
12
13
  { rb_platform: 'ppc64le-linux', filename: 'linux-ppc64le.tar.gz' },
13
14
  { rb_platform: 's390x-linux', filename: 'linux-s390x.tar.gz' },
14
15
  { rb_platform: 'x64-mswin64', filename: 'windows-amd64.zip' }
@@ -36,6 +37,7 @@ task :build do
36
37
 
37
38
  Dir.glob(File.join('helm', distro_name, 'helm*')).each do |exe|
38
39
  system("chmod +x #{exe}")
40
+ File.chmod(0755, exe)
39
41
  FileUtils.cp(exe, 'vendor')
40
42
  end
41
43
 
@@ -48,6 +50,13 @@ task :build do
48
50
  end
49
51
  end
50
52
 
53
+ task :publish do
54
+ DISTRIBUTIONS.each do |distro|
55
+ package_file = File.join('pkg', "helm-rb-#{HelmRb::VERSION}-#{distro[:rb_platform]}.gem")
56
+ system "gem push #{package_file}"
57
+ end
58
+ end
59
+
51
60
  task default: :spec
52
61
 
53
62
  desc 'Run specs'
@@ -1,4 +1,4 @@
1
1
  module HelmRb
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  HELM_VERSION = '3.6.2'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helm-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: s390x-linux
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-09 00:00:00.000000000 Z
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Helm distributed as a Rubygem.
14
14
  email:
@@ -45,7 +45,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
45
  - !ruby/object:Gem::Version
46
46
  version: '0'
47
47
  requirements: []
48
- rubygems_version: 3.2.3
48
+ rubygems_version: 3.2.22
49
49
  signing_key:
50
50
  specification_version: 4
51
51
  summary: Helm distributed as a Rubygem.