samus 1.4.3 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/LICENSE +0 -0
  4. data/README.md +0 -0
  5. data/commands/build/archive-git-full.help.md +0 -0
  6. data/commands/build/archive-tgz.help.md +0 -0
  7. data/commands/build/archive-zip.help.md +0 -0
  8. data/commands/build/changelog-parse.help.md +0 -0
  9. data/commands/build/fs-copy.help.md +0 -0
  10. data/commands/build/fs-mkdir.help.md +0 -0
  11. data/commands/build/fs-rmrf.help.md +0 -0
  12. data/commands/build/fs-sedfiles.help.md +0 -0
  13. data/commands/build/gem-build.help.md +0 -0
  14. data/commands/build/git-archive.help.md +0 -0
  15. data/commands/build/git-clone.help.md +0 -0
  16. data/commands/build/git-commit.help.md +0 -0
  17. data/commands/build/git-merge.help.md +0 -0
  18. data/commands/build/make-task.help.md +0 -0
  19. data/commands/build/npm-pack.help.md +0 -0
  20. data/commands/build/npm-task.help.md +0 -0
  21. data/commands/build/npm-test.help.md +0 -0
  22. data/commands/build/rake-task.help.md +0 -0
  23. data/commands/build/samus-build.help.md +0 -0
  24. data/commands/publish/cf-invalidate.help.md +0 -0
  25. data/commands/publish/gem-push.help.md +0 -0
  26. data/commands/publish/git-push +1 -1
  27. data/commands/publish/git-push.help.md +0 -0
  28. data/commands/publish/github-release +1 -1
  29. data/commands/publish/github-release.help.md +0 -0
  30. data/commands/publish/npm-publish.help.md +0 -0
  31. data/commands/publish/s3-put.help.md +0 -0
  32. data/commands/publish/samus-publish.help.md +0 -0
  33. data/lib/samus.rb +0 -0
  34. data/lib/samus/action.rb +0 -0
  35. data/lib/samus/build_action.rb +0 -0
  36. data/lib/samus/builder.rb +0 -0
  37. data/lib/samus/command.rb +0 -0
  38. data/lib/samus/credentials.rb +0 -0
  39. data/lib/samus/publish_action.rb +0 -0
  40. data/lib/samus/publisher.rb +0 -0
  41. data/lib/samus/version.rb +1 -1
  42. data/samus.gemspec +0 -0
  43. data/samus.json +0 -0
  44. metadata +3 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 668e1055b0f05d543aef7b5116ea55d2d968148a
4
- data.tar.gz: 44e79c221a6dc6f8cdb0ea2e3913b559f76af06e
3
+ metadata.gz: 21da3590ab5fd3b3ed8a08f62d31d79f27d7be8b
4
+ data.tar.gz: 3f601ad43e65b65ae9bbcbe59f668e861d92911c
5
5
  SHA512:
6
- metadata.gz: 9da926c2c776ff63125c1ba9d4b80de0b1184893a1825f0a663f6ed2944c2b3fceb267e3fe0c3fa64970a26d5a183085d163bdde89db3b2cf49e02491080251b
7
- data.tar.gz: 9d7fde0de6c7aa044b9393cccac3c544e83bf04b453d33ac5fa773764f5bc1c7f39d5a5221f2eb4ea083854c3fadd8e2d466d6d8c44e691048b4d36885b265df
6
+ metadata.gz: 1c93fba8ec90631c8b00e182432ef0cabee78120a248a47256706671e461ec84fe36e6b7fc75b8b1d2b412ac554a32808ee9d4f1ce2400ff34308b101a5f7e52
7
+ data.tar.gz: 77e70209f5c2abbb794e6862d1f4923b8f5825ad5a206abcc11280e9493e83af62e62e26c3fea684ea20bf9aa2242c2810a502834e83d082dba581823d57f62e
@@ -1,3 +1,7 @@
1
+ # 1.4.3 - May 19, 2014
2
+
3
+ - Add `build/make-task` command to run a make task.
4
+
1
5
  # 1.4.2 - October 26, 2014
2
6
 
3
7
  - Add `build/changelog-parse` command to build ChangeLog from latest entries.
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -6,7 +6,7 @@ dir=$1
6
6
 
7
7
  case "$dir" in
8
8
  *.tgz|*.gz)
9
- dir=$(mktemp -d -t samus)
9
+ dir=$(mktemp -d -t samusXXXX)
10
10
  trap "rm -rf $dir" 0
11
11
  tar -xzf $* -C $dir
12
12
  ;;
File without changes
@@ -60,7 +60,7 @@ begin
60
60
  assets.each do |asset|
61
61
  local_name, remote_name = *asset.split(':', 2)
62
62
  remote_name ||= local_name
63
- uri = json["upload_url"].sub(/\{\?name\}$/, "?name=#{remote_name}")
63
+ uri = json["upload_url"].sub(/\{\?name,label\}$/, "?name=#{remote_name}")
64
64
  File.open(local_name, "r") do |file|
65
65
  begin
66
66
  https_request uri: uri, key: key,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module Samus
2
- VERSION = '1.4.3'
2
+ VERSION = '1.4.4'
3
3
  end
File without changes
data/samus.json CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loren Segal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-19 00:00:00.000000000 Z
11
+ date: 2016-07-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lsegal@soen.ca
@@ -105,9 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  version: '0'
106
106
  requirements: []
107
107
  rubyforge_project:
108
- rubygems_version: 2.4.3
108
+ rubygems_version: 2.5.1
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: Samus helps you release Open Source Software.
112
112
  test_files: []
113
- has_rdoc: