mini_portile 0.7.0.rc1 → 0.7.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/appveyor.yml +9 -6
- data/lib/mini_portile/mini_portile.rb +1 -1
- data/lib/mini_portile/version.rb +1 -1
- data/mini_portile.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a24bcc1e3b18b3338a9595b520062973a78dafb
|
4
|
+
data.tar.gz: 265a02102a47fecdf0b5fd96536bfe67878e9ba8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8ece67b3e3e972ffea18f98b2ceebc1f4a2b3b1158fd30fb7d22aac3cd41578f1c00ecd877f325359e8e5062c5c6cf262203c91c5374f43ba455235e2310826
|
7
|
+
data.tar.gz: f59593838f8fb5d24c526a8e911aee3b854ecbfcc483bc61481ae72de3c2ba03b01bb77e186f47b7ef81c7af807e179a14529c3bb85ccee6b7ca86a0fa7a53b1
|
data/appveyor.yml
CHANGED
@@ -1,21 +1,24 @@
|
|
1
1
|
---
|
2
|
-
version: "{build}"
|
3
|
-
clone_depth: 10
|
4
2
|
install:
|
5
3
|
- ps: ((New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt', "$env:TMP\ca-bundle.crt"))
|
6
4
|
- SET SSL_CERT_FILE=%TMP%\ca-bundle.crt
|
7
5
|
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
6
|
+
- SET RAKEOPT=-rdevkit
|
8
7
|
- ruby --version
|
9
8
|
- gem --version
|
10
9
|
- bundle install
|
10
|
+
|
11
11
|
build: off
|
12
|
+
|
12
13
|
test_script:
|
13
|
-
- bundle exec rake
|
14
|
+
- bundle exec rake
|
14
15
|
|
15
16
|
environment:
|
16
17
|
matrix:
|
17
18
|
- ruby_version: "193"
|
18
|
-
|
19
|
-
|
20
|
-
|
19
|
+
- ruby_version: "200"
|
20
|
+
- ruby_version: "200-x64"
|
21
|
+
- ruby_version: "21"
|
21
22
|
- ruby_version: "21-x64"
|
23
|
+
- ruby_version: "22"
|
24
|
+
- ruby_version: "22-x64"
|
@@ -322,7 +322,7 @@ private
|
|
322
322
|
FileUtils.mkdir_p target
|
323
323
|
|
324
324
|
message "Extracting #{filename} into #{target}... "
|
325
|
-
execute('extract', [tar_exe, "#{tar_compression_switch(filename)}xf", file, "-C", target], {:cd => Dir.pwd})
|
325
|
+
execute('extract', [tar_exe, "#{tar_compression_switch(filename)}xf", file, "-C", target], {:cd => Dir.pwd, :initial_message => false})
|
326
326
|
end
|
327
327
|
|
328
328
|
def execute(action, command, options={})
|
data/lib/mini_portile/version.rb
CHANGED
data/mini_portile.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_portile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.0.
|
4
|
+
version: 0.7.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Lavena
|
@@ -108,7 +108,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
109
109
|
- - ">="
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version: 1.9.
|
111
|
+
version: 1.9.2
|
112
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">"
|