nestedtext 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +12 -5
- data/lib/nestedtext/version.rb +1 -1
- data/nestedtext.gemspec +2 -2
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a5cc29794e1c25e022f4d7d8a55699ea992184d2e57524c3f0cff863dc74729
|
4
|
+
data.tar.gz: 7285c3eae03c21a52377fb9ba1c6eb35fcdcaf7d74ddb12ae97eae5a2c3e59d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49473c71d4efe24d53cb3fdfc2528ed79df845e81020b7a5adc0c23291229297443865799fa783ad1bc0af5c5dc1b35837d700194cb35015086e0e6ddf9e7f7e
|
7
|
+
data.tar.gz: aecd6761eef6157783ce35b76acc8a8c0ff69fda4d618389625f8bf2641eb1b05bd7331090bbaf97095638d2e70615d310fc0cc29cc9509bf3883b04405f3f8b
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
9
|
|
10
|
+
## [0.2.0] - 2022-01-24
|
11
|
+
### Added
|
12
|
+
- Iteration on CD GitHub Actins workflow.
|
13
|
+
|
10
14
|
## [0.1.0] - 2022-01-24
|
11
15
|
### Added
|
12
16
|
- Initial release. If this release works, an 1.0.0 will soon follow.
|
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# NestedText Ruby Library [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Get%20a%20nifty%20tooltip%20for%20term%20definitions%20in%20your%20Jekyll%20blog%20with%20this%20plugin&url=https://github.com/erikw/nestedtext-ruby&via=erik_westrup&hashtags=jekyll,plugin)
|
2
|
-
[![Gem Version](https://badge.fury.io/rb/nestedtext
|
3
|
-
[![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/nestedtext
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/nestedtext.svg)](https://badge.fury.io/rb/nestedtext)
|
3
|
+
[![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/nestedtext?color=brightgreen&type=total&label=gem%20downloads)](https://rubygems.org/gems/nestedtext)
|
4
4
|
[![Data Format Version Supported](https://img.shields.io/badge/%F0%9F%84%BD%F0%9F%85%83%20Version%20Supported-3.2.1-blueviolet)](https://nestedtext.org/en/v3.2/)
|
5
5
|
[![Tests](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml)
|
6
6
|
[![Official Tests](https://img.shields.io/badge/%F0%9F%8F%81%20Official%20Tests-Passing-success)](https://github.com/KenKundert/nestedtext_tests/tree/585e95a73d94ac1f48e71a154e2db0ab67cf30fa)
|
7
7
|
[![CodeQL](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml)
|
8
|
-
[![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/
|
9
|
-
[![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/
|
8
|
+
[![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/8409b6cdc3dc62a33f6f/maintainability)](https://codeclimate.com/github/erikw/nestedtext-ruby/maintainability)
|
9
|
+
[![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/8409b6cdc3dc62a33f6f/test_coverage)](https://codeclimate.com/github/erikw/nestedtext-ruby/test_coverage)
|
10
10
|
[![SLOC](https://img.shields.io/tokei/lines/github/erikw/nestedtext-ruby)](#)
|
11
11
|
[![License](https://img.shields.io/github/license/erikw/nestedtext-ruby)](LICENSE.txt)
|
12
12
|
[![OSS Lifecycle](https://img.shields.io/osslifecycle/erikw/nestedtext-ruby)](https://github.com/Netflix/osstracker)
|
@@ -88,7 +88,7 @@ $ bundle exec rake release
|
|
88
88
|
## (semi-manually) Using gem-release gem extension
|
89
89
|
Using [gem-release](https://github.com/svenfuchs/gem-release):
|
90
90
|
```console
|
91
|
-
$ vi CHANGELOG.md && git
|
91
|
+
$ vi CHANGELOG.md && git commit -am "Prepare release" && git push
|
92
92
|
$ gem bump --version minor --tag --sign --push --release
|
93
93
|
```
|
94
94
|
For `--version`, use `major|minor|patch` as needed.
|
@@ -102,6 +102,13 @@ $ git commit -am "Prepare vX.Y.Z" && git push
|
|
102
102
|
$ git tag x.y.z && git push --tags
|
103
103
|
```
|
104
104
|
|
105
|
+
or combined with gem-release
|
106
|
+
```console
|
107
|
+
$ vi CHANGELOG.md
|
108
|
+
$ git commit -am "Prepare release" && git push
|
109
|
+
$ gem bump --version minor --tag --sign --push
|
110
|
+
```
|
111
|
+
|
105
112
|
|
106
113
|
# Contributing
|
107
114
|
Bug reports and pull requests are welcome on GitHub at [https://github.com/erikw/nestedtext-ruby](https://github.com/erikw/nestedtext-ruby).
|
data/lib/nestedtext/version.rb
CHANGED
data/nestedtext.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["Erik Westrup"]
|
9
9
|
spec.email = ["erik.westrup@gmail.com"]
|
10
10
|
|
11
|
-
spec.summary = "A ruby library for the human friendly data format NestedText https://nestedtext.org/"
|
12
|
-
spec.description = "A ruby implementation the
|
11
|
+
spec.summary = "A ruby library implementation for the human friendly data format NestedText (https://nestedtext.org/)"
|
12
|
+
spec.description = "A ruby library implementation for the human friendly data format NestedText (https://nestedtext.org/). There is support for decoding a NestedText file or string to Ruby data structures, as well as encoding Ruby objects to a NestedText file or string. Furthermore there is support for serialization and deserialization of custom classes. Support for v3.2.1 of the data format will all official tests passing."
|
13
13
|
spec.homepage = "https://github.com/erikw/nestedtext-ruby/"
|
14
14
|
spec.license = "MIT"
|
15
15
|
spec.required_ruby_version = [">= 3.0", "< 4"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nestedtext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik Westrup
|
@@ -10,11 +10,11 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2022-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: A ruby implementation the
|
14
|
-
decoding a NestedText file or string
|
15
|
-
Ruby
|
16
|
-
|
17
|
-
all official tests passing.
|
13
|
+
description: A ruby library implementation for the human friendly data format NestedText
|
14
|
+
(https://nestedtext.org/). There is support for decoding a NestedText file or string
|
15
|
+
to Ruby data structures, as well as encoding Ruby objects to a NestedText file or
|
16
|
+
string. Furthermore there is support for serialization and deserialization of custom
|
17
|
+
classes. Support for v3.2.1 of the data format will all official tests passing.
|
18
18
|
email:
|
19
19
|
- erik.westrup@gmail.com
|
20
20
|
executables: []
|
@@ -73,5 +73,6 @@ requirements: []
|
|
73
73
|
rubygems_version: 3.3.3
|
74
74
|
signing_key:
|
75
75
|
specification_version: 4
|
76
|
-
summary: A ruby library for the human friendly data format NestedText
|
76
|
+
summary: A ruby library implementation for the human friendly data format NestedText
|
77
|
+
(https://nestedtext.org/)
|
77
78
|
test_files: []
|