antex 0.2.0 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -18
  3. data/lib/antex/version.rb +1 -1
  4. metadata +17 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f65e6060f4753c3154d2c91194da8502c4eb75b01e38c62dc9a2929cf5409d31
4
- data.tar.gz: c814aa39e278783c897d6fc9d7b47eb6b7d6ea399929a381d3edece8922316a8
3
+ metadata.gz: d3db8c557c91605540c09f5f40506b9c51929faf331cded1d7f4af4f8181ecfe
4
+ data.tar.gz: ac1bdba9b94e07ba38d8e7cc4ea7ecbce3dc74a8efcbeac27ba86a52c90a28d1
5
5
  SHA512:
6
- metadata.gz: eceea10353e466dfb39a8ee2dd90a9201a2beea447afd1033032873316e4185d075b41b077afe23593192a9d05e360d3491f8e55ab18c7055c2a8d109a517ad6
7
- data.tar.gz: 281c949132396d7ade573983079bb9ae521a24e1dd865e265a48feb83675ecbe99fba410b078d23ff9e0fefe8ca55a651f96af84ddb34568c503acf2d1b869bf
6
+ metadata.gz: 7b54672095eb1705a027caa89db3491ef240ba4eeb866c46bcd59757614ceba6370e6a274e7ce12b732ffe643ff74e6441faaf79839097338428e74c1261c74c
7
+ data.tar.gz: 1ac764a1c43321ccf28fb2774529e0e330e40e395ab6539b60473aebf39931d66f9ccd4370092cc1173b07fd6efe95f7c2c2cef57f0793f67ebfff78321cf887
data/README.md CHANGED
@@ -1,18 +1,16 @@
1
- # antex
2
-
3
- [![CI tests status badge][build-shield]][build-url]
4
- [![Latest release badge][rubygems-shield]][rubygems-url]
5
- [![License badge][license-shield]][license-url]
6
- [![Maintainability badge][cc-maintainability-shield]][cc-maintainability-url]
7
- [![Test coverage badge][cc-coverage-shield]][cc-coverage-url]
8
-
9
- [build-shield]: https://img.shields.io/github/workflow/status/paolobrasolin/antex/CI/main?label=tests&logo=github
10
- [build-url]: https://github.com/paolobrasolin/antex/actions/workflows/main.yml "CI tests status"
11
- [rubygems-shield]: https://img.shields.io/gem/v/antex?logo=ruby
12
- [rubygems-url]: https://rubygems.org/gems/antex "Latest release"
13
- [license-shield]: https://img.shields.io/github/license/paolobrasolin/antex
14
- [license-url]: https://github.com/paolobrasolin/antex/blob/main/LICENSE "License"
15
- [cc-maintainability-shield]: https://img.shields.io/codeclimate/maintainability/paolobrasolin/antex?logo=codeclimate
16
- [cc-maintainability-url]: https://codeclimate.com/github/paolobrasolin/antex "Maintainability"
17
- [cc-coverage-shield]: https://img.shields.io/codeclimate/coverage/paolobrasolin/antex?logo=codeclimate&label=test%20coverage
18
- [cc-coverage-url]: https://codeclimate.com/github/paolobrasolin/antex/coverage "Test coverage"
1
+ # antex
2
+
3
+ [![Latest release badge][rubygems-shield]][rubygems-url]
4
+ [![License badge][license-shield]][license-url]
5
+ [![Test status badge][test-status-shield]][test-status-url]
6
+ [![Test coverage badge][test-coverage-shield]][test-coverage-url]
7
+
8
+ [test-status-shield]: https://img.shields.io/github/actions/workflow/status/paolobrasolin/antex/main.yml?branch=main&label=test%20status
9
+ [test-status-url]: https://github.com/paolobrasolin/antex/actions/workflows/main.yml "Test status"
10
+ [rubygems-shield]: https://img.shields.io/gem/v/antex?label=latest
11
+ [rubygems-url]: https://rubygems.org/gems/antex "Latest release"
12
+ [license-shield]: https://img.shields.io/github/license/paolobrasolin/antex
13
+ [license-url]: https://github.com/paolobrasolin/antex/blob/main/LICENSE "License"
14
+
15
+ [test-coverage-shield]: https://img.shields.io/coverallsCoverage/github/paolobrasolin/antex?branch=main&label=test%20coverage
16
+ [test-coverage-url]: https://coveralls.io/github/paolobrasolin/antex?branch=main "Test coverage"
data/lib/antex/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Antex
4
- VERSION = '0.2.0'
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,15 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: antex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paolo Brasolin
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-02-26 00:00:00.000000000 Z
10
+ date: 1980-01-01 00:00:00.000000000 Z
12
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: base64
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
13
26
  - !ruby/object:Gem::Dependency
14
27
  name: liquid
15
28
  requirement: !ruby/object:Gem::Requirement
@@ -68,7 +81,6 @@ homepage: https://github.com/paolobrasolin/antex
68
81
  licenses:
69
82
  - MIT
70
83
  metadata: {}
71
- post_install_message:
72
84
  rdoc_options: []
73
85
  require_paths:
74
86
  - lib
@@ -83,8 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
95
  - !ruby/object:Gem::Version
84
96
  version: '0'
85
97
  requirements: []
86
- rubygems_version: 3.4.5
87
- signing_key:
98
+ rubygems_version: 3.7.2
88
99
  specification_version: 4
89
100
  summary: Universal TeX integrator
90
101
  test_files: []