maxy-gen 0.3.1 → 0.3.2
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/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/maxy/gen/cli.rb +1 -1
- data/lib/maxy/gen/version.rb +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: f53f56c6fbf28759545461bf9040d70820ae267d99b7a494804f840381b0570d
|
|
4
|
+
data.tar.gz: b3f8057b1a4568f9988e559f46c6c29c9cc291a169406777ea843f67bab9e54c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 165c624d8b47bb14f04c1a9b021d90005f93e625601e8f9a3e2d101639cd8f1eeda71d6b8d7427a7588367f54006fdf452b57cc2ccf57871166594cab0eb1966
|
|
7
|
+
data.tar.gz: 4ff924c93ce593d96b1939fbcfb8c19e0a4af620addae168041b85b6fcdaf786bea6ed0fe16182f51de22a2f83a81ceaaca1a038310de8374e789afaec688382
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,9 @@ A commandline tool to generate max patches in an emmet-like fashion
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
## Installation
|
|
7
|
+
## Installation and Upgrading
|
|
8
|
+
|
|
9
|
+
_Important! You have to repeat this procedure when upgrading!_
|
|
8
10
|
|
|
9
11
|
Requires `ruby` installed, of course. This gem was built with v.2.3.3.
|
|
10
12
|
|
|
@@ -43,9 +45,11 @@ As of now you can use
|
|
|
43
45
|
|
|
44
46
|
A couple of objects need escaping (with `\`), because some characters are taken, obviously. These are:
|
|
45
47
|
|
|
48
|
+
- `\==`
|
|
46
49
|
- `\-`
|
|
47
50
|
- `\+`
|
|
48
51
|
- `\*`
|
|
52
|
+
- `\==~`
|
|
49
53
|
- `\-~`
|
|
50
54
|
- `\+=~`
|
|
51
55
|
- `\+~`
|
data/lib/maxy/gen/cli.rb
CHANGED
|
@@ -55,7 +55,7 @@ module Maxy
|
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
|
|
58
|
-
library[:objects].select { |k,
|
|
58
|
+
library[:objects].select { |k, _v| k.match?(/\A^[-+*={}()].*/) }.each do |k, _v|
|
|
59
59
|
key = "\\#{k}"
|
|
60
60
|
library[:objects][key] = library[:objects].delete k
|
|
61
61
|
end
|
data/lib/maxy/gen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maxy-gen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Rubisch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06-
|
|
11
|
+
date: 2018-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|