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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -10
  3. data/lib/linux +0 -0
  4. data/lib/macos +0 -0
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97f5a53d0edfa1c0d48de35b710be8a28720d531d5d103ac444c61a966d54945
4
- data.tar.gz: 34843de3acf3029b8ca4627b88a3cfcc7c16bc5db8505f909c8f22c9b24a1a4a
3
+ metadata.gz: 3faa7b58ff53374cb3ef9cdbebb655aaee1c477e40c847a33319a26ba7cdf5db
4
+ data.tar.gz: 79fc28156da9e719ea2a2cf4fe2fe8d513a71b226e45f80d1ed4a2dddb3c6931
5
5
  SHA512:
6
- metadata.gz: d6f894c0c4db260af124633733eabf6462f7034ee2306148dba7037b7d6b8a90454e1fb4777e0b98333207490ff060c756fe7c390fdf0f289b028ced43975ce5
7
- data.tar.gz: 6ec47700614cb897f1bab5bf23d5f7fa86cc4f4b56bd41d7e4d45fdd8adcf4542c1bd4a72d0ec8d7d56ce0253485dead9d60c617b19aacb62d93ce8138f9cfae
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.28-windows-x86_64.exe) |
29
- [macOS](https://wilsonl.in/hyperbuild/bin/0.0.28-macos-x86_64) |
30
- [Linux](https://wilsonl.in/hyperbuild/bin/0.0.28-linux-x86_64)
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.28"
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
- Download the [JAR](https://wilsonl.in/hyperbuild/bin/0.0.28.jar) file.
102
+ Add as a Maven dependency:
103
103
 
104
- ##### Use
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
- Make sure to add the JAR file to the class path.
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.28-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.28-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.28-linux-x86_64-python.so).
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
- Download and install the [gem](https://wilsonl.in/hyperbuild/bin/0.0.28.gem).
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.28
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-19 00:00:00.000000000 Z
11
+ date: 2020-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fiddle