-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.ring
More file actions
114 lines (105 loc) · 2.32 KB
/
package.ring
File metadata and controls
114 lines (105 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
aPackageInfo = [
:name = "RingHTML",
:description = "A high-performance HTML5 parser with CSS selectors and DOM manipulation for the Ring programming language.",
:folder = "ring-html",
:developer = "ysdragon",
:email = "",
:license = "MIT License",
:version = "1.0.4",
:ringversion = "1.24",
:versions = [
[
:version = "1.0.4",
:branch = "master"
]
],
:libs = [
[
:name = "",
:version = "",
:providerusername = ""
]
],
:files = [
"CMakeLists.txt",
"LICENSE",
"README.md",
"lib.ring",
"main.ring",
"package.ring",
"src/c_src/ring_html.c",
"src/html.ring",
"src/utils/color.ring",
"src/utils/install.ring",
"src/utils/uninstall.ring",
"examples/01_basic_parsing.ring",
"examples/02_css_selectors.ring",
"examples/03_content_extraction.ring",
"examples/04_dom_navigation.ring",
"examples/05_advanced_selectors.ring",
"examples/06_real_world_scraping.ring",
"examples/07_xml_parsing.ring",
"examples/08_dom_manipulation.ring",
"examples/09_unicode_international.ring",
"img/logo.png"
],
:ringfolderfiles = [
],
:windowsfiles = [
"lib/windows/i386/ring_html.dll",
"lib/windows/amd64/ring_html.dll",
"lib/windows/arm64/ring_html.dll"
],
:linuxfiles = [
"lib/linux/amd64/libring_html.so",
"lib/linux/arm64/libring_html.so",
"lib/linux/musl/amd64/libring_html.so",
"lib/linux/musl/arm64/libring_html.so"
],
:ubuntufiles = [
],
:fedorafiles = [
],
:freebsdfiles = [
"lib/freebsd/amd64/libring_html.so",
"lib/freebsd/arm64/libring_html.so"
],
:macosfiles = [
"lib/macos/amd64/libring_html.dylib",
"lib/macos/arm64/libring_html.dylib"
],
:windowsringfolderfiles = [
],
:linuxringfolderfiles = [
],
:ubunturingfolderfiles = [
],
:fedoraringfolderfiles = [
],
:freebsdringfolderfiles = [
],
:macosringfolderfiles = [
],
:run = "ring main.ring",
:windowsrun = "",
:linuxrun = "",
:macosrun = "",
:ubunturun = "",
:fedorarun = "",
:setup = "ring src/utils/install.ring",
:windowssetup = "",
:linuxsetup = "",
:macossetup = "",
:ubuntusetup = "",
:fedorasetup = "",
:remove = "ring src/utils/uninstall.ring",
:windowsremove = "",
:linuxremove = "",
:macosremove = "",
:ubunturemove = "",
:fedoraremove = "",
:remotefolder = "ring-html",
:branch = "master",
:providerusername = "ysdragon",
:providerwebsite = "github.com"
]