chishgg-slate 0.1.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/.ruby-version +1 -0
- data/.standard.yml +3 -0
- data/LICENSE +674 -0
- data/README.md +33 -0
- data/Rakefile +6 -0
- data/lib/slate/version.rb +5 -0
- data/lib/slate.rb +95 -0
- data/sig/slate.rbs +4 -0
- data/style.css +1110 -0
- metadata +54 -0
metadata
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: chishgg-slate
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chinmay Shet
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-12-23 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A simple markdown to HTML converter made in process of learning ruby
|
|
14
|
+
for the YSWS named Dummies by HackClub.
|
|
15
|
+
email:
|
|
16
|
+
- chishxd@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- ".ruby-version"
|
|
22
|
+
- ".standard.yml"
|
|
23
|
+
- LICENSE
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- lib/slate.rb
|
|
27
|
+
- lib/slate/version.rb
|
|
28
|
+
- sig/slate.rbs
|
|
29
|
+
- style.css
|
|
30
|
+
homepage: https://github.com/chishxd/slate
|
|
31
|
+
licenses: []
|
|
32
|
+
metadata:
|
|
33
|
+
homepage_uri: https://github.com/chishxd/slate
|
|
34
|
+
source_code_uri: https://github.com/chishxd/slate
|
|
35
|
+
post_install_message:
|
|
36
|
+
rdoc_options: []
|
|
37
|
+
require_paths:
|
|
38
|
+
- lib
|
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: 3.1.0
|
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '0'
|
|
49
|
+
requirements: []
|
|
50
|
+
rubygems_version: 3.5.22
|
|
51
|
+
signing_key:
|
|
52
|
+
specification_version: 4
|
|
53
|
+
summary: A simple markdown to HTML converter written in Ruby
|
|
54
|
+
test_files: []
|