hyperbuild 0.0.28 → 0.0.29
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 +16 -10
- data/lib/linux +0 -0
- data/lib/macos +0 -0
- 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: 3faa7b58ff53374cb3ef9cdbebb655aaee1c477e40c847a33319a26ba7cdf5db
|
|
4
|
+
data.tar.gz: 79fc28156da9e719ea2a2cf4fe2fe8d513a71b226e45f80d1ed4a2dddb3c6931
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93b67a3e99a3b2593d619e78f588e0a876818fdf24abe12ddca7d4797f78eacb320cc25f91a47099328c7102c7b0c8c1bd74736fc145a9d535307c057eb2b7b4
|
|
7
|
+
data.tar.gz: 0330a7c4927f31aadad7a5dca460dbcaeb656a6804c3f594013ebae31bbf7547f2d1dc765a34b1c87948fe9e201d9adacc27871a66eecdddfa5b8781052112c8
|
data/README.md
CHANGED
|
@@ -25,9 +25,9 @@ Speed and effectiveness of Node.js version compared to [html-minfier](https://gi
|
|
|
25
25
|
|
|
26
26
|
##### Get
|
|
27
27
|
|
|
28
|
-
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.
|
|
29
|
-
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.
|
|
30
|
-
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.
|
|
28
|
+
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.29-windows-x86_64.exe) |
|
|
29
|
+
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.29-macos-x86_64) |
|
|
30
|
+
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.29-linux-x86_64)
|
|
31
31
|
|
|
32
32
|
##### Use
|
|
33
33
|
|
|
@@ -44,7 +44,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
|
|
|
44
44
|
|
|
45
45
|
```toml
|
|
46
46
|
[dependencies]
|
|
47
|
-
hyperbuild = "0.0.
|
|
47
|
+
hyperbuild = "0.0.29"
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
##### Use
|
|
@@ -99,11 +99,17 @@ hyperbuild is available via [JNI](https://github.com/jni-rs/jni-rs), and support
|
|
|
99
99
|
|
|
100
100
|
##### Get
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
Add as a Maven dependency:
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
```xml
|
|
105
|
+
<dependency>
|
|
106
|
+
<groupId>in.wilsonl.hyperbuild</groupId>
|
|
107
|
+
<artifactId>hyperbuild</artifactId>
|
|
108
|
+
<version>0.0.29</version>
|
|
109
|
+
</dependency>
|
|
110
|
+
```
|
|
105
111
|
|
|
106
|
-
|
|
112
|
+
##### Use
|
|
107
113
|
|
|
108
114
|
```java
|
|
109
115
|
import in.wilsonl.hyperbuild.Hyperbuild;
|
|
@@ -124,7 +130,7 @@ hyperbuild is available as a [native module](https://github.com/PyO3/pyo3), and
|
|
|
124
130
|
|
|
125
131
|
##### Get
|
|
126
132
|
|
|
127
|
-
Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.
|
|
133
|
+
Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.29-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.29-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.29-linux-x86_64-python.so).
|
|
128
134
|
|
|
129
135
|
Rename the file to `hyperbuild.pyd` on Windows or `hyperbuild.so` on macOS/Linux.
|
|
130
136
|
|
|
@@ -143,11 +149,11 @@ minified = hyperbuild.minify("<p> Hello, world! </p>")
|
|
|
143
149
|
<details>
|
|
144
150
|
<summary><strong>Ruby</strong></summary>
|
|
145
151
|
|
|
146
|
-
hyperbuild is available as a [native module](https://github.com/danielpclark/rutie) for macOS and Linux, and supports Ruby versions 2.5 and higher.
|
|
152
|
+
hyperbuild is published on [RubyGems](https://rubygems.org/gems/hyperbuild), available as a [native module](https://github.com/danielpclark/rutie) for macOS and Linux, and supports Ruby versions 2.5 and higher.
|
|
147
153
|
|
|
148
154
|
##### Get
|
|
149
155
|
|
|
150
|
-
|
|
156
|
+
Add the library as a dependency to `Gemfile` or `*.gemspec`.
|
|
151
157
|
|
|
152
158
|
##### Use
|
|
153
159
|
|
data/lib/linux
CHANGED
|
Binary file
|
data/lib/macos
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hyperbuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wilson Lin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fiddle
|