omniboard 1.2.5 → 1.2.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/CHANGELOG.md +6 -0
- data/bin/omniboard +1 -1
- data/version.txt +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef3c6371fd9150a7107948c207abed282cedb985e1c2d7b137847ab1e8a42fb4
|
|
4
|
+
data.tar.gz: 8bc8fd52dd81293843db8c320d109b1143b51938a684e8473f810d1d567e6aa0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80c013ecc798f3266e710730196c742910e80fe7295528a7c08123b5503f4e9ffd8f5bc1ba232b351d7a821788588630705746d449f6f89645a5baacea3f18c2
|
|
7
|
+
data.tar.gz: e93d22a21bb41e30bd15653858357df5d8229c96b280218d8585cbcf9188face00941a27c6aee7388b6a8dcdf38ff446b958cc17093f115de50066493775dacb
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# [1.2.6] - 2019-05-25
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Removed references to Trollop. Now using Optimist.
|
|
12
|
+
|
|
7
13
|
# [1.2.5] - 2019-04-05
|
|
8
14
|
|
|
9
15
|
### Changed
|
data/bin/omniboard
CHANGED
|
@@ -5,7 +5,7 @@ require "omniboard"
|
|
|
5
5
|
# Command line options
|
|
6
6
|
require "optimist"
|
|
7
7
|
|
|
8
|
-
opts =
|
|
8
|
+
opts = Optimist::options do
|
|
9
9
|
opt :configure, "Location of configuration files. (Default: #{File.join(ENV["HOME"], ".omniboard")})", type: String
|
|
10
10
|
opt :output, "Where should the html go? If not specified, outputs to STDOUT.", type: String
|
|
11
11
|
opt :reset, "Wipe cache and start again from the source."
|
data/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.6
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan-Yves Ruzicka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyfocus
|