tinyci 0.1.0 → 0.1.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/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/tinyci/builders/script_builder.rb +0 -7
- data/lib/tinyci/executor.rb +7 -0
- data/lib/tinyci/testers/script_tester.rb +0 -7
- data/lib/tinyci/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df7c6571e843b6f2766821cde0c5da49ddadd867
|
4
|
+
data.tar.gz: 22f4c773d142998b11afb6815a3fc14debe1bcb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d4f733a4af35ed12e744661c82435b417e34b84f86d31bc7285875ffeee4adb7ebdb7235b568cdfc2eb9f56a34b11afb19119e4574103c720006c29195279e0
|
7
|
+
data.tar.gz: 7d30831aabd6539b18d273ef4306192cb5afeef95a6a54bf3e31445dd7ea802ebc1ff53c69024a4e0461e47dde8f1257c2c09bec4e2fab1014cd5297f33274ab
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -10,9 +10,13 @@ TinyCI
|
|
10
10
|
|
11
11
|
A minimal Continuous Integration system, written in ruby, powered by git. MIT licensed.
|
12
12
|
|
13
|
+
RDoc documentation is available at [rubydoc.org](https://www.rubydoc.info/gems/tinyci)
|
14
|
+
|
13
15
|
### Motivation
|
14
16
|
|
15
|
-
Existing CI solutions like [Travis](https://travis-ci.org) and [Jenkins](https://jenkins.io) run as daemons requiring large amounts of RAM, typically in their own virtual machines.
|
17
|
+
Existing CI solutions like [Travis](https://travis-ci.org) and [Jenkins](https://jenkins.io) run as daemons requiring large amounts of RAM, typically in their own virtual machines. In particular Travis and systems like it are designed as SaaS products, and it's not really feasible to self-host them.
|
18
|
+
|
19
|
+
A more lightweight system was desired, for use with small scale personal projects.
|
16
20
|
|
17
21
|
### Architecture
|
18
22
|
|
data/lib/tinyci/executor.rb
CHANGED
data/lib/tinyci/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tinyci
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Davies
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -156,7 +156,7 @@ metadata:
|
|
156
156
|
allowed_push_host: https://rubygems.org
|
157
157
|
post_install_message: " _____ _ _____ _____\n/__ (_)_ __ _ _ /
|
158
158
|
___/ /_ _/\n | || | '_ \\| | | |/ / / /\n | || | | | | |_| / /___/\\/ /_
|
159
|
-
\ \n |_||_|_| |_|\\__, \\____/\\____/ 0.1.
|
159
|
+
\ \n |_||_|_| |_|\\__, \\____/\\____/ 0.1.1\n |___/\n\n"
|
160
160
|
rdoc_options: []
|
161
161
|
require_paths:
|
162
162
|
- lib
|