helm-rb 0.2.0-x86_64-linux → 0.3.0-x86_64-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: db9fab6ee8e6ec9be580574dfc4a251353904004c4bd3c78b02882b87df43371
4
- data.tar.gz: 0d6558585183266656973bdb39f2e7ed02d51ecb3cbbf3f6ada5a8b4d667528c
3
+ metadata.gz: '040996f108d7fcc1e2b707ac0fc7e8a7b98f8bfcc463df015e77e8607576910a'
4
+ data.tar.gz: c4835c5a5395cc6b21b8781426ad7a96e073185af7402d5c29fd8d19c70aa7b8
5
5
  SHA512:
6
- metadata.gz: 727a0f738b0fb274cae61e2f1372cc602dbcae862397af88afe8c0c55407c961544a77732843f3b038b3e79be6521aa5f88698c88088ab95d6af9408138df1dc
7
- data.tar.gz: cd55cee2b86d379223d915992d6e40b13c0c32611a4f3ed1c003c9fc885fea71e0243a6b9cc9f1edd68510fce4404de83593cf6321008860e85720a16ddb6564
6
+ metadata.gz: 07cc63c1157411d9bb698e4011d36678b40931e9f897694eb03bcb2a902dc39ae455220d55751b5c42e4b8b088e1e4fc08246329c577c6ecf21301b89df04ede
7
+ data.tar.gz: e9ca220e8695ca4efe01d50f502ea1907d96b12b49c5fbc2a3e595df047aabb5ebc84b3d5f90a1563a9e44b0639887744f94a6b4c586a823d895aa1011c70c72
data/CHANGELOG.md CHANGED
@@ -1,2 +1,9 @@
1
+ ## 0.2.1
2
+ * Fix file permissions for the Helm executable.
3
+
4
+ ## 0.2.0
5
+ * Upgrade to Helm 3.6.
6
+ * Add support for ARM Macs.
7
+
1
8
  ## 0.1.0
2
9
  * 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'
3
- HELM_VERSION = '3.6.2'
2
+ VERSION = '0.3.0'
3
+ HELM_VERSION = '3.16.2'
4
4
  end
data/vendor/helm CHANGED
Binary file
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.3.0
5
5
  platform: x86_64-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: 2024-10-30 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.5.16
49
49
  signing_key:
50
50
  specification_version: 4
51
51
  summary: Helm distributed as a Rubygem.