markdown_exec 0.2.1 → 0.2.5
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/.rubocop.yml +5 -0
- data/CHANGELOG.md +132 -1
- data/Gemfile +2 -0
- data/Gemfile.lock +7 -1
- data/README.md +117 -31
- data/Rakefile +18 -6
- data/assets/approve_code.png +0 -0
- data/assets/example_blocks.png +0 -0
- data/assets/output_of_execution.png +0 -0
- data/assets/select_a_block.png +0 -0
- data/assets/select_a_file.png +0 -0
- data/fixtures/bash1.md +12 -0
- data/fixtures/bash2.md +15 -0
- data/fixtures/exclude1.md +6 -0
- data/fixtures/exclude2.md +9 -0
- data/fixtures/exec1.md +8 -0
- data/fixtures/heading1.md +19 -0
- data/fixtures/sample1.md +9 -0
- data/fixtures/title1.md +6 -0
- data/lib/markdown_exec/version.rb +2 -2
- data/lib/markdown_exec.rb +613 -268
- metadata +21 -11
- data/assets/approve.png +0 -0
- data/assets/blocks.png +0 -0
- data/assets/executed.png +0 -0
- data/assets/select.png +0 -0
- data/assets/select_file.png +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown_exec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fareed Stevenson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: open3
|
@@ -66,8 +66,9 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 0.2.0
|
69
|
-
description: Interactively select and execute
|
70
|
-
complex scripts by naming
|
69
|
+
description: Interactively select and execute fenced code blocks in markdown files.
|
70
|
+
Build complex scripts by naming and requiring blocks. Log resulting scripts and
|
71
|
+
output. Re-run scripts.
|
71
72
|
email:
|
72
73
|
- fareed@phomento.com
|
73
74
|
executables:
|
@@ -83,23 +84,32 @@ files:
|
|
83
84
|
- LICENSE.txt
|
84
85
|
- README.md
|
85
86
|
- Rakefile
|
86
|
-
- assets/
|
87
|
-
- assets/
|
88
|
-
- assets/
|
89
|
-
- assets/
|
90
|
-
- assets/
|
87
|
+
- assets/approve_code.png
|
88
|
+
- assets/example_blocks.png
|
89
|
+
- assets/output_of_execution.png
|
90
|
+
- assets/select_a_block.png
|
91
|
+
- assets/select_a_file.png
|
91
92
|
- bin/console
|
92
93
|
- bin/mde
|
93
94
|
- bin/setup
|
95
|
+
- fixtures/bash1.md
|
96
|
+
- fixtures/bash2.md
|
97
|
+
- fixtures/exclude1.md
|
98
|
+
- fixtures/exclude2.md
|
99
|
+
- fixtures/exec1.md
|
100
|
+
- fixtures/heading1.md
|
101
|
+
- fixtures/sample1.md
|
102
|
+
- fixtures/title1.md
|
94
103
|
- lib/markdown_exec.rb
|
95
104
|
- lib/markdown_exec/version.rb
|
96
105
|
homepage: https://rubygems.org/gems/markdown_exec
|
97
106
|
licenses:
|
98
107
|
- MIT
|
99
108
|
metadata:
|
109
|
+
changelog_uri: https://github.com/fareedst/markdown_exec/blob/main/CHANGELOG.md
|
100
110
|
homepage_uri: https://rubygems.org/gems/markdown_exec
|
111
|
+
rubygems_mfa_required: 'true'
|
101
112
|
source_code_uri: https://github.com/fareedst/markdown_exec
|
102
|
-
changelog_uri: https://github.com/fareedst/markdown_exec/blob/main/CHANGELOG.md
|
103
113
|
post_install_message:
|
104
114
|
rdoc_options: []
|
105
115
|
require_paths:
|
@@ -118,5 +128,5 @@ requirements: []
|
|
118
128
|
rubygems_version: 3.2.32
|
119
129
|
signing_key:
|
120
130
|
specification_version: 4
|
121
|
-
summary:
|
131
|
+
summary: Interactively select and execute fenced code blocks in markdown files.
|
122
132
|
test_files: []
|
data/assets/approve.png
DELETED
Binary file
|
data/assets/blocks.png
DELETED
Binary file
|
data/assets/executed.png
DELETED
Binary file
|
data/assets/select.png
DELETED
Binary file
|
data/assets/select_file.png
DELETED
Binary file
|