robot_sweatshop 0.4.5 → 0.4.6
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/Gemfile.lock +1 -1
- data/bin/sweatshop +5 -5
- data/lib/robot_sweatshop/create-config-directories.rb +0 -1
- data/robot_sweatshop.gemspec +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: acc02c9c05d562880ac2ae2856bcb5697395ca1f
|
4
|
+
data.tar.gz: df5ffe594c0e6c3f0af75d1a96b10fe7ef6ced63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b442e68f7963fb3f9b681d445e4d88ba0b9940a7a556506a9bac03a031cf7853c6e3385e424ca28df2356164444a8aa4ecffa04ff7cedb83d0faed15bf26cfc
|
7
|
+
data.tar.gz: 482a8ccdb5cc3be30969a5a671ea4f82e0aed3dfb20f2979bfda1a127d015308b5b1da5d74eaa7c29d2aae21a331aeb64cafd46c5d6ba4fc14c5027ceab055d0
|
data/Gemfile.lock
CHANGED
data/bin/sweatshop
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
require 'bundler/setup'
|
3
2
|
require 'yaml'
|
4
3
|
require 'commander/import'
|
5
4
|
require 'terminal-announce'
|
@@ -8,7 +7,7 @@ require 'robot_sweatshop/config'
|
|
8
7
|
require 'robot_sweatshop/create-config-directories'
|
9
8
|
|
10
9
|
program :name, 'Robot Sweatshop'
|
11
|
-
program :version, '0.4.
|
10
|
+
program :version, '0.4.6'
|
12
11
|
program :description, 'A lightweight, nonopinionated CI server'
|
13
12
|
program :help, 'Author', 'Justin Scott <jvscott@gmail.com>'
|
14
13
|
|
@@ -68,11 +67,12 @@ end
|
|
68
67
|
command :gears do |c|
|
69
68
|
c.syntax = 'sweatshop gears ...'
|
70
69
|
c.description = 'See `sweatshop-gears --help`'
|
71
|
-
c.
|
70
|
+
c.option '--path'
|
71
|
+
c.action do
|
72
72
|
begin
|
73
|
-
|
73
|
+
system "sweatshop-gears #{ARGV[1..-1].join ' '}"
|
74
74
|
rescue Errno::ENOENT
|
75
|
-
Announce.failure 'Sweatshop Gears not found. Run `gem install
|
75
|
+
Announce.failure 'Sweatshop Gears not found. Run `gem install sweatshop_gears`'
|
76
76
|
end
|
77
77
|
end
|
78
78
|
end
|
data/robot_sweatshop.gemspec
CHANGED