-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmaug.toml
70 lines (61 loc) · 3.39 KB
/
Smaug.toml
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
[package]
name = "draco-ui"
authors = ["Logan Koester <[email protected]>"]
version = "0.4.0"
homepage = "https://smaug.dev/packages/draco-ui"
keywords = []
# Optional:
# documentation = "https://example.com"
repository = "http://github.com/ereborstudios/draco-ui"
# Which files do you want to be automatically required from your package.
# requires = ["lib/library.rb"]
requires = [
"smaug/draco-ui/lib/set.rb",
"smaug/draco-ui/lib/docile.rb",
"smaug/draco-ui/lib/draco_ui.rb",
"app/components/draco-ui/index.rb",
"app/entities/draco-ui/index.rb",
"app/systems/draco-ui/index.rb",
]
[package.installs]
# Example
#
# <from> = <to>
# "lib/library.rb" = "app/lib/library.rb"
"templates/app/components/button_label.rb" = "app/components/draco-ui/button_label.rb"
"templates/app/components/centered.rb" = "app/components/draco-ui/centered.rb"
"templates/app/components/clickable.rb" = "app/components/draco-ui/clickable.rb"
"templates/app/components/layout_grid.rb" = "app/components/draco-ui/layout_grid.rb"
"templates/app/components/slide.rb" = "app/components/draco-ui/slide.rb"
"templates/app/components/stateful_sprite.rb" = "app/components/draco-ui/stateful_sprite.rb"
"templates/app/components/text.rb" = "app/components/draco-ui/text.rb"
"templates/app/components/tree.rb" = "app/components/draco-ui/tree.rb"
"templates/app/components/display_progress.rb" = "app/components/draco-ui/display_progress.rb"
"templates/app/components/index.rb" = "app/components/draco-ui/index.rb"
"templates/app/entities/banner.rb" = "app/entities/draco-ui/banner.rb"
"templates/app/entities/button.rb" = "app/entities/draco-ui/button.rb"
"templates/app/entities/icon.rb" = "app/entities/draco-ui/icon.rb"
"templates/app/entities/label.rb" = "app/entities/draco-ui/label.rb"
"templates/app/entities/layout.rb" = "app/entities/draco-ui/layout.rb"
"templates/app/entities/panel.rb" = "app/entities/draco-ui/panel.rb"
"templates/app/entities/progress.rb" = "app/entities/draco-ui/progress.rb"
"templates/app/entities/progress_value.rb" = "app/entities/draco-ui/progress_value.rb"
"templates/app/entities/index.rb" = "app/entities/draco-ui/index.rb"
"templates/app/systems/click.rb" = "app/systems/draco-ui/click.rb"
"templates/app/systems/focus.rb" = "app/systems/draco-ui/focus.rb"
"templates/app/systems/mouse_focus.rb" = "app/systems/draco-ui/mouse_focus.rb"
"templates/app/systems/position_alignment.rb" = "app/systems/draco-ui/position_alignment.rb"
"templates/app/systems/position_layout.rb" = "app/systems/draco-ui/position_layout.rb"
"templates/app/systems/render_button_labels.rb" = "app/systems/draco-ui/render_button_labels.rb"
"templates/app/systems/render_labels.rb" = "app/systems/draco-ui/render_labels.rb"
"templates/app/systems/slide_effect.rb" = "app/systems/draco-ui/slide_effect.rb"
"templates/app/systems/sprite_state.rb" = "app/systems/draco-ui/sprite_state.rb"
"templates/app/systems/update_progress.rb" = "app/systems/draco-ui/update_progress.rb"
"templates/app/systems/index.rb" = "app/systems/draco-ui/index.rb"
"templates/sprites/progress/background_01.png" = "sprites/draco-ui/progress/background_01.png"
"templates/sprites/progress/background_02.png" = "sprites/draco-ui/progress/background_02.png"
"templates/sprites/progress/background_03.png" = "sprites/draco-ui/progress/background_03.png"
"templates/sprites/progress/background_04.png" = "sprites/draco-ui/progress/background_04.png"
[dragonruby]
version = "2"
edition = "standard"