redcar 0.3.4.3 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/CHANGES +45 -0
  2. data/README.md +2 -1
  3. data/ROADMAP.md +0 -1
  4. data/Rakefile +10 -4
  5. data/bin/redcar +2 -2
  6. data/lib/openssl/build.properties +7 -0
  7. data/lib/plugin_manager/lib/plugin_manager.rb +10 -0
  8. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +1 -13
  9. data/lib/redcar.rb +12 -8
  10. data/lib/redcar/installer.rb +16 -15
  11. data/lib/redcar/ruby_extensions.rb +146 -1
  12. data/lib/redcar/runner.rb +16 -7
  13. data/lib/redcar/usage.rb +4 -7
  14. data/lib/redcar_quick_start.rb +5 -5
  15. data/lib/regex_replace.rb +0 -7
  16. data/plugins/application/features/step_definitions/command_steps.rb +5 -0
  17. data/plugins/application/features/step_definitions/dialog_steps.rb +5 -0
  18. data/plugins/application/features/step_definitions/filter_list_dialog_steps.rb +38 -0
  19. data/plugins/application/features/step_definitions/window_steps.rb +1 -1
  20. data/plugins/application/features/support/env.rb +44 -8
  21. data/plugins/application/lib/application.rb +32 -33
  22. data/plugins/application/lib/application/command.rb +32 -2
  23. data/plugins/application/lib/application/command/executor.rb +2 -12
  24. data/plugins/application/lib/application/dialog.rb +14 -14
  25. data/plugins/application/lib/application/event_spewer.rb +32 -0
  26. data/plugins/application/lib/application/menu.rb +5 -5
  27. data/plugins/application/lib/application/menu/builder.rb +5 -0
  28. data/plugins/application/lib/application/menu/lazy_menu.rb +24 -0
  29. data/plugins/application/lib/application/notebook.rb +4 -3
  30. data/plugins/application/lib/application/tab.rb +6 -2
  31. data/plugins/application/lib/application/window.rb +8 -4
  32. data/plugins/application/spec/application/menu/builder_spec.rb +17 -1
  33. data/plugins/application/spec/application/notebook_spec.rb +1 -1
  34. data/plugins/application_swt/build.xml +74 -0
  35. data/plugins/application_swt/lib/application_swt.rb +79 -0
  36. data/plugins/application_swt/lib/application_swt/cucumber_patches.rb +6 -1
  37. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +25 -17
  38. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +50 -12
  39. data/plugins/application_swt/lib/application_swt/html_tab.rb +20 -0
  40. data/plugins/application_swt/lib/application_swt/menu.rb +26 -2
  41. data/plugins/application_swt/lib/application_swt/notebook.rb +10 -12
  42. data/plugins/application_swt/lib/application_swt/window.rb +11 -11
  43. data/plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java +313 -0
  44. data/plugins/auto_completer/lib/auto_completer.rb +74 -67
  45. data/plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb +19 -0
  46. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +2 -2
  47. data/plugins/auto_completer/lib/auto_completer/word_list.rb +8 -1
  48. data/plugins/auto_indenter/features/ruby_style_indentation.feature +24 -0
  49. data/plugins/auto_indenter/features/step_definitions/indentation_steps.rb +6 -0
  50. data/plugins/auto_indenter/features/support/env.rb +2 -0
  51. data/plugins/auto_indenter/lib/auto_indenter.rb +86 -0
  52. data/plugins/auto_indenter/lib/auto_indenter/analyzer.rb +91 -0
  53. data/plugins/auto_indenter/lib/auto_indenter/commands.rb +34 -0
  54. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +67 -12
  55. data/plugins/auto_indenter/lib/auto_indenter/rules.rb +41 -0
  56. data/plugins/auto_indenter/spec/auto_indenter/analyzer_spec.rb +151 -0
  57. data/plugins/auto_indenter/spec/spec_helper.rb +5 -0
  58. data/plugins/auto_pairer/lib/auto_pairer.rb +1 -0
  59. data/plugins/auto_pairer/lib/auto_pairer/document_controller.rb +43 -42
  60. data/plugins/auto_pairer/lib/auto_pairer/pairs_for_scope.rb +1 -5
  61. data/plugins/core/lib/core.rb +12 -1
  62. data/plugins/core/lib/core/observable.rb +7 -7
  63. data/plugins/core/lib/core/persistent_cache.rb +14 -2
  64. data/plugins/core/lib/core/plugin.rb +7 -0
  65. data/plugins/core/lib/core/resource.rb +78 -0
  66. data/plugins/core/lib/core/task.rb +62 -0
  67. data/plugins/core/lib/core/task_queue.rb +72 -0
  68. data/plugins/core/spec/core/resource_spec.rb +124 -0
  69. data/plugins/core/spec/core/task_queue_spec.rb +202 -0
  70. data/plugins/core/spec/spec_helper.rb +23 -1
  71. data/plugins/declarations/TODO +3 -0
  72. data/plugins/declarations/lib/declarations.rb +144 -0
  73. data/plugins/declarations/lib/declarations/completion_source.rb +22 -0
  74. data/plugins/declarations/lib/declarations/file.rb +68 -0
  75. data/plugins/declarations/lib/declarations/parser.rb +94 -0
  76. data/plugins/declarations/lib/declarations/select_tag_dialog.rb +44 -0
  77. data/plugins/declarations/plugin.rb +7 -0
  78. data/plugins/declarations/spec/declarations/file_spec.rb +62 -0
  79. data/plugins/declarations/spec/fixtures/federalist.rb +15 -0
  80. data/plugins/declarations/spec/spec_helper.rb +4 -0
  81. data/plugins/edit_view/features/indentation_commands.feature +40 -0
  82. data/plugins/edit_view/features/line_delimiter.feature +40 -0
  83. data/plugins/edit_view/features/step_definitions/editing_steps.rb +16 -4
  84. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  85. data/plugins/edit_view/features/step_definitions/tab_steps.rb +1 -1
  86. data/plugins/edit_view/features/step_definitions/window_steps.rb +5 -1
  87. data/plugins/edit_view/features/support/env.rb +3 -5
  88. data/plugins/edit_view/features/undo_and_redo.feature +21 -0
  89. data/plugins/edit_view/lib/edit_view.rb +57 -4
  90. data/plugins/edit_view/lib/edit_view/actions/arrow_keys.rb +19 -3
  91. data/plugins/edit_view/lib/edit_view/document.rb +46 -11
  92. data/plugins/edit_view/lib/edit_view/document/indentation.rb +35 -0
  93. data/plugins/edit_view/lib/edit_view/modified_tabs_checker.rb +35 -0
  94. data/plugins/edit_view/lib/edit_view/tab_settings.rb +13 -3
  95. data/plugins/edit_view/spec/edit_view/document/indentation_spec.rb +112 -0
  96. data/plugins/edit_view/spec/edit_view/document_spec.rb +22 -0
  97. data/plugins/edit_view/spec/spec_helper.rb +1 -0
  98. data/plugins/edit_view_swt/lib/edit_view_swt.rb +59 -7
  99. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +3 -3
  100. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +2 -2
  101. data/plugins/edit_view_swt/vendor/java-mateview.rb +3 -2
  102. data/plugins/encryption/encryption.rb +13 -6
  103. data/plugins/execute_current_tab/lib/execute_current_tab.rb +25 -15
  104. data/plugins/html_view/assets/redcar.css +32 -1
  105. data/plugins/html_view/lib/html_view.rb +23 -3
  106. data/plugins/html_view/lib/html_view/html_tab.rb +4 -0
  107. data/plugins/my_plugin/lib/my_plugin.rb +4 -12
  108. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +1 -0
  109. data/plugins/plugin_manager_ui/views/index.html.erb +30 -37
  110. data/plugins/project/features/find_file.feature +75 -0
  111. data/plugins/project/features/open_and_save_files.feature +7 -7
  112. data/plugins/project/features/open_directory_tree.feature +11 -3
  113. data/plugins/project/features/refresh_directory_tree.feature +7 -1
  114. data/plugins/project/features/step_definitions/directory_steps.rb +11 -1
  115. data/plugins/project/features/step_definitions/file_steps.rb +10 -0
  116. data/plugins/project/features/support/env.rb +6 -1
  117. data/plugins/project/features/watch_for_modified_files.feature +79 -0
  118. data/plugins/project/lib/project.rb +72 -306
  119. data/plugins/project/lib/project/commands.rb +128 -0
  120. data/plugins/project/lib/project/dir_mirror.rb +5 -1
  121. data/plugins/project/lib/project/drb_service.rb +21 -31
  122. data/plugins/project/lib/project/file_list.rb +76 -0
  123. data/plugins/project/lib/project/file_mirror.rb +13 -1
  124. data/plugins/project/lib/project/find_file_dialog.rb +22 -52
  125. data/plugins/project/lib/project/manager.rb +210 -0
  126. data/plugins/project/lib/project/recent_directories.rb +16 -3
  127. data/plugins/project/plugin.rb +1 -1
  128. data/plugins/project/spec/fixtures/myproject/README +2 -0
  129. data/plugins/project/spec/fixtures/myproject/lib/foo_lib.rb +1 -0
  130. data/plugins/project/spec/fixtures/myproject/spec/foo_spec.rb +1 -0
  131. data/plugins/project/{features → spec}/fixtures/winter.txt +0 -0
  132. data/plugins/project/spec/project/dir_mirror_spec.rb +1 -12
  133. data/plugins/project/spec/project/file_list_spec.rb +140 -0
  134. data/plugins/project/spec/spec_helper.rb +20 -0
  135. data/plugins/redcar/plugin.rb +1 -0
  136. data/plugins/redcar/redcar.rb +254 -84
  137. data/plugins/redcar_debug/lib/redcar_debug.rb +58 -11
  138. data/plugins/redcar_debug/vendor/jruby-prof/README +46 -0
  139. data/plugins/redcar_debug/vendor/jruby-prof/Rakefile +36 -0
  140. data/plugins/redcar_debug/vendor/jruby-prof/build.xml +31 -0
  141. data/plugins/redcar_debug/vendor/jruby-prof/example/call_tree.html +22677 -0
  142. data/plugins/redcar_debug/vendor/jruby-prof/example/call_tree.txt +589 -0
  143. data/plugins/redcar_debug/vendor/jruby-prof/example/flat.txt +28 -0
  144. data/plugins/redcar_debug/vendor/jruby-prof/example/graph.html +1670 -0
  145. data/plugins/redcar_debug/vendor/jruby-prof/example/graph.txt +125 -0
  146. data/plugins/redcar_debug/vendor/jruby-prof/example/pidigits.rb +92 -0
  147. data/plugins/redcar_debug/vendor/jruby-prof/example/test.rb +28 -0
  148. data/plugins/redcar_debug/vendor/jruby-prof/example/test2.rb +29 -0
  149. data/plugins/redcar_debug/vendor/jruby-prof/example/test_exception.rb +28 -0
  150. data/plugins/redcar_debug/vendor/jruby-prof/example/test_overhead.rb +43 -0
  151. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof.rb +66 -0
  152. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/abstract_printer.rb +21 -0
  153. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/flat_text_printer.rb +35 -0
  154. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_html_printer.rb +123 -0
  155. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_text_printer.rb +45 -0
  156. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/invocation_set.rb +34 -0
  157. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/method.rb +107 -0
  158. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/profile_invocation.rb +43 -0
  159. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/simple_tree_printer.rb +27 -0
  160. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/tree_html_printer.rb +144 -0
  161. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/Invocation.java +14 -0
  162. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/JRubyProf.java +94 -0
  163. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/ProfEventHook.java +49 -0
  164. data/plugins/redcar_debug/vendor/jruby-prof/templates/graph_row.html.erb +18 -0
  165. data/plugins/redcar_debug/vendor/jruby-prof/test/basic_test.rb +291 -0
  166. data/plugins/redcar_debug/views/history.html.erb +33 -0
  167. data/plugins/redcar_debug/views/index.html.erb +33 -0
  168. data/plugins/repl/lib/repl/internal_mirror.rb +3 -15
  169. data/plugins/repl/spec/repl/internal_mirror_spec.rb +2 -2
  170. data/plugins/snippets/lib/snippets.rb +0 -1
  171. data/plugins/snippets/lib/snippets/document_controller.rb +7 -1
  172. data/plugins/task_manager/lib/task_manager.rb +28 -0
  173. data/plugins/task_manager/plugin.rb +11 -0
  174. data/plugins/task_manager/views/index.html.erb +67 -0
  175. data/plugins/textmate/lib/textmate.rb +17 -21
  176. data/plugins/textmate/lib/textmate/plist.rb +1 -2
  177. data/plugins/textmate/lib/textmate/preference.rb +5 -1
  178. data/plugins/textmate/lib/textmate/snippet.rb +6 -1
  179. data/plugins/tree_view_swt/lib/tree_view_swt.rb +0 -6
  180. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Comments.tmPreferences +1 -1
  181. data/textmate/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +30 -0
  182. data/textmate/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +19 -0
  183. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Plain_Text_Feature.tmLanguage +221 -0
  184. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Steps.tmLanguage +424 -0
  185. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +19 -77
  186. data/textmate/Bundles/Cucumber.tmbundle/info.plist +1 -20
  187. data/textmate/Bundles/Perl.tmbundle/Syntaxes/Perl.plist +1 -1
  188. data/textmate/Themes/Emacs Strict.tmTheme +241 -0
  189. data/textmate/Themes/IR_White.tmTheme +792 -0
  190. data/textmate/Themes/Monokai.tmTheme +291 -0
  191. data/textmate/Themes/WhysPoignant.tmTheme +191 -0
  192. metadata +92 -7
  193. data/plugins/application/features/main_window.feature +0 -8
  194. data/plugins/project/lib/project/project_command.rb +0 -5
  195. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario.tmSnippet +0 -22
  196. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Story.tmSnippet +0 -25
