go4rake 0.9 → 0.9.1
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 +4 -4
- data/README.md +1 -1
- data/go4rake.gemspec +1 -1
- data/lib/go4rake.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58970731ad3e47bbb64c07be38d665f7e4fc9bc0
|
|
4
|
+
data.tar.gz: 6bffff0cf8f6735924e35c22aca935019c983737
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3863d7477e98c178d9e881e44db2497fae3da06e94f63b3a9e5e874ab194f134b4b14496842f8470eced50d786a57b72f2b889090b8bf5375a44074bc8c60542
|
|
7
|
+
data.tar.gz: a1f4a8ac0f62d483fbf4424c52d80e1e8d4b89772b49e3eee64a589f32fa4f381ba29866bf1a4f4c9b14444382e715091b993d82563bcd4bcb2597582146ed9b
|
data/README.md
CHANGED
|
@@ -35,7 +35,7 @@ on Windows (7-zip? Don't know).
|
|
|
35
35
|
### Configuration
|
|
36
36
|
|
|
37
37
|
`zip` and `build` tasks expect a YAML config, `go4rake.yml`. Say, we
|
|
38
|
-
have [this config](https://github.com/chillum/httpstress-go/go4rake.yml).
|
|
38
|
+
have [this config](https://github.com/chillum/httpstress-go/blob/master/go4rake.yml).
|
|
39
39
|
|
|
40
40
|
This way, you run `rake zip` and you get these files containing the static binary files for all the specified platforms:
|
|
41
41
|
|
data/go4rake.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'go4rake'
|
|
3
|
-
s.version = '0.9'
|
|
3
|
+
s.version = '0.9.1'
|
|
4
4
|
s.license = 'Apache-2.0'
|
|
5
5
|
s.summary = 'go4rake is a Rake helper for cross-compiling Go programs'
|
|
6
6
|
s.description = '`build`, `test` and `zip` tasks for cross-compilation of Go programs'
|
data/lib/go4rake.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# Settings are specified in a YAML file: go4rake.yml.
|
|
4
4
|
#
|
|
5
|
-
# Example config: https://github.com/chillum/httpstress-go/go4rake.yml
|
|
5
|
+
# Example config: https://github.com/chillum/httpstress-go/blob/master/go4rake.yml
|
|
6
6
|
# `name` is OS name, `arch` is arch and `zip` is ZIP file name (optional).
|
|
7
7
|
# `arch` is appended to file name if `arch` is a list.
|
|
8
8
|
#
|