rumrunner 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -6
  3. data/lib/rumrunner/version.rb +1 -1
  4. metadata +13 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2323b66b28f0897ada2d3f99a3caabb2ba3fe48347d2c482b9267f68044c327
4
- data.tar.gz: b00540b6c558f1b1db377fc649acfeb20bbf4dfb6a4603fa376a9b6d86facc67
3
+ metadata.gz: d418721530bb2d83cf3fe7234869b48c959b1971aa0ca6be441378ae286221cb
4
+ data.tar.gz: 6b2344351417b923e61a1e8e0be5def1d57dffa626d226a87041d6395f385230
5
5
  SHA512:
6
- metadata.gz: 8527ea31f1d909e0a4d335d3ec880594cd7b40d1ca04ad70284fa65bdca34cab3abe36c7fe16dd254275fd0fb49d6c43b6e3d487fa8cd6d98a51e84fb3761282
7
- data.tar.gz: 8f0dafd92f2c32a86b7a1cfc24077652cbc578d38bbfd127556b96710c2a6c1742b8a8f9f0e79a538ea7ddc058a2c26de428430d2e325c0651c2c384e84b4bc6
6
+ metadata.gz: 3a252b63a40a3604cb7379ba019e8ffef53ea0d8aa2882eb632501cb83a99ada8c0d794a9e5a01bf0e698bb4b107922329cd93a3a3bb64deba287f134d671d37
7
+ data.tar.gz: bc1a516772e49aba48f2b5e05d967fc3c6b494a3fb4ab655dfe976652bdf2c1c3f6e4470f24a9ba3843b1038c7d97166d8efc7823cdaeb25b69177240d9a8288
data/README.md CHANGED
@@ -3,17 +3,21 @@
3
3
  [![Build Status](https://travis-ci.com/amancevice/rumrunner.svg?branch=master)](https://travis-ci.com/amancevice/rumrunner)
4
4
  [![codecov](https://codecov.io/gh/amancevice/rumrunner/branch/master/graph/badge.svg)](https://codecov.io/gh/amancevice/rumrunner)
5
5
 
6
- Rumrunner is a Rake-based utility for building projects using multi-stage Dockerfiles.
6
+ Rum Runner is a Rake-based utility for building multi-stage Dockerfiles.
7
7
 
8
- Rumrunner allows users to minimally annotate builds using a Rake-like DSL
9
- and execute them with a rake-like CLI.
8
+ Users can pair a multi-stage Dockerfile with a Rumfile that uses a
9
+ Rake-like DSL to customize each stage's build options and dependencies.
10
10
 
11
- Carfofile has the following features:
11
+ The `rum` executable allows users to easily invoke builds, shell-into
12
+ specific stages for debugging, and export artifacts from built containers.
13
+
14
+ Rum Runner has the following features:
15
+ * Rake-like DSL/CLI that enable simple annotation and execution of builds.
12
16
  * Rumfiles are completely defined in standard Ruby syntax, like Rakefiles.
13
- * Users can specify Docker build stages with prerequisites.
17
+ * Users can chain Docker build stages with prerequisites.
14
18
  * Artifacts can be exported from stages
15
- * Stages' build steps can be customized
16
19
  * Shell tasks are automatically provided for every stage
20
+ * Stage, artifact, and shell, steps can be customized
17
21
 
18
22
  ## Installation
19
23
 
@@ -1,3 +1,3 @@
1
1
  module Rum
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumrunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Mancevice
@@ -109,17 +109,21 @@ dependencies:
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0.16'
111
111
  description: |
112
- Rumfile is a Rake-based utility for building projects using multi-stage Dockerfiles.
112
+ Rum Runner is a Rake-based utility for building multi-stage Dockerfiles.
113
113
 
114
- Rumfile allows users to minimally annotate builds using a Rake-like DSL
115
- and execute them with a rake-like CLI.
114
+ Users can pair a multi-stage Dockerfile with a Rumfile that uses a
115
+ Rake-like DSL to customize each stage's build options and dependencies.
116
116
 
117
- Carfofile has the following features:
117
+ The `rum` executable allows users to easily invoke builds, shell-into
118
+ specific stages for debugging, and export artifacts from built containers.
119
+
120
+ Rum Runner has the following features:
121
+ * Rake-like DSL/CLI that enable simple annotation and execution of builds.
118
122
  * Rumfiles are completely defined in standard Ruby syntax, like Rakefiles.
119
- * Users can specify Docker build stages with prerequisites.
123
+ * Users can chain Docker build stages with prerequisites.
120
124
  * Artifacts can be exported from stages
121
- * Stages' build steps can be customized
122
125
  * Shell tasks are automatically provided for every stage
126
+ * Stage, artifact, and shell, steps can be customized
123
127
  email:
124
128
  - smallweirdnum@gmail.com
125
129
  executables:
@@ -159,5 +163,6 @@ rubyforge_project:
159
163
  rubygems_version: 2.7.7
160
164
  signing_key:
161
165
  specification_version: 4
162
- summary: Rumfile is a Rake-based utility for building projects using multi-stage Dockerfiles
166
+ summary: Rum Runner is a Rake-based utility for building projects with multi-stage
167
+ Dockerfiles
163
168
  test_files: []