djot 0.0.1 → 0.0.3
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 +4 -4
- data/.rubocop.yml +2 -0
- data/.rubocop_todo.yml +13 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile +2 -2
- data/README.md +1 -1
- data/Steepfile +2 -0
- data/djot.gemspec +1 -1
- data/lib/djot/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 246e5b1ff3bdae43cf9f021b92d600b495742c164a30e59a423bf915d01ee747
|
|
4
|
+
data.tar.gz: 42eedc5b5a5639d42494083452698d97a3e4792a715760ef1577bcb04c2ac90b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3cf2ca085b9fa257f9eacfde9f25e16c8f46fe20a2821ab0c9aeea090c4dd7f39d5cc4f20e8fa216d848b534f953678abbbe853febbbe98e78cc275df33be94
|
|
7
|
+
data.tar.gz: 16b9d9e7147894014b3e8fe4b830a03cc483de55b100a944c9f401d16c5f5e7406774a7806150e971faf829a2dbb7d0a65097c40648645540c6d017604beaa59
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2022-09-25 01:12:14 UTC using RuboCop version 1.36.0.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 2
|
|
10
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
|
11
|
+
# AllowedMethods: refine
|
|
12
|
+
Metrics/BlockLength:
|
|
13
|
+
Max: 37
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
|
37
37
|
|
|
38
38
|
## Contributing
|
|
39
39
|
|
|
40
|
-
Bug reports and pull requests are welcome on [GitLab](https://gitlab.com/gemmaro/djot).
|
|
40
|
+
Bug reports and pull requests are welcome on [GitLab](https://gitlab.com/gemmaro/ruby-djot).
|
|
41
41
|
This project is intended to be a safe,
|
|
42
42
|
welcoming space for collaboration,
|
|
43
43
|
and contributors are expected to adhere
|
data/Steepfile
CHANGED
data/djot.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = "Call Lua Djot"
|
|
12
12
|
spec.description = "Call Lua Djot for rendering Djot documents in HTML"
|
|
13
|
-
spec.homepage = "https://gitlab.com/gemmaro/djot"
|
|
13
|
+
spec.homepage = "https://gitlab.com/gemmaro/ruby-djot"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
spec.required_ruby_version = ">= 2.6.0"
|
|
16
16
|
|
data/lib/djot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: djot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gemmaro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-lua
|
|
@@ -32,6 +32,7 @@ extensions: []
|
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- ".rubocop.yml"
|
|
35
|
+
- ".rubocop_todo.yml"
|
|
35
36
|
- CHANGELOG.md
|
|
36
37
|
- CODE_OF_CONDUCT.md
|
|
37
38
|
- Gemfile
|
|
@@ -51,13 +52,13 @@ files:
|
|
|
51
52
|
- lib/lua/djot/inline.lua
|
|
52
53
|
- lib/lua/djot/match.lua
|
|
53
54
|
- sig/djot.rbs
|
|
54
|
-
homepage: https://gitlab.com/gemmaro/djot
|
|
55
|
+
homepage: https://gitlab.com/gemmaro/ruby-djot
|
|
55
56
|
licenses:
|
|
56
57
|
- MIT
|
|
57
58
|
metadata:
|
|
58
|
-
homepage_uri: https://gitlab.com/gemmaro/djot
|
|
59
|
-
source_code_uri: https://gitlab.com/gemmaro/djot
|
|
60
|
-
changelog_uri: https://gitlab.com/gemmaro/djot/blob/main/CHANGELOG.md
|
|
59
|
+
homepage_uri: https://gitlab.com/gemmaro/ruby-djot
|
|
60
|
+
source_code_uri: https://gitlab.com/gemmaro/ruby-djot
|
|
61
|
+
changelog_uri: https://gitlab.com/gemmaro/ruby-djot/blob/main/CHANGELOG.md
|
|
61
62
|
rubygems_mfa_required: 'true'
|
|
62
63
|
post_install_message:
|
|
63
64
|
rdoc_options: []
|