xi_parser 0.0.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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +29 -0
  4. data/lib/xi_parser.rb +2 -0
  5. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0330d5344d5dea2217224d286b41c7bac68d5f08ae948c8e3f54f533c89fb71e
4
+ data.tar.gz: 5ea9efcfeeb924e94e83f7405fd12795293646407b3370d76642270c1feef9a6
5
+ SHA512:
6
+ metadata.gz: 6989dcbe9a0c5d0eb602e4e21ea099ec0a90292a777586a4dfa02b776218b058ade064bc133b8e48024f56c14536da7c59c9e5ff569ce8888a1a1df64e98e9e1
7
+ data.tar.gz: 3e183458ebb586a8d8b2d30eae6f175f915c38964ad6d5f09e250a6e18366d0ca94fb9b2b745ce8d1e8c871c5ed864796d55646bfd75dcb4065c893eab540a2d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Alexey Tsaplin-Kupaysinov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # gem 'xi_parser'
2
+
3
+ **Parse xi files to html format.**
4
+
5
+ Xi is personal wiki language (created by Grigory Petrov) - https://github.com/grigoryvp/vscode-language-xi
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'xi_parser'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ ```bash
18
+ $ bundle
19
+ ```
20
+
21
+ Or install it yourself as:
22
+
23
+ ```ruby
24
+ gem install xi_parser
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ TODO: wip
data/lib/xi_parser.rb ADDED
@@ -0,0 +1,2 @@
1
+ class XiParser
2
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xi_parser
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Alexey Tsaplin-Kupaysinov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-09-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Parse xi files to html format. Xi is personal wiki language (created
14
+ by Grigory Petrov)
15
+ email: info@krdprog.ru
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/xi_parser.rb
23
+ homepage: https://github.com/krdprog/xi_parser
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/krdprog/xi_parser
28
+ post_install_message: 'Thanks for installing! Author: @krdprog'
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.2.15
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Parse xi files to html format.
47
+ test_files: []