card-mod-monkey 0.19.1 → 0.20.0
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/lib/cardio/pry/commands.rb +4 -4
- data/lib/cardio/pry.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34f48e140fbf3d00a68e85d2e86d14f1901aba61603c822a7cf7660f93a45375
|
|
4
|
+
data.tar.gz: 6518acde21d4b033db349c81ee9fcc3e82de6f61d0b4100bace305c06672b7de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 551326b48cee2904e377f37753e1ec695dc11067f7274ae5c2500d129f1cce31d9d0e59784879d667de1c28ed76b70160411ce4e728455fbe62d03966de1bea3
|
|
7
|
+
data.tar.gz: 1e6ea9c307275ffaeb6aaa44ffeef5e32709e6933c81c84335fda030d5748fa08af7dcbc385235ad40a141409d8afca82ef660a99f29e02d8ee7b12ec3882aa0
|
data/lib/cardio/pry/commands.rb
CHANGED
|
@@ -3,12 +3,12 @@ module Cardio
|
|
|
3
3
|
# Pry command configuration
|
|
4
4
|
module Commands
|
|
5
5
|
class << self
|
|
6
|
-
def alias_command
|
|
7
|
-
::Pry.config.commands.alias_command(*
|
|
6
|
+
def alias_command(*)
|
|
7
|
+
::Pry.config.commands.alias_command(*)
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
def block_command
|
|
11
|
-
::Pry.commands.block_command(*
|
|
10
|
+
def block_command(*)
|
|
11
|
+
::Pry.commands.block_command(*)
|
|
12
12
|
end
|
|
13
13
|
end
|
|
14
14
|
|
data/lib/cardio/pry.rb
CHANGED
|
@@ -70,11 +70,11 @@ module Cardio
|
|
|
70
70
|
text.is_a?(String) && (text.match?(%r{</\w+>}) || text.include?("\e"))
|
|
71
71
|
end
|
|
72
72
|
|
|
73
|
-
def puts_html
|
|
73
|
+
def puts_html(html, text, &)
|
|
74
74
|
if html.errors.present?
|
|
75
|
-
puts_html_errors
|
|
75
|
+
puts_html_errors(html, text, &)
|
|
76
76
|
else
|
|
77
|
-
puts_highlighted_html
|
|
77
|
+
puts_highlighted_html(html, &)
|
|
78
78
|
end
|
|
79
79
|
end
|
|
80
80
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: card-mod-monkey
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ethan McCutchen
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 1.
|
|
20
|
+
version: 1.110.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 1.
|
|
27
|
+
version: 1.110.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: html2haml
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -165,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: '0'
|
|
167
167
|
requirements: []
|
|
168
|
-
rubygems_version: 3.
|
|
168
|
+
rubygems_version: 3.7.2
|
|
169
169
|
specification_version: 4
|
|
170
170
|
summary: dev support for mod developers (monkeys)
|
|
171
171
|
test_files: []
|