robot_sweatshop 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e497e652596a13ab375886a0c9adfdbd6e5c33f
4
- data.tar.gz: f6b1e12c4b42f20cdb391ee838600b537404244c
3
+ metadata.gz: 246d4201187db652aec9d5ebfcc389556a9f174e
4
+ data.tar.gz: 2a65b788f8ba32e4b04dfb1c8b13002dd1b620df
5
5
  SHA512:
6
- metadata.gz: c3e21f54d698b659bf86d0f07a699d2213d9b65450b101b5c4e1827483c4319e4f5b572f420ccd76897fe6d0e165a3549816143e9b262462153ed75248f335f0
7
- data.tar.gz: 21556cc53d23695339f8d67d7dc7188a0ee2ce5848f9e4c9237d1e3161202c5b4089d1234bdb899744a2934408f19a3e2dea80a6270f6f58533ad5af0e8644da
6
+ metadata.gz: 1c7fc872366f1e991f0b0195db8914c16785c5d089ff73e257a9a96e3415ef9516325cc4a9b8a3d0707a2463ce6a5c16a210b4cd1ed151072d765b4d22225331
7
+ data.tar.gz: db9e85939f5effc488e30c1edd0e68e939fcfb6f5a0de7b89936af13ea84a86664815cadc71b61e20582b74322580d8950646ac14fb503831ce76140d85b5097
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- robot_sweatshop (0.4.13)
4
+ robot_sweatshop (1.0.0)
5
5
  commander
6
6
  configatron
7
7
  contracts
@@ -14,6 +14,7 @@ PATH
14
14
  sinatra
15
15
  sinatra-cross_origin
16
16
  stubborn_queue
17
+ sweatshop_gears
17
18
  terminal-announce
18
19
 
19
20
  GEM
@@ -28,7 +29,7 @@ GEM
28
29
  commander (4.3.4)
29
30
  highline (~> 1.7.2)
30
31
  configatron (4.5.0)
31
- contracts (0.9)
32
+ contracts (0.11.0)
32
33
  daybreak (0.3.0)
33
34
  docile (1.1.5)
34
35
  domain_name (0.5.24)
@@ -50,6 +51,7 @@ GEM
50
51
  ffi-rzmq-core (>= 1.0.1)
51
52
  ffi-rzmq-core (1.0.3)
52
53
  ffi (~> 1.9)
54
+ git (1.2.9.1)
53
55
  highline (1.7.2)
54
56
  http (0.8.12)
55
57
  addressable (~> 2.3)
@@ -72,6 +74,11 @@ GEM
72
74
  rack (1.6.4)
73
75
  rack-protection (1.5.3)
74
76
  rack
77
+ rack-proxy (0.5.17)
78
+ rack
79
+ rack-reverse-proxy (0.8.1)
80
+ rack (>= 1.0.0)
81
+ rack-proxy (~> 0.5)
75
82
  rainbow (2.0.0)
76
83
  rake (10.4.2)
77
84
  redislike (0.2.5)
@@ -93,6 +100,15 @@ GEM
93
100
  daybreak
94
101
  moneta
95
102
  redislike
103
+ sweatshop_gears (1.0.5)
104
+ bundler
105
+ commander
106
+ contracts
107
+ erubis
108
+ git
109
+ rack-reverse-proxy
110
+ sinatra
111
+ terminal-announce
96
112
  terminal-announce (1.0.0)
97
113
  bundler
98
114
  contracts
data/README.md CHANGED
@@ -42,4 +42,8 @@ By default, Robot Sweatshop looks in your current working path to configure and
42
42
 
43
43
  ## Security
44
44
 
45
- You probably don't want to run Robot Sweatshop as a sudo user. Create a testing user and group and run `sweatshop start` as them.
45
+ You probably don't want to run Robot Sweatshop as a sudo user. Create a sandboxed user and group and run `sweatshop start` as them.
46
+
47
+ ## Extending functionality
48
+
49
+ For extension scripts and processes, check out [Sweatshop Gears](https://github.com/JScott/sweatshop-gears-cli) with `sweatshop-gears --help`. This is essentially helper package management that comes bundled with Robot Sweatshop.
@@ -7,7 +7,7 @@ require 'robot_sweatshop/config'
7
7
  require 'robot_sweatshop/create-config-directories'
8
8
 
9
9
  program :name, 'Robot Sweatshop'
10
- program :version, '1.0.0'
10
+ program :version, '1.0.1'
11
11
  program :description, 'A lightweight, nonopinionated CI server'
12
12
  program :help, 'Author', 'Justin Scott <jvscott@gmail.com>'
13
13
 
@@ -55,16 +55,3 @@ command :stop do |c|
55
55
  end
56
56
 
57
57
  alias_command :restart, :start
58
-
59
- command :gears do |c|
60
- c.syntax = 'sweatshop gears ...'
61
- c.description = 'See `sweatshop-gears --help`'
62
- c.option '--path'
63
- c.action do
64
- begin
65
- system "sweatshop-gears #{ARGV[1..-1].join ' '}"
66
- rescue Errno::ENOENT
67
- Announce.failure 'Sweatshop Gears not found. Run `gem install sweatshop_gears`'
68
- end
69
- end
70
- end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'robot_sweatshop'
3
- gem.version = '1.0.0'
3
+ gem.version = '1.0.1'
4
4
  gem.licenses = 'MIT'
5
5
  gem.authors = ['Justin Scott']
6
6
  gem.email = 'jvscott@gmail.com'
@@ -28,6 +28,7 @@ Gem::Specification.new do |gem|
28
28
  gem.add_runtime_dependency 'oj'
29
29
  gem.add_runtime_dependency 'exponential-backoff'
30
30
  gem.add_runtime_dependency 'erubis'
31
+ gem.add_runtime_dependency 'sweatshop_gears'
31
32
 
32
33
  gem.add_development_dependency 'rake'
33
34
  gem.add_development_dependency 'kintama'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: robot_sweatshop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Scott
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-11 00:00:00.000000000 Z
11
+ date: 2015-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faker
@@ -192,6 +192,20 @@ dependencies:
192
192
  - - ">="
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: sweatshop_gears
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
195
209
  - !ruby/object:Gem::Dependency
196
210
  name: rake
197
211
  requirement: !ruby/object:Gem::Requirement