vcard 0.3.0 → 0.4.0

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: a1a9b1a2c5e533fee3acd4659c5baa7234b36eea86da7082f372fd6415d83e31
4
- data.tar.gz: 245a9b44434e2fdfbb6c69e32edb81aa43864a7f7f74a4504bac53a1c8148fda
3
+ metadata.gz: f8abdea70aaccef56738283c3e0fea8df9f3ebbad0dc149b8981779b19324513
4
+ data.tar.gz: cc348feef9837812a69e19103cb6c2fa40b0339b5c42fec4c87629412036aea0
5
5
  SHA512:
6
- metadata.gz: 56df5e3fbce3b326c4daebd7ab9a8dfc7580fe5bd436c0207cd081dc6aa1f0c37df183dd4289651d49fc15f1d1ef0d7ff8b06b01374a55c8a5d1ea8a83f7ecad
7
- data.tar.gz: f0fde0a4f77ec00a5eedd124de538c7d0fecd6b9bbcc5d05f96ab1545c9a1de83f8f5c2a9bfa4f9f0475e2e901f395f3868b68b7f715251c8a7ff1ad56d9ea40
6
+ metadata.gz: 717897377df2bdf7577182cc17f3778247fe3d342de4201f5bb2c8652c96f55c21879cc1b9eec24927b548571c6e7d9b1dbe4cb254662057894ccea8c16a6684
7
+ data.tar.gz: f0402ec175f386c5add26079f5804adcc967590cd711c9519d0242e4ea85223445dff6f645de8e72e12eac16fa3004674c81367a12e2e4ebc7cdb9f2289380da
@@ -0,0 +1,36 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ host:
9
+ name: ${{ matrix.os }} ${{ matrix.ruby }}
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ os:
15
+ - ubuntu-latest
16
+ ruby:
17
+ - '3.4'
18
+ - '3.3'
19
+ - '3.2'
20
+ - '3.1'
21
+ - '3.0'
22
+ - '2.7'
23
+ - '2.6'
24
+
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby }}
32
+ bundler-cache: true
33
+
34
+ - run: ruby --version
35
+
36
+ - run: bundle exec rake
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.6.5
1
+ ruby-3.4.4
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Vcard [![Build Status](https://travis-ci.org/qoobaa/vcard.svg?branch=master)](https://travis-ci.org/qoobaa/vcard)
1
+ # Vcard [![CI](https://github.com/qoobaa/vcard/actions/workflows/ci.yml/badge.svg)](https://github.com/qoobaa/vcard/actions/workflows/ci.yml)
2
2
 
3
3
  Vcard gem extracts Vcard support from Vpim gem.
4
4
 
data/lib/vcard/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vcard
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vcard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kuba Kuźma
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2020-11-19 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Vcard extracted from Vpim
14
13
  email:
@@ -17,10 +16,10 @@ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
19
+ - ".github/workflows/ci.yml"
20
20
  - ".gitignore"
21
21
  - ".ruby-gemset"
22
22
  - ".ruby-version"
23
- - ".travis.yml"
24
23
  - CHANGELOG.md
25
24
  - Gemfile
26
25
  - LICENSE
@@ -71,7 +70,6 @@ homepage: http://github.com/qoobaa/vcard
71
70
  licenses:
72
71
  - GPL
73
72
  metadata: {}
74
- post_install_message:
75
73
  rdoc_options: []
76
74
  require_paths:
77
75
  - lib
@@ -86,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
84
  - !ruby/object:Gem::Version
87
85
  version: '0'
88
86
  requirements: []
89
- rubygems_version: 3.0.3
90
- signing_key:
87
+ rubygems_version: 3.6.7
91
88
  specification_version: 4
92
89
  summary: Vcard extracted from Vpim
93
90
  test_files:
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- language: ruby
2
- script: bundle exec rake
3
- before_install:
4
- - gem install bundler
5
- rvm:
6
- - 2.3
7
- - 2.4
8
- - 2.5
9
- - 2.6