helm-rb 0.2.0-arm-linux → 0.2.1-arm-linux

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: 8ed7427051ae0c971bf023674be6ce9a9acbc23db1e24040c9f0600037baec1b
4
- data.tar.gz: c0e766f7e84179984e8cf8e0f7958dddd9f7f98f8850625e9a2b1093482e4649
3
+ metadata.gz: f59dde00bceae79dca3c762262d121431c2ebd9ebeea4117a5672780999fd8f4
4
+ data.tar.gz: 43b75def7eaaef5824ac139418e201f82b76065faaf54f1d166b328505dbd0b9
5
5
  SHA512:
6
- metadata.gz: 43df2b8f37379be98edc0339d46c9e96c8f4495ca63dfb5a72b3ccc7eae5600a713e18b59b1b4304087fd4af0a640960b7d83116c36ebd4267895b5cc4c10ce3
7
- data.tar.gz: fec1c0d10fd47f5751a759acc3ca60b92a3574a0dc619f943e3c0bc62255ad63479c9f055ee93af5a8d51033a56dc8f0ef49854255d1880aee5f932e923d74c0
6
+ metadata.gz: 41edb4700fc962a87ddb4cd2e48242336faba300a8be2ef21c112c6fe3329584cd55f981c01a0e95392f32b218ce1117774d1fefe18cb42cfc29b310734ce57e
7
+ data.tar.gz: fd95a20abb6cf2ad53e2271301fcb685f4b2c5d9447f1a81600a85e5bd227dd71c729c778bafeb4f399a4a00a23fb66968e9ac5432efea3a6e1b2fb5ed1eb481
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: arm-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.