yard-markdown 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd90bdd01f08225188020b4f84a23b978c37416b6b0081c65056c10c5040d3e6
4
- data.tar.gz: 548d5b5cd91b4e95d9f212d18aa8c3a24c8c9be71c256cfda226ecd8ba5cdd61
3
+ metadata.gz: f8bc0dd303b8e3b40e53d55a7b53c339e8d0c8c8f8a44427c12bc6cca9f303f4
4
+ data.tar.gz: 13159d5918456cbfa5e909679ba2596a52dfecb24ec14bdccac20f51d5552146
5
5
  SHA512:
6
- metadata.gz: fc7dff8536243860024a82e98eb8a0a26057f0db61aef58431302d73058372dcb206cbca9ea926e94c879b43113caf1065c4bd8cd06af6a78b9d501e5da810f2
7
- data.tar.gz: b7cda956cf500503d138d9eeba8d336dce374605870334b28df162fd61c0d2a539603bf8f40518ca0e9b659a0303a224a4238e154b923ec681be72c5956eec0f
6
+ metadata.gz: e2aa7fac3e51b28d2bece0f852da3436d9f9bdb83242af7f78bb25aefde514206f01fe6f9d70f2765b6342cf11b1b40a484454b782565161ec50a72705c41aec
7
+ data.tar.gz: 37c63aa190abaa091d27c279268a23756f120393a519286983510933e5fd22f9076cc6c8f8b694ba25e27d4b638b5d44587f5528c9a97c61f4db3e2b861cca70
data/.yardopts CHANGED
@@ -1,4 +1,4 @@
1
- --load ./lib/yard/markdown.rb
1
+ --load ./lib/yard-markdown.rb
2
2
  --format markdown
3
3
  --markup markdown
4
4
  --output-dir example
data/lib/yard-markdown.rb CHANGED
@@ -1,15 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- dir = File.dirname(__FILE__)
4
- $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir)
5
-
6
3
  require "yard"
7
- require_relative "markdown/version"
8
4
 
9
5
  module YARD
10
6
  module Markdown
11
7
  end
12
8
  end
13
9
 
14
- puts "YARD::Markdown loaded"
15
- YARD::Templates::Engine.register_template_path dir + '/../templates'
10
+ YARD::Templates::Engine.register_template_path File.dirname(__FILE__) + '/../templates'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stanislav (Stas) Katkov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-26 00:00:00.000000000 Z
11
+ date: 2023-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yard
@@ -42,7 +42,6 @@ files:
42
42
  - example/Duck.md
43
43
  - example/Waterfowl.md
44
44
  - lib/yard-markdown.rb
45
- - lib/yard/markdown/version.rb
46
45
  - sig/yard/markdown.rbs
47
46
  - templates/default/fulldoc/markdown/setup.rb
48
47
  homepage: https://poshtui.com
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module YARD
4
- module Markdown
5
- VERSION = "0.1.1"
6
- end
7
- end