djot 0.0.2 → 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: 2dfaa083777a299044389bba598a0d6ee0401075fc8a7dc079b7855e0de47149
4
- data.tar.gz: 63d773db76630e7bbca9144cb5305d4d16ac37a0bf31fff4a137d770f0d50f62
3
+ metadata.gz: 246e5b1ff3bdae43cf9f021b92d600b495742c164a30e59a423bf915d01ee747
4
+ data.tar.gz: 42eedc5b5a5639d42494083452698d97a3e4792a715760ef1577bcb04c2ac90b
5
5
  SHA512:
6
- metadata.gz: fd46f5f364ee584986deb32691afb9afd44d12470f98345c132f471833b6d8ae59b750d4a6d7576bb05ee7cf059c672a6e47636e1a9f038527dffdff4d745b5c
7
- data.tar.gz: 828cf8ed590f738d96a39a435b8221b769d4f174924c95966a3634aa9c14c8238db1641e989689d67c87c4256f543f7a9e45b5b7ccd29e4be39cd894a2b82f97
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,12 @@
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
+
5
11
  ## [0.0.2] - 2022-09-03
6
12
 
7
13
  ### Fixes
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/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/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.2"
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.2
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