funkce 0.1.0 → 0.1.1

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: d71dfbca711177faf24895f7e95987c6d73779f492a0ea867634bc78627d105b
4
- data.tar.gz: de622bbfd43979448714fc541cee2b41510f21ec3fd6d7394f2b6f72944faa87
3
+ metadata.gz: 621e9d7e5489080fff6a83e3c1753a13d568c94a5e427337dc28f0367a1d9879
4
+ data.tar.gz: 1dcad82a63c7014dc7cd30b6fd80e8c5ec4e65672c24961820465998326c213c
5
5
  SHA512:
6
- metadata.gz: c0d0324bc100efa13597b5ae9ffb4219b1080dc117e5445d1b9bf794609459351a2e2d37bbb261437c6c7695207ddbffebbd8f511e37279dda8fc0760583fa4f
7
- data.tar.gz: 12db8b8a0826fe3212e08deb257942298af11e5d09f86f5b0708d2a5e2abebf522979e82a355f3f344290ae276b31967954a7c20f8d93f2085f71b0021537712
6
+ metadata.gz: b2995eb4a9f89d693085e56b3c527d4552b051032d501c51ab508aa694a7857ce239c8a93f14c0402fe27e368f925fea41cf13164e8d611e492baf50d619b2d7
7
+ data.tar.gz: 00edb8fa3e15e082c0c0ee0f046cec9a1046714cbf7442093c589b446d66b7da639f22bbc3765ec421843109ae9f753cb20d557d526f9fb826012f5a9ef44364
@@ -1,18 +1,24 @@
1
- name: Ruby
1
+ name: Matrix Testing
2
2
 
3
- on: [push,pull_request]
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
4
8
 
5
9
  jobs:
6
- build:
7
- runs-on: ubuntu-latest
10
+ test:
11
+ runs-on: ${{ matrix.os }}-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os: [ubuntu, macos]
16
+ ruby: [2.6, 2.7, 3.0]
17
+ continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
8
18
  steps:
9
- - uses: actions/checkout@v2
10
- - name: Set up Ruby
11
- uses: ruby/setup-ruby@v1
12
- with:
13
- ruby-version: 3.0.1
14
- - name: Run the default task
15
- run: |
16
- gem install bundler -v 2.2.15
17
- bundle install
18
- bundle exec rake
19
+ - uses: actions/checkout@v2
20
+ - uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: ${{ matrix.ruby }}
23
+ - run: bundle install
24
+ - run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
- ## [Unreleased]
1
+ ## 0.1.1 (June 11, 2021)
2
2
 
3
- ## [0.1.0] - 2021-06-11
3
+ - Added support for Ruby 2.6.x and 2.7.x
4
+
5
+ ## 0.1.0 (June 11, 2021)
4
6
 
5
7
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- funkce (0.1.0)
4
+ funkce (0.1.1)
5
5
  thor (~> 1.1)
6
6
 
7
7
  GEM
@@ -23,7 +23,7 @@ GEM
23
23
  builder (3.2.4)
24
24
  childprocess (4.1.0)
25
25
  concurrent-ruby (1.1.9)
26
- contracts (0.17)
26
+ contracts (0.16.1)
27
27
  cucumber (6.1.0)
28
28
  builder (~> 3.2, >= 3.2.4)
29
29
  cucumber-core (~> 9.0, >= 9.0.1)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Funkce
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funkce
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuri Tománek