TriviaMD 0.2.0 → 0.2.1

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: 53443297da359fcb429e25eec19014ce804b445172fadfb1a4c7dc30761e805a
4
- data.tar.gz: 8408e7e419e69586c10ccf5e356ab100a3fb9d56f22e62f2e0da7a9a3da8517f
3
+ metadata.gz: 9c9d294431e5bbcee588459e604abd0a7c92d2215ef5299c6b67fcee87975ef8
4
+ data.tar.gz: 4ea3c51bc2d91522aa2654606a08821e0289a732ffb67edac6c046d32367687e
5
5
  SHA512:
6
- metadata.gz: 03ccbf020c565a1dd6f661379d7488c5c21467380e4b3195220562cab04249c3b47e5a6a6cc27a71f137784e2360f011348da9bd1a551c4479abf23ff794d3b6
7
- data.tar.gz: 7a25d23e224033fa0938f3438ff87686ff0e708170435cffae8e9e260f0c468176a7779975bd4a91d438a366c1c9ef09b5875eb2c67b10774b4f3cb23adc5996
6
+ metadata.gz: cd57a640a346fba946b62fc02fd5d9a50c8c92189b93e5e28ab5c7b354dc141f9afa396ead8ceaca01e011d2deaa35228a5831e7dd5c318bac4a8e4b856a9bed
7
+ data.tar.gz: b72de6ecb4fd805f2d035fbc263ec41a46cf6de0e89c03d3a034b39735a03cea801ff48279f1b6dcbd67936475b3685402413e21a2c869dbd68d527231632916
data/lib/trivia_md.rb CHANGED
@@ -24,7 +24,7 @@ module App
24
24
  desc "parse", "parses trivias"
25
25
  option :file_path
26
26
  def parse(file_path)
27
- puts TriviaParser.new(File.read(file_path)).parse.to_json
27
+ puts TriviaParser.new().parse.to_json
28
28
  end
29
29
  end
30
30
 
data/lib/trivia_parser.rb CHANGED
@@ -2,8 +2,9 @@ require 'kramdown'
2
2
 
3
3
  class TriviaParser
4
4
  include Kramdown::Utils::Html
5
- def initialize(file, debug = false)
6
- @file = file
5
+ def initialize(file_path, debug = false)
6
+ @file_path = file_path
7
+ @file = File.read(@file_path)
7
8
  @debug = debug
8
9
  end
9
10
 
@@ -17,9 +18,14 @@ class TriviaParser
17
18
  return { type: :no_event }
18
19
  end
19
20
 
21
+
22
+ def markdown_gitlies_url
23
+ "#{ENV.fetch('GITLIES_PROJECT_URL', 'https://gitlies.com/')}#{@file_path}"
24
+ end
25
+
20
26
  def parse_reason(c)
21
27
  if c.options[:lang] == "html"
22
- c.value.strip
28
+ c.value.strip.gsub(/{GITLIES_MD}/,markdown_gitlies_url)
23
29
  else
24
30
  escape_html(c.value.strip)
25
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: TriviaMD
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bence Pjatacsuk