go4rake 1.5.3 → 1.5.5
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 +5 -5
- data/NOTICE +1 -1
- data/lib/go4rake/new.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 906c5f079110a4948be5bd05914338c8528e53b3ba8563197552f86997ee8a94
|
|
4
|
+
data.tar.gz: c3f08279053f1715455275f4263deb871a774936b07ceaad2f27b9262a272502
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 153020a21947134d4951751c7771efc99b3bbf230b0fc87d3afcaa0ed4f8e327fcb33599c11a3001a701a4cb743ae06aead4fb8c7b6974171d962817eb4fd9c9
|
|
7
|
+
data.tar.gz: 58bb0f197af13c96127e2fe14ad9f018f466de6c921245ff6a56c700ce713f1ef63b73bc90be30650272f98447993958d4697b335cfcf3ca402cf7493cac22e5
|
data/NOTICE
CHANGED
data/lib/go4rake/new.rb
CHANGED
|
@@ -102,7 +102,7 @@ class Go4Rake < ::Rake::TaskLib
|
|
|
102
102
|
# Zip the compiled files.
|
|
103
103
|
def zip(os, arch, dir, files, file)
|
|
104
104
|
setenv(os, arch)
|
|
105
|
-
bin = `go list -f '{{.Target}}'`.chomp
|
|
105
|
+
bin = `go list -f '{{.Target}}'`.chomp.delete_prefix("'").delete_suffix("'")
|
|
106
106
|
return unless bin
|
|
107
107
|
zip_file = File.expand_path(dir) + '/' + file + '.zip'
|
|
108
108
|
name = File.basename(bin)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: go4rake
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vasily Korytov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -68,15 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
68
|
requirements:
|
|
69
69
|
- - ">="
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
|
-
version:
|
|
71
|
+
version: '2.5'
|
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
|
|
79
|
-
rubygems_version: 2.6.11
|
|
78
|
+
rubygems_version: 3.0.3
|
|
80
79
|
signing_key:
|
|
81
80
|
specification_version: 4
|
|
82
81
|
summary: Rake helper for cross-compiling Go programs
|