ppz 0.0.0
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 +7 -0
- data/bin/ppz +12 -0
- data/lib/ppz.rb +1 -0
- metadata +45 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 381349e2fad6a19cbebb0256f972b89d987d362d3266ea06ba50bbdbac4e9798
|
|
4
|
+
data.tar.gz: 7aadf7bdbbda2723092ba43459fdad1be56f18927416edb174859a6984645d67
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0a099ef949d0b07c73181271255466f13594b6e31da2cd68a11f2dc2ca172aea4ae46a9ffd05a6c40d2e8e1dd69b249ab48dd431464292e64cd293e2d32a2ce6
|
|
7
|
+
data.tar.gz: 2d42597300a332d7cd902146b672ac170175fc3158e2b519dd03a394cc5fe18ed1283cbddcbe28b59714cb06e2f10506b559e5d526719b34731a8118c596d2de
|
data/bin/ppz
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require_relative './ppz-util'
|
|
4
|
+
require_relative '../lib/object/parser/doc/file'
|
|
5
|
+
require_relative '../lib/func/util'
|
|
6
|
+
|
|
7
|
+
file_in, file_out = UtilInMain.get_file_in_and_out
|
|
8
|
+
|
|
9
|
+
parser = FileDocParser.new path
|
|
10
|
+
model = parser.get_model
|
|
11
|
+
|
|
12
|
+
Func::write_to_file file_out, model.to_html
|
data/lib/ppz.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
p '接口还没写呢~感兴趣的话,可以直接读源码,码量不大'
|
metadata
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ppz
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- wuse
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: ''
|
|
14
|
+
email: 372301467@qq.com
|
|
15
|
+
executables:
|
|
16
|
+
- ppz
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- bin/ppz
|
|
21
|
+
- lib/ppz.rb
|
|
22
|
+
homepage: https://github.com/daGaiGuanYu/ppz
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata: {}
|
|
26
|
+
post_install_message:
|
|
27
|
+
rdoc_options: []
|
|
28
|
+
require_paths:
|
|
29
|
+
- lib
|
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '0'
|
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
requirements: []
|
|
41
|
+
rubygems_version: 3.1.4
|
|
42
|
+
signing_key:
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: 写作
|
|
45
|
+
test_files: []
|