glimmer-cs-gladiator 0.5.3 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +212 -0
- data/README.md +62 -27
- data/VERSION +1 -1
- data/glimmer-cs-gladiator.gemspec +70 -0
- data/images/glimmer-cs-gladiator-logo.png +0 -0
- data/lib/models/glimmer/gladiator/command.rb +41 -8
- data/lib/models/glimmer/gladiator/dir.rb +44 -16
- data/lib/models/glimmer/gladiator/file.rb +140 -71
- data/lib/views/glimmer/gladiator.rb +649 -253
- data/lib/views/glimmer/gladiator/text_editor.rb +123 -95
- metadata +16 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6141168268f00d2c6e7b06ccef409787252f3f71bc38cfe8fda0622618d6f981
|
4
|
+
data.tar.gz: 8a0aaab8d2f7b33cc5e7dae98ebc18988baf9be2b27aa2ab1a449f1c14465802
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4f62df8c478aa25eb0ba23f901324ab65069e602867702d3e2e94356d0bb4a42438d12a72b464aad06bb1a531b150fed6a3a90250f4140ae8f28916cc230816
|
7
|
+
data.tar.gz: 56d8bf8c995534c5f46ddc1baaa761eb5d532ed6ccf194a306ac343e2785dd3e82aa69bb2a0683afafd156692120e004d4a92c7f6c67d5addb2f163a3b5e6777
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,212 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## 0.6.3
|
4
|
+
|
5
|
+
- Display Gladiator version in window title
|
6
|
+
- Set Gladiator icon on window
|
7
|
+
- Fix issue with wording getting reversed when typing at the end of the file
|
8
|
+
- Fix issue with not being able to add new lines at the end of the file
|
9
|
+
- Fix issue with moving lines down at the end of the file making selection go out of wack
|
10
|
+
- Fix issue with Find keyboard shortcut causing a delay before landing in the Find text field
|
11
|
+
- Fix transient issue of find_next not jumping properly after replacing a term near the end of the line
|
12
|
+
- Fix issue with layout upon split
|
13
|
+
- Fix issue with layout upon opening a new tab
|
14
|
+
- Fix issue with splitting a file showing in both panes and then unsplitting afterwards detaching data-binding
|
15
|
+
- Fix issue with losing changes on exit if I do not focus out on a file
|
16
|
+
|
17
|
+
## 0.6.2
|
18
|
+
|
19
|
+
- Speed up startup time by not truly opening all files beyond showing their tab (till navigated to)
|
20
|
+
- Made CMD+F and CMD+L expand navigation section if collapsed
|
21
|
+
- Made CMD+R expand file lookup section if collapsed
|
22
|
+
- Made CMD+T expand file explorer section if collapsed
|
23
|
+
- Fix this issue: Type till the end of the line. Hit CMD+SHIFT+ENTER to jump to the previous line while inserting a line. It jumps to the next line instead as if I did CMD+ENTER
|
24
|
+
- Fix issue with closing a project shell with an x mouse click requiring multiple presses for every tab open
|
25
|
+
- Fix issue with inserting new line via CMD+ENTER not maintaining indentation
|
26
|
+
|
27
|
+
## 0.6.1
|
28
|
+
|
29
|
+
- Fixed issue relating to not recording text selection correctly when done by mouse
|
30
|
+
|
31
|
+
## 0.6.0
|
32
|
+
|
33
|
+
- Collapsable File Lookup/File Explorer/Navigation Expand Bars
|
34
|
+
- Improve Undo/Redo support by making it work for simple text editing
|
35
|
+
- Clear Undo/Redo history for a file upon closing
|
36
|
+
- Fix issue with the text editor caret dancing uncontrollably
|
37
|
+
- Fix issue with quickly moving multiple lines up or down sometimes splintering and losing multi-line selection
|
38
|
+
|
39
|
+
## 0.5.4
|
40
|
+
|
41
|
+
- CMD+SHIFT+O now splits the Text Editor without requiring Drag & Drop
|
42
|
+
- Close open files when deleting their parent directory
|
43
|
+
- Make rename refocus on the file renamed in the tree if different from the file being edited
|
44
|
+
- Save/Load Config for the Split Orientation
|
45
|
+
- Right aligned line numbers in Scratchpad and new files
|
46
|
+
- Show a friendly progress message when opening last open files
|
47
|
+
- Use SashForm for container/separator of File Lookup List and File Explorer Tree, making them resizable
|
48
|
+
- Enhance startup performance by only loading content of last open files
|
49
|
+
- Avoid extra writes to open files when no changes occurred
|
50
|
+
- Upgrade to glimmer-dsl-swt gem v4.17.10.1
|
51
|
+
- Upgrade to clipboard gem v1.3.5
|
52
|
+
- Fix issue with over-refreshing directories on focus out and back in
|
53
|
+
- Fix glitches with certain single line file operations causing unnecessary text editor scroll jitter
|
54
|
+
- Fix issue with creating directories not allowing save/rename
|
55
|
+
- Fix issue with crashing when closing a file and then trying to delete another file from the tree (might happen if you try to rename closed file) says getData returned nil
|
56
|
+
- Fix issue with line numbers not lining up perfectly with code/text lines in non-ruby files
|
57
|
+
|
58
|
+
## 0.5.3
|
59
|
+
|
60
|
+
- Upgraded to glimmer-dsl-swt v4.17.8.3, with performance optimizations for `code_text`
|
61
|
+
|
62
|
+
## 0.5.2
|
63
|
+
|
64
|
+
- Fix issue with file/directory rename not working
|
65
|
+
- Fix issue with not renaming tab text when renaming file
|
66
|
+
- Fix issue with not closing tab when deleting file
|
67
|
+
|
68
|
+
## 0.5.1
|
69
|
+
|
70
|
+
- Fixed a Windows issue with opening Ruby styled text editors
|
71
|
+
|
72
|
+
## 0.5.0
|
73
|
+
|
74
|
+
- File Menu to allow Opening a Project
|
75
|
+
- Scratchpad for running any Ruby/Glimmer code for experimentation/debugging/instrumenting
|
76
|
+
- CTRL+A and CTRL+E shortcuts for beginning of line and end of line
|
77
|
+
- Minor performance optimization by not syntax highlighting file line numbers (using standard uniform foreground coloring)
|
78
|
+
- Fix issue with going back to top of file when CMD+Tabbing to another app (losing focus) and then coming back (gaining focus)
|
79
|
+
- Fix tree slow refresh and lost refreshes on directory file changes
|
80
|
+
- Fix scroll jitter on move line up/down
|
81
|
+
- Fix issue with opening the last file open on both sides of split text editor upon launching Gladiator
|
82
|
+
- Fix issue with producing extra space at the end of some lines
|
83
|
+
- Fix issue with CMD+4 not working for jumping to the 4th tab
|
84
|
+
- Fix issue with keyboard shortcuts triggered in multiple projects
|
85
|
+
|
86
|
+
## 0.4.1
|
87
|
+
|
88
|
+
- Do not enable Ruby syntax highlighting in non-Ruby files
|
89
|
+
|
90
|
+
## 0.4.0
|
91
|
+
|
92
|
+
- Syntax highlighting
|
93
|
+
- Run menu with current file menu item
|
94
|
+
- View menu with Split Horizontal/Vertical
|
95
|
+
- Change split orientation with CMD+SHIFT+O shortcut
|
96
|
+
- Run current file shortcut CMD+SHIFT+R
|
97
|
+
- Fix issue with line numbers not scrolling perfectly along with open file (off by a few pixels)
|
98
|
+
- Fix select-all with code_text
|
99
|
+
- Fix tab with code_text
|
100
|
+
- Fix caret position after tab with code_text
|
101
|
+
- Fix issue with ENTER key not putting caret parallel to previous line start
|
102
|
+
- Fix issue with jumping to bottom when doing CMD+] or [ for indent
|
103
|
+
- Fix multi-line operations/post-selection with code_text (e.g. comment/uncomment, indent right or left)
|
104
|
+
- Fix issue with jumping one line up or down when doing CMD+] or [ for indent
|
105
|
+
- Fix CMD+ENTER and CMD+SHIFT+ENTER with code_text
|
106
|
+
- Fix Move Line Up or Move Line Down with code_text
|
107
|
+
- Fix jumping across pages of code on Find Next with code_text (it stays in the same page)
|
108
|
+
- Fix issue with jumping back to beginning of file upon very quick indent/outdent
|
109
|
+
|
110
|
+
## 0.3.1
|
111
|
+
|
112
|
+
- Fixed issue with Find/Replace revisiting the same word after Replace, making it jump to the next one.
|
113
|
+
- Add 'vendor' to ignore paths
|
114
|
+
|
115
|
+
## 0.3.0
|
116
|
+
|
117
|
+
- Support Ignore Paths ('packges' and 'tmp' by default) to avoid slowing down editor with irrelevant files
|
118
|
+
- Upgrade support to glimmer-dsl-swt 4.17.2.0 up to 5.0.0.0
|
119
|
+
|
120
|
+
## 0.2.4
|
121
|
+
|
122
|
+
- Remember split windows on restart
|
123
|
+
- Fix issue with not being able to rename file by hitting ENTER
|
124
|
+
|
125
|
+
## 0.2.3
|
126
|
+
|
127
|
+
- Improved performance of file lookup list and display of directories (removing current local directory from file prefix)
|
128
|
+
|
129
|
+
## 0.2.2
|
130
|
+
|
131
|
+
- Upgraded to glimmer-dsl-swt 0.4.0
|
132
|
+
|
133
|
+
## 0.2.1
|
134
|
+
|
135
|
+
- Drag and Drop Text Editor Split Screen Support (drag from tree or file lookup list)
|
136
|
+
- Fix issue with not rendering list and tree sometimes upon opening a small file like VERSION
|
137
|
+
|
138
|
+
## 0.2.0
|
139
|
+
|
140
|
+
- Upgraded to glimmer 0.9.1 / glimmer-dsl-swt 0.1.0
|
141
|
+
- Fixed unopen-file related bugs
|
142
|
+
|
143
|
+
## 0.1.8
|
144
|
+
|
145
|
+
- Undo/Redo
|
146
|
+
- Case-sensitive Find (and Replace by extension)
|
147
|
+
- Make CMD+SHIFT+] at the last tab go to the first tab (and vice versa with CMD+SHIFT+[)
|
148
|
+
- Fix Line/Find/Replace actions when no file is open (to avoid crash)
|
149
|
+
- Fix issue with file lookup list expanding all the way down, covering the file tree
|
150
|
+
- Fix issue with hitting home/end with selection keeping selection instead of removing it
|
151
|
+
- Fix issue with crashing if no file was open, no file is found in lookup list, and you attempt to hit enter in keyboard
|
152
|
+
|
153
|
+
## 0.1.7
|
154
|
+
|
155
|
+
- Relaxed Glimmer version requirement
|
156
|
+
|
157
|
+
## 0.1.6
|
158
|
+
|
159
|
+
- Support Linux explicitly (sort of)
|
160
|
+
- Make file tree maintain expansion state on refreshes caused by internal & external changes
|
161
|
+
|
162
|
+
## 0.1.5
|
163
|
+
|
164
|
+
- Remember all open text editor tabs when closing and reopening
|
165
|
+
- Support closing text editor tabs with keyboard shortcuts (closing current tab, closing all tabs other than current one, closing all tabs)
|
166
|
+
- Support prefix new indented line when hitting CMD+SHIFT+ENTER in the middle of a line
|
167
|
+
- Make CMD+T auto-select open file in file tree
|
168
|
+
- Make gladiator command accept directory argument instead of LOCAL_DIR and automatically open directory passed in
|
169
|
+
- Fix rename bug for when focusing out without changing name
|
170
|
+
- Fix bug with opening file with ENTER key from file tree
|
171
|
+
- Fix issue with changes not persisting when done via find/replace on a newly browsed to tab
|
172
|
+
|
173
|
+
## 0.1.4
|
174
|
+
|
175
|
+
- Fix issue with file explorer tree losing selection on refresh
|
176
|
+
- Fix file explorer opening of files on every selection change instead of just hitting ENTER or mouse click
|
177
|
+
- Fix issue with refreshing the tree on every tab switch after making changes (make it check if change is coming from any of all tabs)
|
178
|
+
- Fix issue with top index not being set from config
|
179
|
+
- Make file explorer tree show file/directory names not paths
|
180
|
+
- Make file explorer tree show current project directory name as the root instead of "."
|
181
|
+
- Make file explorer shortcut auto-reveal open file in file explorer tree
|
182
|
+
- Make hitting ESC button in line number field, file lookup field, find field, or replace field go back to open file to the same caret position as before
|
183
|
+
- Make hitting ESC button in file explorer go back to open file to the same caret position as before and reselect it
|
184
|
+
- Improve file lookup by ignoring dots
|
185
|
+
- Add number command + 2-8 tab shortcuts
|
186
|
+
- Add a new file through File Explorer
|
187
|
+
- Add a new directory through File Explorer
|
188
|
+
- Delete a file or directory through File Explorer
|
189
|
+
- Support auto-indent on hitting ENTER to add a new line
|
190
|
+
- Support insert new indented line when hitting CMD+ENTER in the middle of a line
|
191
|
+
|
192
|
+
## 0.1.3
|
193
|
+
|
194
|
+
- Fix issue with selection getting out of wack when moving a group of lines up or down
|
195
|
+
- Fix issue with Find not working for more than one occurrence in a line
|
196
|
+
- Fix issue with kill line sometimes jumping to the next line afterwards. Seems to happen if following line is empty
|
197
|
+
- Fix issue with line numbers sometimes getting clipped when openig a new file until resizing window
|
198
|
+
- Support multiple tabs
|
199
|
+
- Support tab keyboard shortcuts for next tab, previous tab, first tab, last tab
|
200
|
+
- Remember window size and location
|
201
|
+
|
202
|
+
## 0.1.2
|
203
|
+
|
204
|
+
- Fix issue with file name on top being clipped
|
205
|
+
- Fix issue with Find/Replace not working correctly for first line in the file (being off by one character)
|
206
|
+
|
207
|
+
## 0.1.1
|
208
|
+
|
209
|
+
- Fix issue with tab button killing selection (make it indent instead)
|
210
|
+
- Fix issue with crashing upon permission denied for opening a file
|
211
|
+
- Fix issue with storing .gladiator in running directory instead of LOCAL_DIR when specified
|
212
|
+
- Make entering the file lookup list automatically highlight the first element
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# <img src='https://raw.githubusercontent.com/AndyObtiva/glimmer-cs-gladiator/master/images/glimmer-cs-gladiator-logo.svg' height=85 /> Gladiator 0.
|
1
|
+
# <img src='https://raw.githubusercontent.com/AndyObtiva/glimmer-cs-gladiator/master/images/glimmer-cs-gladiator-logo.svg' height=85 /> Gladiator 0.6.3 - [Ugliest Text Editor Ever](https://www.reddit.com/r/ruby/comments/hgve8k/gladiator_glimmer_editor_ugliest_text_editor_ever/)
|
2
2
|
## [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 /> Glimmer Custom Shell](https://github.com/AndyObtiva/glimmer-dsl-swt#custom-shell-gem)
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/glimmer-cs-gladiator.svg)](http://badge.fury.io/rb/glimmer-cs-gladiator)
|
4
4
|
|
@@ -11,18 +11,14 @@ I leave building truly professional text editors to software tooling experts who
|
|
11
11
|
|
12
12
|
## Features
|
13
13
|
|
14
|
-
Gladiator currently supports the following text editing features (including keyboard shortcuts with Mac CMD=CTRL on Windows/Linux)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
-
|
19
|
-
- Watch project subdirectories for changes to automatically refresh in file explorer/file lookup
|
20
|
-
- Find & Replace (CMD+F)
|
14
|
+
Gladiator currently supports the following text editing features (including keyboard shortcuts with Mac CMD=CTRL on Windows/Linux)
|
15
|
+
|
16
|
+
### Text Editor
|
17
|
+
|
18
|
+
- Text Editor with Colored Ruby Syntax Highlighting
|
21
19
|
- Show Line Numbers
|
22
|
-
-
|
23
|
-
-
|
24
|
-
- Remember opened tabs, caret position, top line, window size, and window location
|
25
|
-
- Autosave on focus out/quit/open new file
|
20
|
+
- Multi-tab support (CMD+SHIFT+[ & CMD+SHIFT+] for tab navigation. CMD+1-9 to jump to a specific tab)
|
21
|
+
- Drag and drop split pane (drag a file from File Tree or File Lookup List, and it splits the pane)
|
26
22
|
- Duplicate Line(s)/selection (CMD+D)
|
27
23
|
- Kill Line(s)/selection (CMD+K)
|
28
24
|
- Move line/selection up (CMD+UP)
|
@@ -30,10 +26,41 @@ Gladiator currently supports the following text editing features (including keyb
|
|
30
26
|
- Comment/Uncomment line/selection (CMD+/)
|
31
27
|
- Indent/Unindent line/selection (CMD+] & CMD+[)
|
32
28
|
- Insert/Prefix New Line (CMD+ENTER & CMD+SHIFT+ENTER)
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
-
|
29
|
+
|
30
|
+
### File Explorer Tree
|
31
|
+
|
32
|
+
- Collapsable file explorer tree listing files and directories for open project
|
33
|
+
- Context menu to open file, rename, delete, add new file, add new directory, and refresh tree
|
34
|
+
- Jump to open file in tree (CMD+T)
|
35
|
+
|
36
|
+
### File Lookup List Filter
|
37
|
+
|
38
|
+
- Collapsable file lookup list filter (CMD+R)
|
39
|
+
- Semi-fuzzy filtering by ignoring slashes, underscores, and dots to ease lookup
|
40
|
+
|
41
|
+
### Navigation Area
|
42
|
+
|
43
|
+
- Show current text editor file name
|
44
|
+
- Show file navigation stats (Caret Position / Line Position / Selection Count / Top Pixel)
|
45
|
+
- Jump to Line (CMD+L)
|
46
|
+
- Find & Replace (CMD+F)
|
47
|
+
|
48
|
+
### Menus
|
49
|
+
|
50
|
+
- File Menu to Open Project (CMD+SHIFT+P) and open Scratchpad for running arbitrary Ruby/Glimmer code without saving to disk (CMD+SHIFT+S)
|
51
|
+
- View Menu to Split Pane & Change Split Orientation to Horizontal/Vertical (CMD+SHIFT+O)
|
52
|
+
- Run Menu to run Ruby code (CMD+SHIFT+R)
|
53
|
+
|
54
|
+
### Watch External Changes
|
55
|
+
|
56
|
+
- Watch open file for external changes to automatically refresh in editor
|
57
|
+
- Watch project subdirectories for changes to automatically refresh in file explorer/file lookup
|
58
|
+
|
59
|
+
### Automatic Data Management
|
60
|
+
|
61
|
+
- Autosave on focus out/quit/open new file
|
62
|
+
- Remember opened tabs, caret position, top pixel, window size, and window location
|
63
|
+
- [Default](#configuration) "ignore paths" to avoid bogging down editor with irrelevant directory files
|
37
64
|
|
38
65
|
## Platforms
|
39
66
|
|
@@ -43,12 +70,14 @@ Gladiator currently supports the following text editing features (including keyb
|
|
43
70
|
|
44
71
|
## Pre-requisites
|
45
72
|
|
46
|
-
- [Glimmer DSL for SWT](https://github.com/AndyObtiva/glimmer-dsl-swt) (JRuby Desktop Development GUI
|
73
|
+
- [Glimmer DSL for SWT](https://github.com/AndyObtiva/glimmer-dsl-swt) (JRuby Desktop Development GUI Framework): '>= 4.17.2.0', '< 5.0.0.0' (dependency included in Ruby gem).
|
47
74
|
- [JRuby](https://www.jruby.org/download): Same version required by [Glimmer](https://github.com/AndyObtiva/glimmer-dsl-swt)
|
48
75
|
- [JDK](https://www.oracle.com/java/technologies/javase-downloads.html): Same version required by [Glimmer](https://github.com/AndyObtiva/glimmer-dsl-swt)
|
49
76
|
|
50
77
|
## Setup Instructions
|
51
78
|
|
79
|
+
Note: if you encounter any issues, check if they are documented in [TODO.md](TODO.md), [issues](https://github.com/AndyObtiva/glimmer-cs-gladiator/issues), or [pull requests](https://github.com/AndyObtiva/glimmer-cs-gladiator/pulls) as they might be on my radar to fix. Otherwise, please report as an [issue](https://github.com/AndyObtiva/glimmer-cs-gladiator/issues) or better yet fix and submit a [pull request](https://github.com/AndyObtiva/glimmer-cs-gladiator/pulls).
|
80
|
+
|
52
81
|
Install Gladiator gem by running (`jgem`, `jruby -S gem`, or `gem` directly if you have [RVM](https://rvm.io/)):
|
53
82
|
|
54
83
|
```
|
@@ -77,6 +106,12 @@ You may run the `gladiator` command to bring up the text editor in the project d
|
|
77
106
|
gladiator
|
78
107
|
```
|
79
108
|
|
109
|
+
On Linux, you may need to run with extra memory via this command instead:
|
110
|
+
|
111
|
+
```
|
112
|
+
gladiator -J-Xmx1200M
|
113
|
+
```
|
114
|
+
|
80
115
|
On Windows, you may need to run with extra memory via this command instead:
|
81
116
|
|
82
117
|
```
|
@@ -103,7 +138,7 @@ To reuse Gladiator as a Glimmer Custom Shell inside another Glimmer application,
|
|
103
138
|
following to the application's `Gemfile`:
|
104
139
|
|
105
140
|
```
|
106
|
-
gem 'glimmer-cs-gladiator', '
|
141
|
+
gem 'glimmer-cs-gladiator', '>= 0.6.3'
|
107
142
|
```
|
108
143
|
|
109
144
|
Run:
|
@@ -129,16 +164,12 @@ Opens Gladiator with "/Users/User/code" as the root directory.
|
|
129
164
|
|
130
165
|
## Configuration
|
131
166
|
|
132
|
-
Gladiator automatically saves configuration data in a `.gladiator` file at the directory it is run from.
|
167
|
+
Gladiator automatically saves configuration data in a `.gladiator` file at the directory it is run from. It may be edited to add extra ignore paths.
|
133
168
|
|
134
169
|
It currently remembers:
|
135
|
-
- Last opened
|
136
|
-
-
|
137
|
-
-
|
138
|
-
- Window size
|
139
|
-
- Opened tabs
|
140
|
-
- Split tabs
|
141
|
-
- Ignore Paths
|
170
|
+
- Last opened files (in both split panes if split)
|
171
|
+
- Window size and position
|
172
|
+
- Ignore Paths (default: '.gladiator', '.git', 'coverage', 'packages', 'node_modules', 'tmp', 'vendor')
|
142
173
|
|
143
174
|
## Gotcha
|
144
175
|
|
@@ -153,6 +184,10 @@ The signal TERM is in use by the JVM and will not work correctly on this platfor
|
|
153
184
|
|
154
185
|
[TODO.md](TODO.md)
|
155
186
|
|
187
|
+
## Change Log
|
188
|
+
|
189
|
+
[CHANGELOG.md](CHANGELOG.md)
|
190
|
+
|
156
191
|
## Contributing to glimmer-cs-gladiator
|
157
192
|
|
158
193
|
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
@@ -171,6 +206,6 @@ Copyright (c) 2020 Andy Maleh. See [LICENSE.txt](LICENSE.txt) for further detail
|
|
171
206
|
|
172
207
|
--
|
173
208
|
|
174
|
-
[<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 />](https://github.com/AndyObtiva/glimmer) Built with [Glimmer DSL for SWT](https://github.com/AndyObtiva/glimmer-dsl-swt) (JRuby Desktop Development GUI
|
209
|
+
[<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 />](https://github.com/AndyObtiva/glimmer) Built with [Glimmer DSL for SWT](https://github.com/AndyObtiva/glimmer-dsl-swt) (JRuby Desktop Development GUI Framework)
|
175
210
|
|
176
211
|
Gladiator icon made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.6.3
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: glimmer-cs-gladiator 0.6.3 ruby lib
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "glimmer-cs-gladiator".freeze
|
9
|
+
s.version = "0.6.3"
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
|
+
s.require_paths = ["lib".freeze]
|
13
|
+
s.authors = ["Andy Maleh".freeze]
|
14
|
+
s.date = "2020-12-29"
|
15
|
+
s.description = "Gladiator (short for Glimmer Editor) is a Glimmer sample project under on-going development. It is not intended to be a full-fledged editor by any means, yet mostly a fun educational exercise in using Glimmer to build a text editor. Gladiator is also a personal tool for shaping an editor exactly the way I like. I leave building truly professional text editors to software tooling experts who would hopefully use Glimmer one day.".freeze
|
16
|
+
s.email = "andy.am@gmail.com".freeze
|
17
|
+
s.executables = ["gladiator".freeze]
|
18
|
+
s.extra_rdoc_files = [
|
19
|
+
"LICENSE.txt",
|
20
|
+
"README.md"
|
21
|
+
]
|
22
|
+
s.files = [
|
23
|
+
"CHANGELOG.md",
|
24
|
+
"LICENSE.txt",
|
25
|
+
"README.md",
|
26
|
+
"VERSION",
|
27
|
+
"bin/gladiator",
|
28
|
+
"bin/gladiator_runner.rb",
|
29
|
+
"glimmer-cs-gladiator.gemspec",
|
30
|
+
"images/glimmer-cs-gladiator-logo.png",
|
31
|
+
"lib/glimmer-cs-gladiator.rb",
|
32
|
+
"lib/models/glimmer/gladiator/command.rb",
|
33
|
+
"lib/models/glimmer/gladiator/dir.rb",
|
34
|
+
"lib/models/glimmer/gladiator/file.rb",
|
35
|
+
"lib/views/glimmer/gladiator.rb",
|
36
|
+
"lib/views/glimmer/gladiator/text_editor.rb"
|
37
|
+
]
|
38
|
+
s.homepage = "http://github.com/AndyObtiva/glimmer-cs-gladiator".freeze
|
39
|
+
s.licenses = ["MIT".freeze]
|
40
|
+
s.rubygems_version = "3.0.6".freeze
|
41
|
+
s.summary = "Gladiator (Glimmer Editor) - Glimmer Custom Shell".freeze
|
42
|
+
|
43
|
+
if s.respond_to? :specification_version then
|
44
|
+
s.specification_version = 4
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_runtime_dependency(%q<glimmer-dsl-swt>.freeze, [">= 4.17.10.3", "< 5.0.0.0"])
|
48
|
+
s.add_runtime_dependency(%q<filewatcher>.freeze, ["~> 1.1.1"])
|
49
|
+
s.add_runtime_dependency(%q<clipboard>.freeze, ["~> 1.3.5"])
|
50
|
+
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
51
|
+
s.add_development_dependency(%q<jeweler>.freeze, ["= 2.3.9"])
|
52
|
+
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
|
53
|
+
else
|
54
|
+
s.add_dependency(%q<glimmer-dsl-swt>.freeze, [">= 4.17.10.3", "< 5.0.0.0"])
|
55
|
+
s.add_dependency(%q<filewatcher>.freeze, ["~> 1.1.1"])
|
56
|
+
s.add_dependency(%q<clipboard>.freeze, ["~> 1.3.5"])
|
57
|
+
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
58
|
+
s.add_dependency(%q<jeweler>.freeze, ["= 2.3.9"])
|
59
|
+
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
60
|
+
end
|
61
|
+
else
|
62
|
+
s.add_dependency(%q<glimmer-dsl-swt>.freeze, [">= 4.17.10.3", "< 5.0.0.0"])
|
63
|
+
s.add_dependency(%q<filewatcher>.freeze, ["~> 1.1.1"])
|
64
|
+
s.add_dependency(%q<clipboard>.freeze, ["~> 1.3.5"])
|
65
|
+
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
66
|
+
s.add_dependency(%q<jeweler>.freeze, ["= 2.3.9"])
|
67
|
+
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|