fontist 1.14.4 → 1.14.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd2e6dd82f23ca6c5bf67e6895708ad8be3a602ba493409af7f41359301fd9ae
4
- data.tar.gz: 855891bb717b439c1b8d9a39b10b91a7e9cc83f332200dd63500c04348612e81
3
+ metadata.gz: c68fb06c5de27009bdfe263acef48958d5ec89d8599ab410e11781b24f582070
4
+ data.tar.gz: 11b4b0d923fd4cb2c80723fc6d222b3ee67bf83f496cda0ec1348382563b33ff
5
5
  SHA512:
6
- metadata.gz: bb012711692ab655f43808d965ad082532564e3a24b693c7bc5343934834cba92a9ea524725a0f71e6dc433a71e65e4c53872ddaddb24db20fbea7dfe3dbe72b
7
- data.tar.gz: f189421d98cc7c3ecb6eab190e60237b2486e34dfdb5492881ed418ae43a8d317148161847235fe9c9cd6f9a0bda97514fe9234a7ebf0e68825810106a7b4789
6
+ metadata.gz: ba79faf4ab79d0f61b45139b2d2b377aac6c05568a776c8a9066ce22ce888ad3c5ccac29d4a7c70edfaee0a864563f2d0d09951ca888e05b2413975375c64893
7
+ data.tar.gz: 47be34621947a7bb5a0cb0ffe2a60c997049887329aa1d2a86dc12443139034f9d1ec712531c01393f179ace16e083f1890e24eb549093c3bedd8e724ad3e4b0
@@ -42,9 +42,29 @@ jobs:
42
42
  env:
43
43
  TEST_ENV: CI
44
44
 
45
+ archlinux-test:
46
+ name: Test on Arch Linux
47
+ runs-on: ubuntu-latest
48
+ container:
49
+ image: 'archlinux:latest'
50
+ continue-on-error: false
51
+ strategy:
52
+ fail-fast: false
53
+
54
+ steps:
55
+ - uses: actions/checkout@v3
56
+
57
+ - name: Setup packages
58
+ run: pacman -Syu --noconfirm git ruby binutils gcc autoconf make libffi
59
+
60
+ - run: bundle install
61
+
62
+ - name: Test
63
+ run: bundle exec rspec --tag ~dev
64
+
45
65
  release:
46
66
  name: Release gem
47
- needs: test
67
+ needs: [ test, archlinux-test ]
48
68
  runs-on: ubuntu-latest
49
69
  if: contains(github.ref, 'refs/tags/v')
50
70
  steps:
data/.gitignore CHANGED
@@ -23,3 +23,4 @@ Gemfile.lock
23
23
 
24
24
  # VS Code
25
25
  .vscode
26
+ test*
@@ -37,6 +37,12 @@ module Fontist
37
37
 
38
38
  def self.ask(message, options = {})
39
39
  new.ask(message, options)
40
+ rescue Errno::EBADF
41
+ say(<<~MSG.chomp)
42
+ ERROR: Fontist is unable to obtain agreement without an interactive prompt.
43
+ Please provide explicit agreement at execution or re-run Fontist with an interactive prompt.
44
+ MSG
45
+ "error"
40
46
  end
41
47
 
42
48
  def self.print(message)
@@ -1,3 +1,3 @@
1
1
  module Fontist
2
- VERSION = "1.14.4".freeze
2
+ VERSION = "1.14.5".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fontist
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.4
4
+ version: 1.14.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: down