markdown_exec 0.2.1 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +5 -0
- data/CHANGELOG.md +106 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +7 -1
- data/README.md +25 -27
- 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 +1 -1
- data/lib/markdown_exec.rb +410 -258
- metadata +19 -10
- 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.3
|
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-03-
|
11
|
+
date: 2022-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: open3
|
@@ -66,8 +66,8 @@ 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.
|
71
71
|
email:
|
72
72
|
- fareed@phomento.com
|
73
73
|
executables:
|
@@ -83,23 +83,32 @@ files:
|
|
83
83
|
- LICENSE.txt
|
84
84
|
- README.md
|
85
85
|
- Rakefile
|
86
|
-
- assets/
|
87
|
-
- assets/
|
88
|
-
- assets/
|
89
|
-
- assets/
|
90
|
-
- assets/
|
86
|
+
- assets/approve_code.png
|
87
|
+
- assets/example_blocks.png
|
88
|
+
- assets/output_of_execution.png
|
89
|
+
- assets/select_a_block.png
|
90
|
+
- assets/select_a_file.png
|
91
91
|
- bin/console
|
92
92
|
- bin/mde
|
93
93
|
- bin/setup
|
94
|
+
- fixtures/bash1.md
|
95
|
+
- fixtures/bash2.md
|
96
|
+
- fixtures/exclude1.md
|
97
|
+
- fixtures/exclude2.md
|
98
|
+
- fixtures/exec1.md
|
99
|
+
- fixtures/heading1.md
|
100
|
+
- fixtures/sample1.md
|
101
|
+
- fixtures/title1.md
|
94
102
|
- lib/markdown_exec.rb
|
95
103
|
- lib/markdown_exec/version.rb
|
96
104
|
homepage: https://rubygems.org/gems/markdown_exec
|
97
105
|
licenses:
|
98
106
|
- MIT
|
99
107
|
metadata:
|
108
|
+
changelog_uri: https://github.com/fareedst/markdown_exec/blob/main/CHANGELOG.md
|
100
109
|
homepage_uri: https://rubygems.org/gems/markdown_exec
|
110
|
+
rubygems_mfa_required: 'true'
|
101
111
|
source_code_uri: https://github.com/fareedst/markdown_exec
|
102
|
-
changelog_uri: https://github.com/fareedst/markdown_exec/blob/main/CHANGELOG.md
|
103
112
|
post_install_message:
|
104
113
|
rdoc_options: []
|
105
114
|
require_paths:
|
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
|