lipgloss 0.0.1 → 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 +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +438 -16
- data/ext/lipgloss/extconf.rb +61 -0
- data/ext/lipgloss/extension.c +150 -0
- data/ext/lipgloss/extension.h +76 -0
- data/ext/lipgloss/list.c +147 -0
- data/ext/lipgloss/style.c +398 -0
- data/ext/lipgloss/style_border.c +209 -0
- data/ext/lipgloss/style_spacing.c +97 -0
- data/ext/lipgloss/style_unset.c +151 -0
- data/ext/lipgloss/table.c +242 -0
- data/ext/lipgloss/tree.c +192 -0
- data/go/go.mod +20 -0
- data/go/go.sum +34 -0
- data/go/layout.go +71 -0
- data/go/lipgloss.go +78 -0
- data/go/list.go +118 -0
- data/go/style.go +281 -0
- data/go/style_border.go +197 -0
- data/go/style_spacing.go +94 -0
- data/go/style_unset.go +129 -0
- data/go/table.go +218 -0
- data/go/tree.go +138 -0
- data/lib/lipgloss/border.rb +48 -0
- data/lib/lipgloss/color.rb +97 -0
- data/lib/lipgloss/position.rb +27 -0
- data/lib/lipgloss/table.rb +63 -0
- data/lib/lipgloss/version.rb +2 -1
- data/lib/lipgloss.rb +21 -2
- data/lipgloss.gemspec +34 -0
- metadata +37 -14
- data/CHANGELOG.md +0 -5
- data/CODE_OF_CONDUCT.md +0 -132
- data/Rakefile +0 -12
- data/sig/lipgloss.rbs +0 -4
data/go/tree.go
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
package main
|
|
2
|
+
|
|
3
|
+
import "C"
|
|
4
|
+
|
|
5
|
+
import (
|
|
6
|
+
"encoding/json"
|
|
7
|
+
lipglosstree "github.com/charmbracelet/lipgloss/tree"
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
func allocTree(tree *lipglosstree.Tree) uint64 {
|
|
11
|
+
treesMu.Lock()
|
|
12
|
+
defer treesMu.Unlock()
|
|
13
|
+
id := getNextID()
|
|
14
|
+
trees[id] = tree
|
|
15
|
+
|
|
16
|
+
return id
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
func getTree(id uint64) *lipglosstree.Tree {
|
|
20
|
+
treesMu.RLock()
|
|
21
|
+
defer treesMu.RUnlock()
|
|
22
|
+
|
|
23
|
+
return trees[id]
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
//export lipgloss_tree_new
|
|
27
|
+
func lipgloss_tree_new() C.ulonglong {
|
|
28
|
+
return C.ulonglong(allocTree(lipglosstree.New()))
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
//export lipgloss_tree_root
|
|
32
|
+
func lipgloss_tree_root(root *C.char) C.ulonglong {
|
|
33
|
+
return C.ulonglong(allocTree(lipglosstree.Root(C.GoString(root))))
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
//export lipgloss_tree_free
|
|
37
|
+
func lipgloss_tree_free(id C.ulonglong) {
|
|
38
|
+
treesMu.Lock()
|
|
39
|
+
defer treesMu.Unlock()
|
|
40
|
+
delete(trees, uint64(id))
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
//export lipgloss_tree_set_root
|
|
44
|
+
func lipgloss_tree_set_root(id C.ulonglong, root *C.char) C.ulonglong {
|
|
45
|
+
tree := getTree(uint64(id)).Root(C.GoString(root))
|
|
46
|
+
|
|
47
|
+
return C.ulonglong(allocTree(tree))
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
//export lipgloss_tree_child
|
|
51
|
+
func lipgloss_tree_child(id C.ulonglong, child *C.char) C.ulonglong {
|
|
52
|
+
tree := getTree(uint64(id)).Child(C.GoString(child))
|
|
53
|
+
|
|
54
|
+
return C.ulonglong(allocTree(tree))
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
//export lipgloss_tree_child_tree
|
|
58
|
+
func lipgloss_tree_child_tree(id C.ulonglong, childTreeID C.ulonglong) C.ulonglong {
|
|
59
|
+
childTree := getTree(uint64(childTreeID))
|
|
60
|
+
tree := getTree(uint64(id)).Child(childTree)
|
|
61
|
+
|
|
62
|
+
return C.ulonglong(allocTree(tree))
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
//export lipgloss_tree_children
|
|
66
|
+
func lipgloss_tree_children(id C.ulonglong, childrenJSON *C.char) C.ulonglong {
|
|
67
|
+
var children []string
|
|
68
|
+
|
|
69
|
+
if err := json.Unmarshal([]byte(C.GoString(childrenJSON)), &children); err != nil {
|
|
70
|
+
return id
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
anyChildren := make([]any, len(children))
|
|
74
|
+
|
|
75
|
+
for index, child := range children {
|
|
76
|
+
anyChildren[index] = child
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
tree := getTree(uint64(id)).Child(anyChildren...)
|
|
80
|
+
|
|
81
|
+
return C.ulonglong(allocTree(tree))
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
//export lipgloss_tree_enumerator
|
|
85
|
+
func lipgloss_tree_enumerator(id C.ulonglong, enumType C.int) C.ulonglong {
|
|
86
|
+
var enumerator lipglosstree.Enumerator
|
|
87
|
+
|
|
88
|
+
switch int(enumType) {
|
|
89
|
+
case 0:
|
|
90
|
+
enumerator = lipglosstree.DefaultEnumerator
|
|
91
|
+
case 1:
|
|
92
|
+
enumerator = lipglosstree.RoundedEnumerator
|
|
93
|
+
default:
|
|
94
|
+
enumerator = lipglosstree.DefaultEnumerator
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
tree := getTree(uint64(id)).Enumerator(enumerator)
|
|
98
|
+
|
|
99
|
+
return C.ulonglong(allocTree(tree))
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
//export lipgloss_tree_enumerator_style
|
|
103
|
+
func lipgloss_tree_enumerator_style(id C.ulonglong, styleID C.ulonglong) C.ulonglong {
|
|
104
|
+
style := getStyle(uint64(styleID))
|
|
105
|
+
tree := getTree(uint64(id)).EnumeratorStyle(style)
|
|
106
|
+
|
|
107
|
+
return C.ulonglong(allocTree(tree))
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
//export lipgloss_tree_item_style
|
|
111
|
+
func lipgloss_tree_item_style(id C.ulonglong, styleID C.ulonglong) C.ulonglong {
|
|
112
|
+
style := getStyle(uint64(styleID))
|
|
113
|
+
tree := getTree(uint64(id)).ItemStyle(style)
|
|
114
|
+
|
|
115
|
+
return C.ulonglong(allocTree(tree))
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
//export lipgloss_tree_root_style
|
|
119
|
+
func lipgloss_tree_root_style(id C.ulonglong, styleID C.ulonglong) C.ulonglong {
|
|
120
|
+
style := getStyle(uint64(styleID))
|
|
121
|
+
tree := getTree(uint64(id)).RootStyle(style)
|
|
122
|
+
|
|
123
|
+
return C.ulonglong(allocTree(tree))
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
//export lipgloss_tree_offset
|
|
127
|
+
func lipgloss_tree_offset(id C.ulonglong, start C.int, end C.int) C.ulonglong {
|
|
128
|
+
tree := getTree(uint64(id)).Offset(int(start), int(end))
|
|
129
|
+
|
|
130
|
+
return C.ulonglong(allocTree(tree))
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
//export lipgloss_tree_render
|
|
134
|
+
func lipgloss_tree_render(id C.ulonglong) *C.char {
|
|
135
|
+
tree := getTree(uint64(id))
|
|
136
|
+
|
|
137
|
+
return C.CString(tree.String())
|
|
138
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# rbs_inline: enabled
|
|
3
|
+
|
|
4
|
+
module Lipgloss
|
|
5
|
+
module Border
|
|
6
|
+
# Standard border with normal weight and 90 degree corners
|
|
7
|
+
# ┌───┐
|
|
8
|
+
# │ │
|
|
9
|
+
# └───┘
|
|
10
|
+
NORMAL = :normal
|
|
11
|
+
|
|
12
|
+
# Border with rounded corners
|
|
13
|
+
# ╭───╮
|
|
14
|
+
# │ │
|
|
15
|
+
# ╰───╯
|
|
16
|
+
ROUNDED = :rounded
|
|
17
|
+
|
|
18
|
+
# Thicker border
|
|
19
|
+
# ┏━━━┓
|
|
20
|
+
# ┃ ┃
|
|
21
|
+
# ┗━━━┛
|
|
22
|
+
THICK = :thick
|
|
23
|
+
|
|
24
|
+
# Double-line border
|
|
25
|
+
# ╔═══╗
|
|
26
|
+
# ║ ║
|
|
27
|
+
# ╚═══╝
|
|
28
|
+
DOUBLE = :double
|
|
29
|
+
|
|
30
|
+
# ASCII border (compatible with all terminals)
|
|
31
|
+
# +---+
|
|
32
|
+
# | |
|
|
33
|
+
# +---+
|
|
34
|
+
ASCII = :ascii
|
|
35
|
+
|
|
36
|
+
# Hidden border (spaces, maintains layout)
|
|
37
|
+
HIDDEN = :hidden
|
|
38
|
+
|
|
39
|
+
# Block border (full blocks)
|
|
40
|
+
# ████
|
|
41
|
+
# █ █
|
|
42
|
+
# ████
|
|
43
|
+
BLOCK = :block
|
|
44
|
+
|
|
45
|
+
OUTER_HALF_BLOCK = :outer_half_block
|
|
46
|
+
INNER_HALF_BLOCK = :inner_half_block
|
|
47
|
+
end
|
|
48
|
+
end
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# rbs_inline: enabled
|
|
3
|
+
|
|
4
|
+
module Lipgloss
|
|
5
|
+
# @rbs!
|
|
6
|
+
# type adaptive_color_hash = { light: String, dark: String }
|
|
7
|
+
# type complete_color_hash = { true_color: String, ansi256: String, ansi: String }
|
|
8
|
+
# type complete_adaptive_color_hash = { light: complete_color_hash, dark: complete_color_hash }
|
|
9
|
+
|
|
10
|
+
# Adaptive color that changes based on terminal background
|
|
11
|
+
#
|
|
12
|
+
# @example
|
|
13
|
+
# color = Lipgloss::AdaptiveColor.new(light: "#000000", dark: "#FFFFFF")
|
|
14
|
+
# style = Lipgloss::Style.new.foreground(color)
|
|
15
|
+
class AdaptiveColor
|
|
16
|
+
# @rbs @light: String
|
|
17
|
+
# @rbs @dark: String
|
|
18
|
+
|
|
19
|
+
attr_reader :light #: String
|
|
20
|
+
attr_reader :dark #: String
|
|
21
|
+
|
|
22
|
+
# @rbs light: String -- color to use on light backgrounds
|
|
23
|
+
# @rbs dark: String -- color to use on dark backgrounds
|
|
24
|
+
# @rbs return: void
|
|
25
|
+
def initialize(light:, dark:)
|
|
26
|
+
@light = light
|
|
27
|
+
@dark = dark
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# @rbs return: adaptive_color_hash
|
|
31
|
+
def to_h
|
|
32
|
+
{ light: @light, dark: @dark }
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Complete color with explicit values for each color profile
|
|
37
|
+
#
|
|
38
|
+
# @example
|
|
39
|
+
# color = Lipgloss::CompleteColor.new(
|
|
40
|
+
# true_color: "#0000FF",
|
|
41
|
+
# ansi256: "21",
|
|
42
|
+
# ansi: "4"
|
|
43
|
+
# )
|
|
44
|
+
class CompleteColor
|
|
45
|
+
# @rbs @true_color: String
|
|
46
|
+
# @rbs @ansi256: String
|
|
47
|
+
# @rbs @ansi: String
|
|
48
|
+
|
|
49
|
+
attr_reader :true_color #: String
|
|
50
|
+
attr_reader :ansi256 #: String
|
|
51
|
+
attr_reader :ansi #: String
|
|
52
|
+
|
|
53
|
+
# @rbs true_color: String -- 24-bit color (e.g., "#0000FF")
|
|
54
|
+
# @rbs ansi256: String -- 8-bit ANSI color (e.g., "21")
|
|
55
|
+
# @rbs ansi: String -- 4-bit ANSI color (e.g., "4")
|
|
56
|
+
# @rbs return: void
|
|
57
|
+
def initialize(true_color:, ansi256:, ansi:)
|
|
58
|
+
@true_color = true_color
|
|
59
|
+
@ansi256 = ansi256
|
|
60
|
+
@ansi = ansi
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# @rbs return: complete_color_hash
|
|
64
|
+
def to_h
|
|
65
|
+
{ true_color: @true_color, ansi256: @ansi256, ansi: @ansi }
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Complete adaptive color with explicit values for each color profile
|
|
70
|
+
# and separate options for light and dark backgrounds
|
|
71
|
+
#
|
|
72
|
+
# @example
|
|
73
|
+
# color = Lipgloss::CompleteAdaptiveColor.new(
|
|
74
|
+
# light: Lipgloss::CompleteColor.new(true_color: "#000", ansi256: "0", ansi: "0"),
|
|
75
|
+
# dark: Lipgloss::CompleteColor.new(true_color: "#FFF", ansi256: "15", ansi: "15")
|
|
76
|
+
# )
|
|
77
|
+
class CompleteAdaptiveColor
|
|
78
|
+
# @rbs @light: CompleteColor
|
|
79
|
+
# @rbs @dark: CompleteColor
|
|
80
|
+
|
|
81
|
+
attr_reader :light #: CompleteColor
|
|
82
|
+
attr_reader :dark #: CompleteColor
|
|
83
|
+
|
|
84
|
+
# @rbs light: CompleteColor -- color for light backgrounds
|
|
85
|
+
# @rbs dark: CompleteColor -- color for dark backgrounds
|
|
86
|
+
# @rbs return: void
|
|
87
|
+
def initialize(light:, dark:)
|
|
88
|
+
@light = light
|
|
89
|
+
@dark = dark
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# @rbs return: complete_adaptive_color_hash
|
|
93
|
+
def to_h
|
|
94
|
+
{ light: @light.to_h, dark: @dark.to_h }
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# rbs_inline: enabled
|
|
3
|
+
|
|
4
|
+
module Lipgloss
|
|
5
|
+
# Position constants for alignment
|
|
6
|
+
#
|
|
7
|
+
# Positions are represented as floats from 0.0 to 1.0:
|
|
8
|
+
# - 0.0 = top/left
|
|
9
|
+
# - 0.5 = center
|
|
10
|
+
# - 1.0 = bottom/right
|
|
11
|
+
module Position
|
|
12
|
+
# Top alignment (0.0)
|
|
13
|
+
TOP = 0.0
|
|
14
|
+
|
|
15
|
+
# Bottom alignment (1.0)
|
|
16
|
+
BOTTOM = 1.0
|
|
17
|
+
|
|
18
|
+
# Left alignment (0.0)
|
|
19
|
+
LEFT = 0.0
|
|
20
|
+
|
|
21
|
+
# Right alignment (1.0)
|
|
22
|
+
RIGHT = 1.0
|
|
23
|
+
|
|
24
|
+
# Center alignment (0.5)
|
|
25
|
+
CENTER = 0.5
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# rbs_inline: enabled
|
|
3
|
+
|
|
4
|
+
module Lipgloss
|
|
5
|
+
# Ruby enhancements for the Table class
|
|
6
|
+
#
|
|
7
|
+
# The Table class is implemented in C, but this module adds
|
|
8
|
+
# Ruby-level conveniences like style_func with blocks.
|
|
9
|
+
class Table
|
|
10
|
+
# Header row constant (used in style_func)
|
|
11
|
+
HEADER_ROW = -1
|
|
12
|
+
|
|
13
|
+
# Set a style function that determines the style for each cell
|
|
14
|
+
#
|
|
15
|
+
# @example Alternating row colors
|
|
16
|
+
# table.style_func(rows: 2, columns: 2) do |row, column|
|
|
17
|
+
# if row == Lipgloss::Table::HEADER_ROW
|
|
18
|
+
# Lipgloss::Style.new.bold(true)
|
|
19
|
+
# elsif row.even?
|
|
20
|
+
# Lipgloss::Style.new.background("#333")
|
|
21
|
+
# else
|
|
22
|
+
# Lipgloss::Style.new.background("#444")
|
|
23
|
+
# end
|
|
24
|
+
# end
|
|
25
|
+
#
|
|
26
|
+
# @example Column-specific styling
|
|
27
|
+
# table.style_func(rows: 2, columns: 2) do |row, column|
|
|
28
|
+
# case column
|
|
29
|
+
# when 0 then Lipgloss::Style.new.bold(true)
|
|
30
|
+
# when 1 then Lipgloss::Style.new.foreground("#00FF00")
|
|
31
|
+
# else Lipgloss::Style.new
|
|
32
|
+
# end
|
|
33
|
+
# end
|
|
34
|
+
#
|
|
35
|
+
# @rbs rows: Integer -- number of data rows in the table
|
|
36
|
+
# @rbs columns: Integer -- number of columns in the table
|
|
37
|
+
# @rbs &block: (Integer, Integer) -> Style? -- block called for each cell position
|
|
38
|
+
# @rbs return: Table -- a new table with the style function applied
|
|
39
|
+
def style_func(rows:, columns:, &block)
|
|
40
|
+
raise ArgumentError, "block required" unless block_given?
|
|
41
|
+
raise ArgumentError, "rows must be >= 0" if rows.negative?
|
|
42
|
+
raise ArgumentError, "columns must be > 0" if columns <= 0
|
|
43
|
+
|
|
44
|
+
style_map = {} #: Hash[String, Style]
|
|
45
|
+
|
|
46
|
+
# Header row
|
|
47
|
+
columns.times do |column|
|
|
48
|
+
style = block.call(HEADER_ROW, column)
|
|
49
|
+
style_map["#{HEADER_ROW},#{column}"] = style if style
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Data rows
|
|
53
|
+
rows.times do |row|
|
|
54
|
+
columns.times do |column|
|
|
55
|
+
style = block.call(row, column)
|
|
56
|
+
style_map["#{row},#{column}"] = style if style
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
_style_func_map(style_map)
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
data/lib/lipgloss/version.rb
CHANGED
data/lib/lipgloss.rb
CHANGED
|
@@ -1,8 +1,27 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
|
+
# rbs_inline: enabled
|
|
2
3
|
|
|
3
4
|
require_relative "lipgloss/version"
|
|
5
|
+
require_relative "lipgloss/lipgloss"
|
|
6
|
+
require_relative "lipgloss/position"
|
|
7
|
+
require_relative "lipgloss/border"
|
|
8
|
+
require_relative "lipgloss/color"
|
|
9
|
+
require_relative "lipgloss/table"
|
|
4
10
|
|
|
5
11
|
module Lipgloss
|
|
6
|
-
|
|
7
|
-
|
|
12
|
+
TOP = Position::TOP #: Float
|
|
13
|
+
BOTTOM = Position::BOTTOM #: Float
|
|
14
|
+
LEFT = Position::LEFT #: Float
|
|
15
|
+
RIGHT = Position::RIGHT #: Float
|
|
16
|
+
CENTER = Position::CENTER #: Float
|
|
17
|
+
|
|
18
|
+
NORMAL_BORDER = Border::NORMAL #: Symbol
|
|
19
|
+
ROUNDED_BORDER = Border::ROUNDED #: Symbol
|
|
20
|
+
THICK_BORDER = Border::THICK #: Symbol
|
|
21
|
+
DOUBLE_BORDER = Border::DOUBLE #: Symbol
|
|
22
|
+
HIDDEN_BORDER = Border::HIDDEN #: Symbol
|
|
23
|
+
BLOCK_BORDER = Border::BLOCK #: Symbol
|
|
24
|
+
ASCII_BORDER = Border::ASCII #: Symbol
|
|
25
|
+
|
|
26
|
+
NO_TAB_CONVERSION = -1 #: Integer
|
|
8
27
|
end
|
data/lipgloss.gemspec
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/lipgloss/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "lipgloss"
|
|
7
|
+
spec.version = Lipgloss::VERSION
|
|
8
|
+
spec.authors = ["Marco Roth"]
|
|
9
|
+
spec.email = ["marco.roth@intergga.ch"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "Ruby wrapper for Charm's lipgloss CSS-like terminal styling library."
|
|
12
|
+
spec.description = spec.summary
|
|
13
|
+
spec.homepage = "https://github.com/marcoroth/lipgloss-ruby"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = ">= 3.2.0"
|
|
16
|
+
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/marcoroth/lipgloss-ruby"
|
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/marcoroth/lipgloss-ruby/releases"
|
|
20
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
21
|
+
|
|
22
|
+
spec.files = Dir[
|
|
23
|
+
"lipgloss.gemspec",
|
|
24
|
+
"LICENSE.txt",
|
|
25
|
+
"README.md",
|
|
26
|
+
"lib/**/*.rb",
|
|
27
|
+
"ext/**/*.{c,h,rb}",
|
|
28
|
+
"go/**/*.{go,mod,sum}",
|
|
29
|
+
"go/build/**/*"
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
spec.require_paths = ["lib"]
|
|
33
|
+
spec.extensions = ["ext/lipgloss/extconf.rb"]
|
|
34
|
+
end
|
metadata
CHANGED
|
@@ -1,36 +1,59 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lipgloss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Roth
|
|
8
|
-
bindir:
|
|
8
|
+
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
|
-
description:
|
|
13
|
-
with the RubyGems infrastructure.
|
|
12
|
+
description: Ruby wrapper for Charm's lipgloss CSS-like terminal styling library.
|
|
14
13
|
email:
|
|
15
14
|
- marco.roth@intergga.ch
|
|
16
15
|
executables: []
|
|
17
|
-
extensions:
|
|
16
|
+
extensions:
|
|
17
|
+
- ext/lipgloss/extconf.rb
|
|
18
18
|
extra_rdoc_files: []
|
|
19
19
|
files:
|
|
20
|
-
-
|
|
21
|
-
- CODE_OF_CONDUCT.md
|
|
20
|
+
- LICENSE.txt
|
|
22
21
|
- README.md
|
|
23
|
-
-
|
|
22
|
+
- ext/lipgloss/extconf.rb
|
|
23
|
+
- ext/lipgloss/extension.c
|
|
24
|
+
- ext/lipgloss/extension.h
|
|
25
|
+
- ext/lipgloss/list.c
|
|
26
|
+
- ext/lipgloss/style.c
|
|
27
|
+
- ext/lipgloss/style_border.c
|
|
28
|
+
- ext/lipgloss/style_spacing.c
|
|
29
|
+
- ext/lipgloss/style_unset.c
|
|
30
|
+
- ext/lipgloss/table.c
|
|
31
|
+
- ext/lipgloss/tree.c
|
|
32
|
+
- go/go.mod
|
|
33
|
+
- go/go.sum
|
|
34
|
+
- go/layout.go
|
|
35
|
+
- go/lipgloss.go
|
|
36
|
+
- go/list.go
|
|
37
|
+
- go/style.go
|
|
38
|
+
- go/style_border.go
|
|
39
|
+
- go/style_spacing.go
|
|
40
|
+
- go/style_unset.go
|
|
41
|
+
- go/table.go
|
|
42
|
+
- go/tree.go
|
|
24
43
|
- lib/lipgloss.rb
|
|
44
|
+
- lib/lipgloss/border.rb
|
|
45
|
+
- lib/lipgloss/color.rb
|
|
46
|
+
- lib/lipgloss/position.rb
|
|
47
|
+
- lib/lipgloss/table.rb
|
|
25
48
|
- lib/lipgloss/version.rb
|
|
26
|
-
-
|
|
27
|
-
homepage: https://github.com/marcoroth/lipgloss
|
|
49
|
+
- lipgloss.gemspec
|
|
50
|
+
homepage: https://github.com/marcoroth/lipgloss-ruby
|
|
28
51
|
licenses:
|
|
29
52
|
- MIT
|
|
30
53
|
metadata:
|
|
31
|
-
homepage_uri: https://github.com/marcoroth/lipgloss
|
|
32
|
-
source_code_uri: https://github.com/marcoroth/lipgloss
|
|
33
|
-
changelog_uri: https://github.com/marcoroth/lipgloss/
|
|
54
|
+
homepage_uri: https://github.com/marcoroth/lipgloss-ruby
|
|
55
|
+
source_code_uri: https://github.com/marcoroth/lipgloss-ruby
|
|
56
|
+
changelog_uri: https://github.com/marcoroth/lipgloss-ruby/releases
|
|
34
57
|
rubygems_mfa_required: 'true'
|
|
35
58
|
rdoc_options: []
|
|
36
59
|
require_paths:
|
|
@@ -48,5 +71,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
48
71
|
requirements: []
|
|
49
72
|
rubygems_version: 3.6.9
|
|
50
73
|
specification_version: 4
|
|
51
|
-
summary: Ruby wrapper for Charm's lipgloss
|
|
74
|
+
summary: Ruby wrapper for Charm's lipgloss CSS-like terminal styling library.
|
|
52
75
|
test_files: []
|
data/CHANGELOG.md
DELETED
data/CODE_OF_CONDUCT.md
DELETED
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
-
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
-
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
-
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
-
identity and orientation.
|
|
11
|
-
|
|
12
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
-
diverse, inclusive, and healthy community.
|
|
14
|
-
|
|
15
|
-
## Our Standards
|
|
16
|
-
|
|
17
|
-
Examples of behavior that contributes to a positive environment for our
|
|
18
|
-
community include:
|
|
19
|
-
|
|
20
|
-
* Demonstrating empathy and kindness toward other people
|
|
21
|
-
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
-
* Giving and gracefully accepting constructive feedback
|
|
23
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
-
and learning from the experience
|
|
25
|
-
* Focusing on what is best not just for us as individuals, but for the overall
|
|
26
|
-
community
|
|
27
|
-
|
|
28
|
-
Examples of unacceptable behavior include:
|
|
29
|
-
|
|
30
|
-
* The use of sexualized language or imagery, and sexual attention or advances of
|
|
31
|
-
any kind
|
|
32
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
-
* Public or private harassment
|
|
34
|
-
* Publishing others' private information, such as a physical or email address,
|
|
35
|
-
without their explicit permission
|
|
36
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
-
professional setting
|
|
38
|
-
|
|
39
|
-
## Enforcement Responsibilities
|
|
40
|
-
|
|
41
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
-
or harmful.
|
|
45
|
-
|
|
46
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
-
decisions when appropriate.
|
|
50
|
-
|
|
51
|
-
## Scope
|
|
52
|
-
|
|
53
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
-
an individual is officially representing the community in public spaces.
|
|
55
|
-
Examples of representing our community include using an official email address,
|
|
56
|
-
posting via an official social media account, or acting as an appointed
|
|
57
|
-
representative at an online or offline event.
|
|
58
|
-
|
|
59
|
-
## Enforcement
|
|
60
|
-
|
|
61
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
-
reported to the community leaders responsible for enforcement at
|
|
63
|
-
[INSERT CONTACT METHOD].
|
|
64
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
-
|
|
66
|
-
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
-
reporter of any incident.
|
|
68
|
-
|
|
69
|
-
## Enforcement Guidelines
|
|
70
|
-
|
|
71
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
-
|
|
74
|
-
### 1. Correction
|
|
75
|
-
|
|
76
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
-
unprofessional or unwelcome in the community.
|
|
78
|
-
|
|
79
|
-
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
-
clarity around the nature of the violation and an explanation of why the
|
|
81
|
-
behavior was inappropriate. A public apology may be requested.
|
|
82
|
-
|
|
83
|
-
### 2. Warning
|
|
84
|
-
|
|
85
|
-
**Community Impact**: A violation through a single incident or series of
|
|
86
|
-
actions.
|
|
87
|
-
|
|
88
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
-
interaction with the people involved, including unsolicited interaction with
|
|
90
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
-
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
-
like social media. Violating these terms may lead to a temporary or permanent
|
|
93
|
-
ban.
|
|
94
|
-
|
|
95
|
-
### 3. Temporary Ban
|
|
96
|
-
|
|
97
|
-
**Community Impact**: A serious violation of community standards, including
|
|
98
|
-
sustained inappropriate behavior.
|
|
99
|
-
|
|
100
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
-
communication with the community for a specified period of time. No public or
|
|
102
|
-
private interaction with the people involved, including unsolicited interaction
|
|
103
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
-
Violating these terms may lead to a permanent ban.
|
|
105
|
-
|
|
106
|
-
### 4. Permanent Ban
|
|
107
|
-
|
|
108
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
-
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
-
|
|
112
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
113
|
-
community.
|
|
114
|
-
|
|
115
|
-
## Attribution
|
|
116
|
-
|
|
117
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
-
version 2.1, available at
|
|
119
|
-
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
120
|
-
|
|
121
|
-
Community Impact Guidelines were inspired by
|
|
122
|
-
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
123
|
-
|
|
124
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
|
125
|
-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
|
126
|
-
[https://www.contributor-covenant.org/translations][translations].
|
|
127
|
-
|
|
128
|
-
[homepage]: https://www.contributor-covenant.org
|
|
129
|
-
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
130
|
-
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
131
|
-
[FAQ]: https://www.contributor-covenant.org/faq
|
|
132
|
-
[translations]: https://www.contributor-covenant.org/translations
|
data/Rakefile
DELETED
data/sig/lipgloss.rbs
DELETED