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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/go4rake.gemspec +1 -1
  4. data/lib/go4rake.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35cc11e78b7b5ee35ffcc4ebc9b8784b6b6bb1fa
4
- data.tar.gz: dbbe98663bb106dbcaa7ce661696b915afc76661
3
+ metadata.gz: 58970731ad3e47bbb64c07be38d665f7e4fc9bc0
4
+ data.tar.gz: 6bffff0cf8f6735924e35c22aca935019c983737
5
5
  SHA512:
6
- metadata.gz: 0a283213cb7601677c0db43bc726288edebf54dd00b8bcb437837f499579d53037b7f9d249ce0d233191153b1317fbba95b99624bac349f947afd50a6094e551
7
- data.tar.gz: b2b2d19da4066c6209f9b763f8b192f27659675ec8f23b1f4bb0bfd7ea22fb8a78a9bdc46f1fda76f48a9227f24c68838b034b301bf780ec6cd9c9b8cac4c7fa
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
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: go4rake
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.9'
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasily Korytov