rori 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/CHANGELOG.md +25 -0
- data/LICENSE +21 -0
- data/README.md +279 -0
- data/app/assets/stylesheets/rori/_init.css +79 -0
- data/app/assets/stylesheets/rori/layout.css +162 -0
- data/app/assets/stylesheets/rori/menubar.css +117 -0
- data/app/assets/stylesheets/rori/notifications.css +120 -0
- data/app/assets/stylesheets/rori/palette.css +114 -0
- data/app/assets/stylesheets/rori/shortcuts.css +110 -0
- data/app/assets/stylesheets/rori/terminal.css +98 -0
- data/app/assets/stylesheets/rori/themes.css +156 -0
- data/app/assets/stylesheets/rori/typing_badge.css +56 -0
- data/app/assets/stylesheets/rori/wallpaper.css +52 -0
- data/app/assets/stylesheets/rori/window.css +174 -0
- data/app/controllers/concerns/rori/windowed.rb +15 -0
- data/app/controllers/rori/commands/bars_controller.rb +9 -0
- data/app/controllers/rori/commands/runs_controller.rb +22 -0
- data/app/controllers/rori/commands/themes_controller.rb +9 -0
- data/app/controllers/rori/commands/ui_controller.rb +9 -0
- data/app/controllers/rori/commands/wallpapers_controller.rb +9 -0
- data/app/controllers/rori/commands_controller.rb +7 -0
- data/app/controllers/rori/desktops_controller.rb +7 -0
- data/app/helpers/rori/assets_helper.rb +9 -0
- data/app/helpers/rori/keymap_helper.rb +50 -0
- data/app/helpers/rori/prefs_helper.rb +13 -0
- data/app/helpers/rori/theme_helper.rb +14 -0
- data/app/helpers/rori/wallpaper_helper.rb +19 -0
- data/app/helpers/rori/window_helper.rb +36 -0
- data/app/javascript/rori/clock_controller.js +18 -0
- data/app/javascript/rori/command_index.js +84 -0
- data/app/javascript/rori/fuzzy.js +50 -0
- data/app/javascript/rori/index.js +21 -0
- data/app/javascript/rori/notifications_controller.js +45 -0
- data/app/javascript/rori/palette_controller.js +307 -0
- data/app/javascript/rori/prefs_controller.js +68 -0
- data/app/javascript/rori/rori_controller.js +996 -0
- data/app/javascript/rori/terminal_controller.js +198 -0
- data/app/javascript/rori/theme_controller.js +35 -0
- data/app/javascript/rori/wallpaper_controller.js +67 -0
- data/app/models/rori/command.rb +105 -0
- data/app/models/rori/notification.rb +20 -0
- data/app/models/rori/theme/color.rb +30 -0
- data/app/models/rori/theme.rb +87 -0
- data/app/models/rori/wallpaper.rb +54 -0
- data/app/views/layouts/rori/_head.html.haml +2 -0
- data/app/views/layouts/rori/shell.html.haml +97 -0
- data/app/views/layouts/rori/window.html.haml +10 -0
- data/app/views/rori/_menubar.html.haml +14 -0
- data/app/views/rori/_notification.html.haml +9 -0
- data/app/views/rori/_notifications.html.haml +10 -0
- data/app/views/rori/_palette.html.haml +13 -0
- data/app/views/rori/_shortcuts.html.haml +47 -0
- data/app/views/rori/_terminal.html.haml +9 -0
- data/app/views/rori/_wallpaper.html.haml +7 -0
- data/app/views/rori/_wallpaper_credit.html.haml +3 -0
- data/app/views/rori/_window.html.haml +15 -0
- data/app/views/rori/commands/_command.html.haml +17 -0
- data/app/views/rori/commands/index.html.haml +5 -0
- data/app/views/rori/desktops/show.html.haml +1 -0
- data/config/importmap.rb +3 -0
- data/config/locales/rori.en.yml +133 -0
- data/config/routes/rori.rb +13 -0
- data/lib/generators/rori/install/install_generator.rb +67 -0
- data/lib/generators/rori/install/templates/rori.rb.tt +22 -0
- data/lib/rori/engine.rb +19 -0
- data/lib/rori/version.rb +3 -0
- data/lib/rori.rb +180 -0
- data/lib/tasks/rori.rake +9 -0
- data/vendor/themes/LICENSE +25 -0
- data/vendor/themes/ghostty/Catppuccin Latte +22 -0
- data/vendor/themes/ghostty/Catppuccin Mocha +22 -0
- data/vendor/themes/ghostty/Everforest Dark Med +22 -0
- data/vendor/themes/ghostty/Flexoki Light +22 -0
- data/vendor/themes/ghostty/GitHub Dark Dimmed +22 -0
- data/vendor/themes/ghostty/Gruvbox Material Dark +22 -0
- data/vendor/themes/ghostty/Kanagawa Wave +22 -0
- data/vendor/themes/ghostty/Melange Dark +22 -0
- data/vendor/themes/ghostty/Nord +22 -0
- data/vendor/themes/ghostty/Rose Pine Dawn +22 -0
- data/vendor/themes/ghostty/Rose Pine Moon +22 -0
- data/vendor/themes/ghostty/TokyoNight Storm +22 -0
- data/vendor/themes/ghostty/Tomorrow Night Eighties +22 -0
- data/vendor/themes/ghostty/Zenbones Light +22 -0
- data/vendor/wallpapers/unsplash.yml +23 -0
- metadata +219 -0
metadata
ADDED
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rori
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Oleh Khomei
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '8.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '8.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: turbo-rails
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: stimulus-rails
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.3'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1.3'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: importmap-rails
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '2.0'
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '2.0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: propshaft
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '1.1'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.1'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: haml
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '6.0'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '6.0'
|
|
96
|
+
description: |
|
|
97
|
+
Every page of a Rails app opens as a window in endlessly scrolling column
|
|
98
|
+
strips, one strip per workspace. Pages say how they want to be shown
|
|
99
|
+
(size, modal, full width, workspace, reuse key); ⌘K and a drop-down
|
|
100
|
+
terminal run the same fuzzy-matched command tree; a keymap with a
|
|
101
|
+
configurable modifier (⌘ in a native shell) and optional Blender-style
|
|
102
|
+
hover keys drive the windows. Ghostty colour themes and Unsplash
|
|
103
|
+
wallpapers included. The host app keeps its own controllers and views.
|
|
104
|
+
executables: []
|
|
105
|
+
extensions: []
|
|
106
|
+
extra_rdoc_files: []
|
|
107
|
+
files:
|
|
108
|
+
- CHANGELOG.md
|
|
109
|
+
- LICENSE
|
|
110
|
+
- README.md
|
|
111
|
+
- app/assets/stylesheets/rori/_init.css
|
|
112
|
+
- app/assets/stylesheets/rori/layout.css
|
|
113
|
+
- app/assets/stylesheets/rori/menubar.css
|
|
114
|
+
- app/assets/stylesheets/rori/notifications.css
|
|
115
|
+
- app/assets/stylesheets/rori/palette.css
|
|
116
|
+
- app/assets/stylesheets/rori/shortcuts.css
|
|
117
|
+
- app/assets/stylesheets/rori/terminal.css
|
|
118
|
+
- app/assets/stylesheets/rori/themes.css
|
|
119
|
+
- app/assets/stylesheets/rori/typing_badge.css
|
|
120
|
+
- app/assets/stylesheets/rori/wallpaper.css
|
|
121
|
+
- app/assets/stylesheets/rori/window.css
|
|
122
|
+
- app/controllers/concerns/rori/windowed.rb
|
|
123
|
+
- app/controllers/rori/commands/bars_controller.rb
|
|
124
|
+
- app/controllers/rori/commands/runs_controller.rb
|
|
125
|
+
- app/controllers/rori/commands/themes_controller.rb
|
|
126
|
+
- app/controllers/rori/commands/ui_controller.rb
|
|
127
|
+
- app/controllers/rori/commands/wallpapers_controller.rb
|
|
128
|
+
- app/controllers/rori/commands_controller.rb
|
|
129
|
+
- app/controllers/rori/desktops_controller.rb
|
|
130
|
+
- app/helpers/rori/assets_helper.rb
|
|
131
|
+
- app/helpers/rori/keymap_helper.rb
|
|
132
|
+
- app/helpers/rori/prefs_helper.rb
|
|
133
|
+
- app/helpers/rori/theme_helper.rb
|
|
134
|
+
- app/helpers/rori/wallpaper_helper.rb
|
|
135
|
+
- app/helpers/rori/window_helper.rb
|
|
136
|
+
- app/javascript/rori/clock_controller.js
|
|
137
|
+
- app/javascript/rori/command_index.js
|
|
138
|
+
- app/javascript/rori/fuzzy.js
|
|
139
|
+
- app/javascript/rori/index.js
|
|
140
|
+
- app/javascript/rori/notifications_controller.js
|
|
141
|
+
- app/javascript/rori/palette_controller.js
|
|
142
|
+
- app/javascript/rori/prefs_controller.js
|
|
143
|
+
- app/javascript/rori/rori_controller.js
|
|
144
|
+
- app/javascript/rori/terminal_controller.js
|
|
145
|
+
- app/javascript/rori/theme_controller.js
|
|
146
|
+
- app/javascript/rori/wallpaper_controller.js
|
|
147
|
+
- app/models/rori/command.rb
|
|
148
|
+
- app/models/rori/notification.rb
|
|
149
|
+
- app/models/rori/theme.rb
|
|
150
|
+
- app/models/rori/theme/color.rb
|
|
151
|
+
- app/models/rori/wallpaper.rb
|
|
152
|
+
- app/views/layouts/rori/_head.html.haml
|
|
153
|
+
- app/views/layouts/rori/shell.html.haml
|
|
154
|
+
- app/views/layouts/rori/window.html.haml
|
|
155
|
+
- app/views/rori/_menubar.html.haml
|
|
156
|
+
- app/views/rori/_notification.html.haml
|
|
157
|
+
- app/views/rori/_notifications.html.haml
|
|
158
|
+
- app/views/rori/_palette.html.haml
|
|
159
|
+
- app/views/rori/_shortcuts.html.haml
|
|
160
|
+
- app/views/rori/_terminal.html.haml
|
|
161
|
+
- app/views/rori/_wallpaper.html.haml
|
|
162
|
+
- app/views/rori/_wallpaper_credit.html.haml
|
|
163
|
+
- app/views/rori/_window.html.haml
|
|
164
|
+
- app/views/rori/commands/_command.html.haml
|
|
165
|
+
- app/views/rori/commands/index.html.haml
|
|
166
|
+
- app/views/rori/desktops/show.html.haml
|
|
167
|
+
- config/importmap.rb
|
|
168
|
+
- config/locales/rori.en.yml
|
|
169
|
+
- config/routes/rori.rb
|
|
170
|
+
- lib/generators/rori/install/install_generator.rb
|
|
171
|
+
- lib/generators/rori/install/templates/rori.rb.tt
|
|
172
|
+
- lib/rori.rb
|
|
173
|
+
- lib/rori/engine.rb
|
|
174
|
+
- lib/rori/version.rb
|
|
175
|
+
- lib/tasks/rori.rake
|
|
176
|
+
- vendor/themes/LICENSE
|
|
177
|
+
- vendor/themes/ghostty/Catppuccin Latte
|
|
178
|
+
- vendor/themes/ghostty/Catppuccin Mocha
|
|
179
|
+
- vendor/themes/ghostty/Everforest Dark Med
|
|
180
|
+
- vendor/themes/ghostty/Flexoki Light
|
|
181
|
+
- vendor/themes/ghostty/GitHub Dark Dimmed
|
|
182
|
+
- vendor/themes/ghostty/Gruvbox Material Dark
|
|
183
|
+
- vendor/themes/ghostty/Kanagawa Wave
|
|
184
|
+
- vendor/themes/ghostty/Melange Dark
|
|
185
|
+
- vendor/themes/ghostty/Nord
|
|
186
|
+
- vendor/themes/ghostty/Rose Pine Dawn
|
|
187
|
+
- vendor/themes/ghostty/Rose Pine Moon
|
|
188
|
+
- vendor/themes/ghostty/TokyoNight Storm
|
|
189
|
+
- vendor/themes/ghostty/Tomorrow Night Eighties
|
|
190
|
+
- vendor/themes/ghostty/Zenbones Light
|
|
191
|
+
- vendor/wallpapers/unsplash.yml
|
|
192
|
+
homepage: https://github.com/varyform/rori
|
|
193
|
+
licenses:
|
|
194
|
+
- MIT
|
|
195
|
+
metadata:
|
|
196
|
+
homepage_uri: https://github.com/varyform/rori
|
|
197
|
+
source_code_uri: https://github.com/varyform/rori
|
|
198
|
+
changelog_uri: https://github.com/varyform/rori/blob/main/CHANGELOG.md
|
|
199
|
+
bug_tracker_uri: https://github.com/varyform/rori/issues
|
|
200
|
+
rubygems_mfa_required: 'true'
|
|
201
|
+
rdoc_options: []
|
|
202
|
+
require_paths:
|
|
203
|
+
- lib
|
|
204
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - ">="
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '3.4'
|
|
209
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
|
+
requirements:
|
|
211
|
+
- - ">="
|
|
212
|
+
- !ruby/object:Gem::Version
|
|
213
|
+
version: '0'
|
|
214
|
+
requirements: []
|
|
215
|
+
rubygems_version: 4.0.20
|
|
216
|
+
specification_version: 4
|
|
217
|
+
summary: 'A niri-style window manager for Rails pages: tiled Turbo-frame windows,
|
|
218
|
+
⌘K, a terminal and the keyboard.'
|
|
219
|
+
test_files: []
|