pry-doc 0.13.2pre2 → 0.13.2pre3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63240100e6284103bcb24065eb9d6f7e628b3f89244ee6be4a1058cea80df266
|
|
4
|
+
data.tar.gz: ed94a8ccd090ac6c3017d246d9b4bd5482f2a3e29be5333fed1838fe18753d3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5d3f3b88c148ed23809d9b7b955785587e729199f1549e6146137db0a5efd60a9d970828d72105c61e59fcdf99d858d170b4bf9f4658dd37ef716b1bcf65513
|
|
7
|
+
data.tar.gz: a8dcff48e1e8166e5855e79e696df6ee08f697995d438e23ee886e2fd96919a4a66c1bf0586a2ff285694ed545d3f1c4d3bdd8e56d188bf1cdc5a13c4ffebf3f
|
|
@@ -130,8 +130,7 @@ module Pry::CInternals
|
|
|
130
130
|
def self.curl_cmd
|
|
131
131
|
if Pry::Platform.windows?
|
|
132
132
|
%{
|
|
133
|
-
curl -k --fail -L -O https://github.com/ruby/ruby/archive/v#{ruby_version}.zip
|
|
134
|
-
7z -y x v#{ruby_version}.zip
|
|
133
|
+
curl -k --fail -L -O https://github.com/ruby/ruby/archive/v#{ruby_version}.zip & 7z -y x v#{ruby_version}.zip
|
|
135
134
|
}
|
|
136
135
|
else
|
|
137
136
|
"curl --fail -L https://github.com/ruby/ruby/archive/v#{ruby_version}.tar.gz | tar xzvf - 2> /dev/null"
|
data/lib/pry-doc/version.rb
CHANGED