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: 0152c669046c4b9442c984d262770838d30f8b8b32018f2786d4c9e45d9c1635
4
- data.tar.gz: 40bc8495a735b757edc13cef1cd8488a9bbd5bb3864445e2c76f04e22c0d426d
3
+ metadata.gz: 99cac230a997ce3d919879ca0efd36eab30f2f986180e98a323ff3b071612061
4
+ data.tar.gz: 695a15ca392fa0eff89f3a2296e76d7a9f74a4adb16471d39d1d951d4d118076
5
5
  SHA512:
6
- metadata.gz: 8ab300429f6ada154fd8254f4ea3c215c4f3531e32335b74f2f89fc54641bab4f5b7051b7501ba8e53d84f95920bdc2db48d7f8f685a0f529c7aa8678bbe8551
7
- data.tar.gz: 5317dae383a829e06d32a09063638651b61ea0f422adc3faab8aa36aa2a6182564c69068adb9478f4b75b37407b3106f62ab08ee4c92f6fce7a67f4c8cf803b7
6
+ metadata.gz: 942a473c81416014f2c4e37442ca035d4a28af007b93b83199bde026288b14f857e0bf3e770f5f1339d003dbe38bc76a69e3718991e3ebe3ea29ffbbc4267eee
7
+ data.tar.gz: 6eae16529e1501441099024045e812519402d47aa8d80532ea55a464f6b6fbddb22cb2604942ad3faecc1835128498cf927100356b2a7dd591698b27c775b015
@@ -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"),
@@ -95,7 +95,7 @@ jobs:
95
95
  - name: "Setup Ruby"
96
96
  uses: "ruby/setup-ruby@v1"
97
97
  with:
98
- ruby-version: "3.4.7"
98
+ ruby-version: "4.0.0"
99
99
  - name: "Run cibuildgem"
100
100
  uses: "shopify/cibuildgem/.github/actions/cibuildgem@main"
101
101
  with:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cibuildgem
4
- VERSION = "0.1.4"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cibuildgem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify