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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b03b4e39c4750194759beaf8e06ee3c8c252729cc9b5c968e8f58b10d3816cba
4
- data.tar.gz: 4f748e4b8bc6ebf35bcc98c1878bbcbafab6a56f145ed91811aef5a9f1b19bbb
3
+ metadata.gz: 246e5b1ff3bdae43cf9f021b92d600b495742c164a30e59a423bf915d01ee747
4
+ data.tar.gz: 42eedc5b5a5639d42494083452698d97a3e4792a715760ef1577bcb04c2ac90b
5
5
  SHA512:
6
- metadata.gz: 68028a3983f40b52503ac03f7792008f7aab78e84dccd20cf6b69564e8e686014f9262b6e613fddd5ef6078ea364f1c722128a9273336307587ec4f909716368
7
- data.tar.gz: 356d3e4e7bf05d5561c93e8e4dcdcb719c00e6139e483959fb09d5db2e0278319ee8af9a1134f01119131ba443e611b59fa79015741ec4b31638664cead37df4
6
+ metadata.gz: a3cf2ca085b9fa257f9eacfde9f25e16c8f46fe20a2821ab0c9aeea090c4dd7f39d5cc4f20e8fa216d848b534f953678abbbe853febbbe98e78cc275df33be94
7
+ data.tar.gz: 16b9d9e7147894014b3e8fe4b830a03cc483de55b100a944c9f401d16c5f5e7406774a7806150e971faf829a2dbb7d0a65097c40648645540c6d017604beaa59
data/.rubocop.yml CHANGED
@@ -1,3 +1,5 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
1
3
  AllCops:
2
4
  TargetRubyVersion: 2.6
3
5
  NewCops: enable
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
@@ -2,6 +2,18 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.0.3] - 2022-09-25
6
+
7
+ ### Added
8
+
9
+ * Tests from Djot test files
10
+
11
+ ## [0.0.2] - 2022-09-03
12
+
13
+ ### Fixes
14
+
15
+ * Repository URL
16
+
5
17
  ## [0.0.1] - 2022-09-03
6
18
 
7
19
  Initial release.
data/Gemfile CHANGED
@@ -6,8 +6,8 @@ source "https://rubygems.org"
6
6
  gemspec
7
7
 
8
8
  gem "rake", "~> 13.0"
9
+ gem "rdoc", "~> 6.4"
9
10
  gem "rubocop", "~> 1.21"
10
11
  gem "rubocop-rake", "~> 0.6.0"
11
- gem "test-unit", "~> 3.0"
12
- gem "rdoc", "~> 6.4"
13
12
  gem "steep", "~> 1.1"
13
+ gem "test-unit", "~> 3.0"
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
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  D = Steep::Diagnostic
2
4
 
3
5
  target :lib do
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Djot
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.3"
5
5
  end
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.1
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-03 00:00:00.000000000 Z
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: []