cmetrics 0.3.0 → 0.3.3

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: 9cb75c4c4235b1607ae66658ec6985ef20dc2338ea06dd38b624fa1265c7d4c8
4
- data.tar.gz: 3141eb411cacb661df52cd1d9da91f73d07615cb1a1fa9fea8db346e29bdfabd
3
+ metadata.gz: b3082373fb19c02ab07622d8bd98a430f9515e742ab88a352976257ecfdb10d7
4
+ data.tar.gz: 87f019a6897a2e3f74387b00c8f7c4c8e4598d4ab0d3f17b1a09c903d34e0eda
5
5
  SHA512:
6
- metadata.gz: 3b55f676d133462f592903c479e1e07603cb3b1c1b9fc8443bfd3ac80e791fc10173bcfc164d4ce3f30b0939ff72c0689c3f0dea1a8795a8a2856b6c03f11965
7
- data.tar.gz: a8e2310516436a3a2a85cd79bb844501d0e1f37b3203a10f68913326cc4668ec570f4da20b08acf3eafd5b8c8c8df518133ab45117ac3ee18dbec919da056633
6
+ metadata.gz: dd71043751ba82e3bad42dcbf4a8c53ab0c500abcdbc93aaac6faf4ba6178919c443b01aa0b730cbd0d390992987f41f8889037ad860f1b43ba612c3a9cd0435
7
+ data.tar.gz: cb8d3dfb9f19da2269536143903eff18cce053f7c7de339e671655d409551ee51bdf8543c5598e4898c9eb84137da3afd43e71fc6523ad4df3475dd1ad2bd8bb
@@ -13,6 +13,7 @@ jobs:
13
13
  - Debian GNU/Linux Buster amd64
14
14
  - Ubuntu Bionic amd64
15
15
  - Ubuntu Focal amd64
16
+ - Ubuntu Jammy amd64
16
17
  include:
17
18
  - label: Debian GNU/Linux Bullseye amd64
18
19
  test-docker-image: debian:bullseye
@@ -26,6 +27,9 @@ jobs:
26
27
  - label: Ubuntu Focal amd64
27
28
  test-docker-image: ubuntu:focal
28
29
  test-script: ci/apt-test.sh
30
+ - label: Ubuntu Jammy amd64
31
+ test-docker-image: ubuntu:jammy
32
+ test-script: ci/apt-test.sh
29
33
  runs-on: ubuntu-latest
30
34
  steps:
31
35
  - uses: actions/checkout@master
@@ -36,4 +40,4 @@ jobs:
36
40
  --tty \
37
41
  --volume ${PWD}:/cmetrics-ruby \
38
42
  ${{ matrix.test-docker-image }} \
39
- /cmetrics-ruby/${{ matrix.test-script }}
43
+ /cmetrics-ruby/${{ matrix.test-script }}
@@ -46,7 +46,7 @@ class BuildCMetrics
46
46
  @recipe.target = File.join(ROOT, "ports")
47
47
  @recipe.files << {
48
48
  url: "https://codeload.github.com/calyptia/cmetrics/tar.gz/v#{version}",
49
- sha256sum: "c0b239fad559852c0c088879697c26e00ba243cfb1c4b8bca6246d1f50932842e",
49
+ sha256sum: "9f0bdc64268ddaa0906ebd8ae4e5cb396f9730695e5697514fc3a5287fe41826",
50
50
  }
51
51
  end
52
52
 
@@ -70,7 +70,7 @@ class BuildCMetrics
70
70
  end
71
71
  end
72
72
 
73
- cmetrics = BuildCMetrics.new("0.3.0", cmake_command: determine_preferred_command("cmake3", "cmake"))
73
+ cmetrics = BuildCMetrics.new("0.3.3", cmake_command: determine_preferred_command("cmake3", "cmake"))
74
74
  cmetrics.build
75
75
 
76
76
  libdir = RbConfig::CONFIG["libdir"]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CMetrics
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmetrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi Hatake