expressir 2.4.21 → 2.4.22
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/ext/expressir_core/extconf.rb +1 -1
- data/lib/expressir/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d13825e04d0b4e04a06303c22a070f3ee27400563d8f10f1cf91b99ca3b1ab09
|
|
4
|
+
data.tar.gz: cb5330b94c1241d01d94987c04cabfce27345dca190a28719ff19993c2925261
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2b8d32dfd5c887dcd12dc6cf6ab1f10bdce4c23b2dbaa5ba902d205d3c3e072194722d5314acf41468b8655b10ea9eebdf5b4649dcbcc18f028cc2be6db2d53
|
|
7
|
+
data.tar.gz: 85fdae871deba71911bd661a7a4665f6d9344aea3c79ceeda2bb80091e745b4d0d469b6e787e814b0d82b4f18122efbd87ebc57b59c3e322156f2cd7c66eea4d
|
|
@@ -13,7 +13,7 @@ end
|
|
|
13
13
|
# Windows rubies are mingw-built while rustup defaults to the msvc
|
|
14
14
|
# toolchain; rb-sys cannot bridge the two, so skip there too (windows
|
|
15
15
|
# installs fall back to the pure-Ruby parser).
|
|
16
|
-
if
|
|
16
|
+
if RUBY_PLATFORM.include?("mingw")
|
|
17
17
|
File.write("Makefile", dummy_makefile("").to_s)
|
|
18
18
|
warn "expressir: skipping the Rust core extension on mingw (msvc " \
|
|
19
19
|
"toolchain mismatch)"
|
data/lib/expressir/version.rb
CHANGED