xvert 0.1.0 → 0.1.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: ff0b4a5b08f0fb5ffc8f9bd9c4a2f13ee5ddeca7c09f7c2687146ed0ddff165e
4
- data.tar.gz: 9a2dc105504df2c32c3467341eccb7cee0f9407625431ebc272df3dad3656a2a
3
+ metadata.gz: e08b317c06391c961129a015fa498543b7ef3bdf646883eeafb52b4135100c2f
4
+ data.tar.gz: 4d27c0bb688bcae0c9934603d2b9a049fbf18e1e3eddd329d2063ccebea20595
5
5
  SHA512:
6
- metadata.gz: 81f03e5fdb5751c48fbc4e7cfaa7e7524f903560a886fcd39315a8c91163f9a198a871328fb6579ccbae1c8bd25d596f59ad18a22519c1f76605be1150cc0a2a
7
- data.tar.gz: 6df53e051e6e1fc0a234ea88857aa979b256faa2999ba503ad8cd03c54ae304e221fba6b9bb60edabec7bfbcb6cdcd2ef97b32e047a62255fcaf77f5368d280d
6
+ metadata.gz: 1b5af035a6f9e8ef5454380cfb9bfa419fa53d0e3f6926dcf0de70536e504df28731b2aaa6b2140c6964fd0d9878a2a18d5e12222d98d9b8eff9ab647fdd953f
7
+ data.tar.gz: 2d4a15ddaa7289b51a478acdd1bd0fb6bf45bde3d08d84a2e959418cd087a6ee647490af0432d4002a030456fccb6fee09cd98383e0611fa0eb29a94311b6082
data/Gemfile CHANGED
@@ -5,8 +5,8 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in xvert.gemspec
6
6
  gemspec
7
7
 
8
- gem "rake", "~> 13.0"
9
-
10
8
  gem "minitest", "~> 5.0"
11
-
9
+ gem "rake", "~> 13.0"
12
10
  gem "rubocop", "~> 1.21"
11
+ gem "simplecov", "~> 0.22.0"
12
+ gem "simplecov-cobertura", "~> 2.1.0"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xvert (0.1.0)
4
+ xvert (0.1.1)
5
5
  json (~> 2.6.0)
6
6
  thor (~> 1.2.0)
7
7
  toml-rb (~> 2.2.0)
@@ -12,6 +12,7 @@ GEM
12
12
  specs:
13
13
  ast (2.4.2)
14
14
  citrus (3.0.2)
15
+ docile (1.4.0)
15
16
  json (2.6.3)
16
17
  minitest (5.18.0)
17
18
  parallel (1.23.0)
@@ -34,6 +35,15 @@ GEM
34
35
  rubocop-ast (1.28.1)
35
36
  parser (>= 3.2.1.0)
36
37
  ruby-progressbar (1.13.0)
38
+ simplecov (0.22.0)
39
+ docile (~> 1.1)
40
+ simplecov-html (~> 0.11)
41
+ simplecov_json_formatter (~> 0.1)
42
+ simplecov-cobertura (2.1.0)
43
+ rexml
44
+ simplecov (~> 0.19)
45
+ simplecov-html (0.12.3)
46
+ simplecov_json_formatter (0.1.4)
37
47
  thor (1.2.1)
38
48
  toml-rb (2.2.0)
39
49
  citrus (~> 3.0, > 3.0)
@@ -48,6 +58,8 @@ DEPENDENCIES
48
58
  minitest (~> 5.0)
49
59
  rake (~> 13.0)
50
60
  rubocop (~> 1.21)
61
+ simplecov (~> 0.22.0)
62
+ simplecov-cobertura (~> 2.1.0)
51
63
  xvert!
52
64
 
53
65
  BUNDLED WITH
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/xvert?logo=ruby&logoColor=%23CC342D)](https://rubygems.org/gems/xvert)
4
4
  [![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/koki-develop/xvert?logo=codeclimate)](https://codeclimate.com/github/koki-develop/xvert)
5
+ [![Codecov](https://img.shields.io/codecov/c/github/koki-develop/xvert?logo=codecov)](https://app.codecov.io/gh/koki-develop/xvert)
5
6
  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/koki-develop/xvert/main.yml?logo=github)](https://github.com/koki-develop/xvert/actions/workflows/main.yml)
6
7
  [![GitHub](https://img.shields.io/github/license/koki-develop/xvert)](./LICENSE.txt)
7
8
 
data/lib/xvert/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Xvert
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: xvert
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
  - koki-develop