cibuildgem 0.1.4 → 0.2.1
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: 99cac230a997ce3d919879ca0efd36eab30f2f986180e98a323ff3b071612061
|
|
4
|
+
data.tar.gz: 695a15ca392fa0eff89f3a2296e76d7a9f74a4adb16471d39d1d951d4d118076
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 942a473c81416014f2c4e37442ca035d4a28af007b93b83199bde026288b14f857e0bf3e770f5f1339d003dbe38bc76a69e3718991e3ebe3ea29ffbbc4267eee
|
|
7
|
+
data.tar.gz: 6eae16529e1501441099024045e812519402d47aa8d80532ea55a464f6b6fbddb22cb2604942ad3faecc1835128498cf927100356b2a7dd591698b27c775b015
|
data/lib/cibuildgem/cli.rb
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require "thor"
|
|
4
4
|
require "rake/extensiontask"
|
|
5
|
+
require "prism"
|
|
5
6
|
|
|
6
7
|
module Cibuildgem
|
|
7
8
|
class CLI < Thor
|
|
@@ -54,7 +55,7 @@ module Cibuildgem
|
|
|
54
55
|
cibuildgem will run the test suite of the gem. It either expects a `spec` or `test` task defined.
|
|
55
56
|
EOM
|
|
56
57
|
def test
|
|
57
|
-
run_rake_tasks!(:test)
|
|
58
|
+
run_rake_tasks!("cibuildgem:setup", :test)
|
|
58
59
|
end
|
|
59
60
|
|
|
60
61
|
desc "copy_from_staging_to_lib", "Copy the staging binary. For internal usage.", hide: true
|
|
@@ -37,6 +37,7 @@ module Cibuildgem
|
|
|
37
37
|
|
|
38
38
|
def cross_rubies
|
|
39
39
|
[
|
|
40
|
+
Gem::Version.new("4.0.0"),
|
|
40
41
|
Gem::Version.new("3.4.6"),
|
|
41
42
|
Gem::Version.new("3.3.8"),
|
|
42
43
|
Gem::Version.new("3.2.8"),
|
|
@@ -46,6 +47,7 @@ module Cibuildgem
|
|
|
46
47
|
|
|
47
48
|
def latest_rubies
|
|
48
49
|
[
|
|
50
|
+
Gem::Version.new("4.0.0"),
|
|
49
51
|
Gem::Version.new("3.4.7"),
|
|
50
52
|
Gem::Version.new("3.3.9"),
|
|
51
53
|
Gem::Version.new("3.2.9"),
|
data/lib/cibuildgem/version.rb
CHANGED