@@ -0,0 +1,291 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>name</key>
6
+ <string>Monokai</string>
7
+ <key>settings</key>
8
+ <array>
9
+ <dict>
10
+ <key>settings</key>
11
+ <dict>
12
+ <key>background</key>
13
+ <string>#272822</string>
14
+ <key>caret</key>
15
+ <string>#F8F8F0</string>
16
+ <key>foreground</key>
17
+ <string>#FFFFFF</string>
18
+ <key>invisibles</key>
19
+ <string>#49483E</string>
20
+ <key>lineHighlight</key>
21
+ <string>#49483E</string>
22
+ <key>selection</key>
23
+ <string>#49483E</string>
24
+ </dict>
25
+ </dict>
26
+ <dict>
27
+ <key>name</key>
28
+ <string>Comment</string>
29
+ <key>scope</key>
30
+ <string>comment</string>
31
+ <key>settings</key>
32
+ <dict>
33
+ <key>foreground</key>
34
+ <string>#75715E</string>
35
+ </dict>
36
+ </dict>
37
+ <dict>
38
+ <key>name</key>
39
+ <string>String</string>
40
+ <key>scope</key>
41
+ <string>string</string>
42
+ <key>settings</key>
43
+ <dict>
44
+ <key>foreground</key>
45
+ <string>#E6DB74</string>
46
+ </dict>
47
+ </dict>
48
+ <dict>
49
+ <key>name</key>
50
+ <string>Number</string>
51
+ <key>scope</key>
52
+ <string>constant.numeric</string>
53
+ <key>settings</key>
54
+ <dict>
55
+ <key>foreground</key>
56
+ <string>#AE81FF</string>
57
+ </dict>
58
+ </dict>
59
+ <dict>
60
+ <key>name</key>
61
+ <string>Built-in constant</string>
62
+ <key>scope</key>
63
+ <string>constant.language</string>
64
+ <key>settings</key>
65
+ <dict>
66
+ <key>foreground</key>
67
+ <string>#AE81FF</string>
68
+ </dict>
69
+ </dict>
70
+ <dict>
71
+ <key>name</key>
72
+ <string>User-defined constant</string>
73
+ <key>scope</key>
74
+ <string>constant.character, constant.other</string>
75
+ <key>settings</key>
76
+ <dict>
77
+ <key>foreground</key>
78
+ <string>#AE81FF</string>
79
+ </dict>
80
+ </dict>
81
+ <dict>
82
+ <key>name</key>
83
+ <string>Variable</string>
84
+ <key>scope</key>
85
+ <string>variable</string>
86
+ <key>settings</key>
87
+ <dict>
88
+ <key>fontStyle</key>
89
+ <string></string>
90
+ <key>foreground</key>
91
+ <string>#FFFFFF</string>
92
+ </dict>
93
+ </dict>
94
+ <dict>
95
+ <key>name</key>
96
+ <string>Keyword</string>
97
+ <key>scope</key>
98
+ <string>keyword</string>
99
+ <key>settings</key>
100
+ <dict>
101
+ <key>foreground</key>
102
+ <string>#F92672</string>
103
+ </dict>
104
+ </dict>
105
+ <dict>
106
+ <key>name</key>
107
+ <string>Storage</string>
108
+ <key>scope</key>
109
+ <string>storage</string>
110
+ <key>settings</key>
111
+ <dict>
112
+ <key>fontStyle</key>
113
+ <string></string>
114
+ <key>foreground</key>
115
+ <string>#F92672</string>
116
+ </dict>
117
+ </dict>
118
+ <dict>
119
+ <key>name</key>
120
+ <string>Storage type</string>
121
+ <key>scope</key>
122
+ <string>storage.type</string>
123
+ <key>settings</key>
124
+ <dict>
125
+ <key>fontStyle</key>
126
+ <string>italic</string>
127
+ <key>foreground</key>
128
+ <string>#66D9EF</string>
129
+ </dict>
130
+ </dict>
131
+ <dict>
132
+ <key>name</key>
133
+ <string>Class name</string>
134
+ <key>scope</key>
135
+ <string>entity.name.class</string>
136
+ <key>settings</key>
137
+ <dict>
138
+ <key>fontStyle</key>
139
+ <string>underline</string>
140
+ <key>foreground</key>
141
+ <string>#A6E22E</string>
142
+ </dict>
143
+ </dict>
144
+ <dict>
145
+ <key>name</key>
146
+ <string>Inherited class</string>
147
+ <key>scope</key>
148
+ <string>entity.other.inherited-class</string>
149
+ <key>settings</key>
150
+ <dict>
151
+ <key>fontStyle</key>
152
+ <string>italic underline</string>
153
+ <key>foreground</key>
154
+ <string>#A6E22E</string>
155
+ </dict>
156
+ </dict>
157
+ <dict>
158
+ <key>name</key>
159
+ <string>Function name</string>
160
+ <key>scope</key>
161
+ <string>entity.name.function</string>
162
+ <key>settings</key>
163
+ <dict>
164
+ <key>fontStyle</key>
165
+ <string></string>
166
+ <key>foreground</key>
167
+ <string>#A6E22E</string>
168
+ </dict>
169
+ </dict>
170
+ <dict>
171
+ <key>name</key>
172
+ <string>Function argument</string>
173
+ <key>scope</key>
174
+ <string>variable.parameter</string>
175
+ <key>settings</key>
176
+ <dict>
177
+ <key>fontStyle</key>
178
+ <string>italic</string>
179
+ <key>foreground</key>
180
+ <string>#FD971F</string>
181
+ </dict>
182
+ </dict>
183
+ <dict>
184
+ <key>name</key>
185
+ <string>Tag name</string>
186
+ <key>scope</key>
187
+ <string>entity.name.tag</string>
188
+ <key>settings</key>
189
+ <dict>
190
+ <key>fontStyle</key>
191
+ <string></string>
192
+ <key>foreground</key>
193
+ <string>#F92672</string>
194
+ </dict>
195
+ </dict>
196
+ <dict>
197
+ <key>name</key>
198
+ <string>Tag attribute</string>
199
+ <key>scope</key>
200
+ <string>entity.other.attribute-name</string>
201
+ <key>settings</key>
202
+ <dict>
203
+ <key>fontStyle</key>
204
+ <string></string>
205
+ <key>foreground</key>
206
+ <string>#A6E22E</string>
207
+ </dict>
208
+ </dict>
209
+ <dict>
210
+ <key>name</key>
211
+ <string>Library function</string>
212
+ <key>scope</key>
213
+ <string>support.function</string>
214
+ <key>settings</key>
215
+ <dict>
216
+ <key>fontStyle</key>
217
+ <string></string>
218
+ <key>foreground</key>
219
+ <string>#66D9EF</string>
220
+ </dict>
221
+ </dict>
222
+ <dict>
223
+ <key>name</key>
224
+ <string>Library constant</string>
225
+ <key>scope</key>
226
+ <string>support.constant</string>
227
+ <key>settings</key>
228
+ <dict>
229
+ <key>fontStyle</key>
230
+ <string></string>
231
+ <key>foreground</key>
232
+ <string>#66D9EF</string>
233
+ </dict>
234
+ </dict>
235
+ <dict>
236
+ <key>name</key>
237
+ <string>Library class/type</string>
238
+ <key>scope</key>
239
+ <string>support.type, support.class</string>
240
+ <key>settings</key>
241
+ <dict>
242
+ <key>fontStyle</key>
243
+ <string>italic</string>
244
+ <key>foreground</key>
245
+ <string>#66D9EF</string>
246
+ </dict>
247
+ </dict>
248
+ <dict>
249
+ <key>name</key>
250
+ <string>Library variable</string>
251
+ <key>scope</key>
252
+ <string>support.other.variable</string>
253
+ <key>settings</key>
254
+ <dict>
255
+ <key>fontStyle</key>
256
+ <string></string>
257
+ </dict>
258
+ </dict>
259
+ <dict>
260
+ <key>name</key>
261
+ <string>Invalid</string>
262
+ <key>scope</key>
263
+ <string>invalid</string>
264
+ <key>settings</key>
265
+ <dict>
266
+ <key>background</key>
267
+ <string>#F92672</string>
268
+ <key>fontStyle</key>
269
+ <string></string>
270
+ <key>foreground</key>
271
+ <string>#F8F8F0</string>
272
+ </dict>
273
+ </dict>
274
+ <dict>
275
+ <key>name</key>
276
+ <string>Invalid deprecated</string>
277
+ <key>scope</key>
278
+ <string>invalid.deprecated</string>
279
+ <key>settings</key>
280
+ <dict>
281
+ <key>background</key>
282
+ <string>#AE81FF</string>
283
+ <key>foreground</key>
284
+ <string>#F8F8F0</string>
285
+ </dict>
286
+ </dict>
287
+ </array>
288
+ <key>uuid</key>
289
+ <string>D8D5E82E-3D5B-46B5-B38E-8C841C21347D</string>
290
+ </dict>
291
+ </plist>
@@ -0,0 +1,191 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>comment</key>
6
+ <string>From Why’s Poignant Guide to Ruby</string>
7
+ <key>name</key>
8
+ <string>Why's Poignant</string>
9
+ <key>settings</key>
10
+ <array>
11
+ <dict>
12
+ <key>settings</key>
13
+ <dict>
14
+ <key>background</key>
15
+ <string>#FFFEF9</string>
16
+ <key>caret</key>
17
+ <string>#340019</string>
18
+ <key>foreground</key>
19
+ <string>#2D669A</string>
20
+ <key>invisibles</key>
21
+ <string>#FF98CA</string>
22
+ <key>lineHighlight</key>
23
+ <string>#FFFFBE80</string>
24
+ <key>selection</key>
25
+ <string>#3B88CD4D</string>
26
+ </dict>
27
+ </dict>
28
+ <dict>
29
+ <key>name</key>
30
+ <string>Why’s (Poignant) Guide to Ruby</string>
31
+ <key>scope</key>
32
+ <string>markup.bold</string>
33
+ <key>settings</key>
34
+ <dict>
35
+ <key>fontStyle</key>
36
+ <string>bold</string>
37
+ </dict>
38
+ </dict>
39
+ <dict>
40
+ <key>name</key>
41
+ <string>http://poignantguide.net/ruby/</string>
42
+ <key>scope</key>
43
+ <string>meta.link, markup.underline</string>
44
+ <key>settings</key>
45
+ <dict>
46
+ <key>fontStyle</key>
47
+ <string>underline</string>
48
+ </dict>
49
+ </dict>
50
+ <dict>
51
+ <key>name</key>
52
+ <string></string>
53
+ <key>settings</key>
54
+ <dict/>
55
+ </dict>
56
+ <dict>
57
+ <key>name</key>
58
+ <string>Class name</string>
59
+ <key>scope</key>
60
+ <string>entity.name.class, entity.name.type.class, support.class, constant.language, variable.other.constant, entity.other.attribute-name, punctuation.definition.entity</string>
61
+ <key>settings</key>
62
+ <dict>
63
+ <key>fontStyle</key>
64
+ <string>bold</string>
65
+ <key>foreground</key>
66
+ <string>#4F1900</string>
67
+ </dict>
68
+ </dict>
69
+ <dict>
70
+ <key>name</key>
71
+ <string>Symbol</string>
72
+ <key>scope</key>
73
+ <string>constant.character, constant.other, punctuation.definition.constant</string>
74
+ <key>settings</key>
75
+ <dict>
76
+ <key>foreground</key>
77
+ <string>#000000</string>
78
+ </dict>
79
+ </dict>
80
+ <dict>
81
+ <key>name</key>
82
+ <string>Keyword</string>
83
+ <key>scope</key>
84
+ <string>keyword, keyword.operator.setter, keyword.other.special-method, punctuation.delimiter.method, entity.name.tag</string>
85
+ <key>settings</key>
86
+ <dict>
87
+ <key>fontStyle</key>
88
+ <string>bold</string>
89
+ <key>foreground</key>
90
+ <string>#761B48</string>
91
+ </dict>
92
+ </dict>
93
+ <dict>
94
+ <key>name</key>
95
+ <string>Punctuation</string>
96
+ <key>scope</key>
97
+ <string>punctuation, punctuation.definition.string, variable.other, meta.tag, support.type.property-name</string>
98
+ <key>settings</key>
99
+ <dict>
100
+ <key>foreground</key>
101
+ <string>#9D3266</string>
102
+ </dict>
103
+ </dict>
104
+ <dict>
105
+ <key>name</key>
106
+ <string>String Punctuation</string>
107
+ <key>scope</key>
108
+ <string>punctuation.definition.string</string>
109
+ <key>settings</key>
110
+ <dict>
111
+ <key>background</key>
112
+ <string>#FFFEF9</string>
113
+ <key>foreground</key>
114
+ <string>#9D3266</string>
115
+ </dict>
116
+ </dict>
117
+ <dict>
118
+ <key>name</key>
119
+ <string>Number</string>
120
+ <key>scope</key>
121
+ <string>constant.numeric, constant.character.entity, constant.character.entity punctuation.definition.entity</string>
122
+ <key>settings</key>
123
+ <dict>
124
+ <key>foreground</key>
125
+ <string>#2A9A66</string>
126
+ </dict>
127
+ </dict>
128
+ <dict>
129
+ <key>name</key>
130
+ <string>String</string>
131
+ <key>scope</key>
132
+ <string>string</string>
133
+ <key>settings</key>
134
+ <dict>
135
+ <key>background</key>
136
+ <string>#E8F5F5</string>
137
+ <key>foreground</key>
138
+ <string>#2A9A66</string>
139
+ </dict>
140
+ </dict>
141
+ <dict>
142
+ <key>name</key>
143
+ <string>Regex</string>
144
+ <key>scope</key>
145
+ <string>string.regexp</string>
146
+ <key>settings</key>
147
+ <dict>
148
+ <key>background</key>
149
+ <string>#E8F1F5</string>
150
+ <key>foreground</key>
151
+ <string>#443355</string>
152
+ </dict>
153
+ </dict>
154
+ <dict>
155
+ <key>name</key>
156
+ <string>Variable</string>
157
+ <key>scope</key>
158
+ <string>variable.language, variable.other, variable.parameter.function, keyword.other.special-method, variable.other.block</string>
159
+ <key>settings</key>
160
+ <dict>
161
+ <key>foreground</key>
162
+ <string>#2D669A</string>
163
+ </dict>
164
+ </dict>
165
+ <dict>
166
+ <key>name</key>
167
+ <string>Misc</string>
168
+ <key>scope</key>
169
+ <string>constant.character, punctuation.definition.comment, punctuation.delimiter.object</string>
170
+ <key>settings</key>
171
+ <dict>
172
+ <key>fontStyle</key>
173
+ <string>bold</string>
174
+ </dict>
175
+ </dict>
176
+ <dict>
177
+ <key>name</key>
178
+ <string>Comment</string>
179
+ <key>scope</key>
180
+ <string>comment, punctuation.definition.comment</string>
181
+ <key>settings</key>
182
+ <dict>
183
+ <key>foreground</key>
184
+ <string>#555555</string>
185
+ </dict>
186
+ </dict>
187
+ </array>
188
+ <key>uuid</key>
189
+ <string>FCBF0D29-1359-40DA-9CB6-C9BAF0F39617</string>
190
+ </dict>
191
+ </plist>