robot_sweatshop 0.2.0 → 0.2.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/.gitignore +1 -0
- data/.rubocop.yml +1 -0
- data/README.md +3 -1
- data/Rakefile +8 -0
- data/bin/sweatshop +1 -1
- data/bin/sweatshop-queue-broadcaster +1 -1
- data/robot_sweatshop.eye +1 -1
- data/robot_sweatshop.gemspec +2 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94213cf7a5098291271e0d6b1b053e822da20269
|
4
|
+
data.tar.gz: c6e7f4877c894243ccb386f339bbef0ed4fc822d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42394c288d96179fd7dfc979e23eb44a5f9a75ea6bbdc43ea2c92c4180357df6c9b84ab0c09a0cf1632cbb59bcd1d3ac1092aea61450ce7e69867090f1fa33b9
|
7
|
+
data.tar.gz: aa468e0ca4eafb867b68ee9c68c3ee423156394921c85a95429b20ad5499ba42a345e645169a563950ea17c3bb994e67b6124b2acf2847f15550272771240d72
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[](http://badge.fury.io/rb/robot_sweatshop) [](https://gitter.im/JScott/robot_sweatshop?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
2
|
+
|
1
3
|
# Robot Sweatshop
|
2
4
|
|
3
5
|
[Jenkins](http://jenkins-ci.org/) is horrible to maintain and is problematic when automating installation and configuration. [Drone](https://drone.io/) assumes that you use Docker. [Travis-CI](https://travis-ci.org/recent) is difficult to self-host. All of these frameworks are highly opinionated in one way or another, forcing you to do things _their_ way.
|
@@ -10,7 +12,7 @@ Robot Sweatshop is a single-purpose CI server that runs collections of arbitrary
|
|
10
12
|
- `gem install robot_sweatshop`
|
11
13
|
- `sweatshop start` ([you may need sudo on OSX](https://github.com/JScott/robot_sweatshop/wiki))
|
12
14
|
- `sweatshop job example --auto`
|
13
|
-
- POST a Github payload to `
|
15
|
+
- POST a Github payload to `yourserver.com:8080/github/payload-for/example`
|
14
16
|
- `cat .robot_sweatshop/log/job-worker.log`
|
15
17
|
|
16
18
|
# Usage
|
data/Rakefile
CHANGED
data/bin/sweatshop
CHANGED
@@ -10,7 +10,7 @@ require_relative '../lib/sweatshop/config'
|
|
10
10
|
require_relative '../lib/sweatshop/create-config-directories'
|
11
11
|
|
12
12
|
program :name, 'Robot Sweatshop'
|
13
|
-
program :version, '0.2.
|
13
|
+
program :version, '0.2.1'
|
14
14
|
program :description, 'A lightweight, unopinionated CI server'
|
15
15
|
program :help, 'Author', 'Justin Scott <jvscott@gmail.com>'
|
16
16
|
|
data/robot_sweatshop.eye
CHANGED
data/robot_sweatshop.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |gem|
|
2
2
|
gem.name = 'robot_sweatshop'
|
3
|
-
gem.version = '0.2.
|
3
|
+
gem.version = '0.2.1'
|
4
4
|
gem.licenses = 'MIT'
|
5
5
|
gem.authors = ['Justin Scott']
|
6
6
|
gem.email = 'jvscott@gmail.com'
|
@@ -29,4 +29,5 @@ Gem::Specification.new do |gem|
|
|
29
29
|
gem.add_development_dependency 'http'
|
30
30
|
gem.add_development_dependency 'pry'
|
31
31
|
gem.add_development_dependency 'pry-byebug'
|
32
|
+
gem.add_development_dependency 'simplecov'
|
32
33
|
end
|
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: 0.2.
|
4
|
+
version: 0.2.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-04-
|
11
|
+
date: 2015-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -192,6 +192,20 @@ dependencies:
|
|
192
192
|
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: simplecov
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
195
209
|
description: A lightweight, unopinionated CI server.
|
196
210
|
email: jvscott@gmail.com
|
197
211
|
executables:
|
@@ -281,3 +295,4 @@ test_files:
|
|
281
295
|
- kintama/data/test_job.yaml
|
282
296
|
- kintama/shared/helpers.rb
|
283
297
|
- kintama/shared/process_spawning.rb
|
298
|
+
has_rdoc:
|