madness 1.2.3 → 1.2.4
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/README.md +0 -6
- data/lib/madness/cli.rb +2 -2
- data/lib/madness/commands/config.rb +3 -3
- data/lib/madness/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5790a84273b260c95800d1497ce38a0d5e7f2eabe77b8231309ebf70eb7acb4
|
4
|
+
data.tar.gz: 013d8d7b8dd741bc5a03092c58c6326caa2cdf6c82b001be4755615e6184439b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 942b0408a4ef4e85630703cd31a0c1b0c9d4a5695db685d612cd4280dc01282e725b63629b006dd41abf1ec198ac13df34370444820ea00bdf67c0ffe9c686b4
|
7
|
+
data.tar.gz: 1d0c07859780758c0ea6211ac6f0f62662f49be96adf2d083aba88703148b69e0979caeea5ca47351b5aa775310172533d74ccdb82566013fbd137172de22d9b
|
data/README.md
CHANGED
@@ -2,12 +2,6 @@
|
|
2
2
|
|
3
3
|
# Madness - Instant Markdown Server
|
4
4
|
|
5
|
-
[](https://badge.fury.io/rb/madness)
|
6
|
-
[](https://github.com/DannyBen/madness/actions?query=workflow%3ATest)
|
7
|
-
[](https://codeclimate.com/github/DannyBen/madness/maintainability)
|
8
|
-
|
9
|
-
---
|
10
|
-
|
11
5
|
Madness is a command line server for rendering markdown documents in your
|
12
6
|
browser. It is designed to facilitate easy development of internal
|
13
7
|
markdown-based documentation sites.
|
data/lib/madness/cli.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'mister_bin'
|
2
2
|
|
3
3
|
module Madness
|
4
|
-
# The CLI class is used by the
|
5
|
-
# commands to the relevant
|
4
|
+
# The CLI class is used by the madness 'binary' and forwards incoming CLI
|
5
|
+
# commands to the relevant Madness::Commands class
|
6
6
|
class CLI
|
7
7
|
def self.runner
|
8
8
|
runner = MisterBin::Runner.new version: Madness::VERSION,
|
@@ -3,9 +3,9 @@ module Madness
|
|
3
3
|
class Config < Base
|
4
4
|
summary 'Manage the madness configuration file'
|
5
5
|
|
6
|
-
usage '
|
7
|
-
usage '
|
8
|
-
usage '
|
6
|
+
usage 'madness config new'
|
7
|
+
usage 'madness config show'
|
8
|
+
usage 'madness config (-h|--help)'
|
9
9
|
|
10
10
|
command 'new', 'Create a new .madness.yml configuration file'
|
11
11
|
command 'show', 'Show all configuration options'
|
data/lib/madness/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: madness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: addressable
|
@@ -327,7 +327,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
327
327
|
- !ruby/object:Gem::Version
|
328
328
|
version: '0'
|
329
329
|
requirements: []
|
330
|
-
rubygems_version: 3.6.
|
330
|
+
rubygems_version: 3.6.9
|
331
331
|
specification_version: 4
|
332
332
|
summary: Instant Markdown Server
|
333
333
|
test_files: []
|