redcar 0.3.1dev → 0.3.2dev
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.
- data/CHANGES +34 -1
- data/README.md +2 -1
- data/ROADMAP.md +13 -45
- data/Rakefile +15 -14
- data/bin/redcar +4 -1
- data/lib/plugin_manager/README.md +61 -0
- data/lib/plugin_manager/Rakefile +55 -0
- data/lib/plugin_manager/bin/plugin_manager +4 -0
- data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
- data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
- data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
- data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
- data/lib/plugin_manager/plugin_manager.gemspec +33 -0
- data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
- data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
- data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
- data/lib/plugin_manager/spec/spec_helper.rb +3 -0
- data/lib/redcar.rb +8 -3
- data/lib/redcar/boot.rb +59 -56
- data/lib/redcar/installer.rb +1 -1
- data/lib/redcar/instance_exec.rb +25 -0
- data/lib/redcar/runner.rb +5 -1
- data/lib/redcar/usage.rb +5 -1
- data/plugins/application/icons/close.png +0 -0
- data/plugins/application/lib/application.rb +61 -28
- data/plugins/application/lib/application/clipboard.rb +71 -0
- data/plugins/application/lib/application/dialog.rb +63 -0
- data/plugins/application/lib/application/menu.rb +32 -1
- data/plugins/application/lib/application/menu/builder.rb +10 -4
- data/plugins/application/lib/application/menu/item.rb +16 -3
- data/plugins/application/lib/application/notebook.rb +5 -0
- data/plugins/application/lib/application/speedbar.rb +73 -0
- data/plugins/application/lib/application/window.rb +25 -0
- data/plugins/application/plugin.rb +8 -0
- data/plugins/application/spec/application/clipboard_spec.rb +36 -0
- data/plugins/application/spec/application/menu_spec.rb +73 -1
- data/plugins/application/spec/application/speedbar_spec.rb +46 -0
- data/plugins/application/spec/spec_helper.rb +1 -1
- data/plugins/application_swt/lib/application_swt.rb +18 -11
- data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
- data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
- data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
- data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
- data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
- data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
- data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
- data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
- data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
- data/plugins/application_swt/lib/application_swt/window.rb +33 -3
- data/plugins/application_swt/plugin.rb +8 -0
- data/plugins/application_swt/spec/spec_helper.rb +1 -1
- data/plugins/auto_completer/features/auto_complete.feature +65 -0
- data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
- data/plugins/auto_completer/features/support/env.rb +4 -0
- data/plugins/auto_completer/lib/auto_completer.rb +99 -0
- data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
- data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
- data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
- data/plugins/auto_completer/plugin.rb +10 -0
- data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
- data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
- data/plugins/auto_indenter/plugin.rb +8 -0
- data/plugins/core/lib/core.rb +6 -30
- data/plugins/core/lib/core/gui.rb +7 -2
- data/plugins/core/lib/core/logger.rb +7 -4
- data/plugins/core/lib/core/plugin/storage.rb +15 -5
- data/plugins/core/plugin.rb +7 -0
- data/plugins/core/spec/core/storage_spec.rb +0 -9
- data/plugins/edit_view/features/cut_and_paste.feature +45 -0
- data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
- data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
- data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
- data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
- data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
- data/plugins/edit_view/features/support/env.rb +2 -2
- data/plugins/edit_view/lib/edit_view.rb +24 -13
- data/plugins/edit_view/lib/edit_view/document.rb +233 -15
- data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
- data/plugins/edit_view/plugin.rb +9 -0
- data/plugins/edit_view/spec/spec_helper.rb +1 -1
- data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
- data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
- data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
- data/plugins/edit_view_swt/plugin.rb +9 -0
- data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
- data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
- data/plugins/html_view/assets/blueprint/ie.css +35 -0
- data/plugins/html_view/assets/blueprint/print.css +29 -0
- data/plugins/html_view/assets/blueprint/screen.css +257 -0
- data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
- data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
- data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
- data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
- data/plugins/html_view/assets/blueprint/src/print.css +85 -0
- data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
- data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
- data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
- data/plugins/html_view/assets/redcar.css +12 -0
- data/plugins/html_view/lib/html_controller.rb +5 -0
- data/plugins/html_view/lib/html_view.rb +47 -0
- data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
- data/plugins/html_view/plugin.rb +12 -0
- data/plugins/my_plugin/lib/my_plugin.rb +55 -0
- data/plugins/my_plugin/plugin.rb +8 -0
- data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
- data/plugins/plugin_manager_ui/plugin.rb +12 -0
- data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
- data/plugins/project/lib/project.rb +27 -13
- data/plugins/project/lib/project/find_file_dialog.rb +25 -19
- data/plugins/project/plugin.rb +8 -0
- data/plugins/project/spec/spec_helper.rb +1 -1
- data/plugins/redcar/plugin.rb +13 -0
- data/plugins/redcar/redcar.rb +249 -8
- data/plugins/repl/lib/repl.rb +22 -14
- data/plugins/repl/plugin.rb +8 -0
- data/plugins/repl/spec/spec_helper.rb +1 -1
- data/plugins/tree/plugin.rb +9 -0
- data/plugins/tree/spec/spec_helper.rb +1 -1
- data/plugins/tree_view_swt/plugin.rb +9 -0
- data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
- data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
- data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
- data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
- data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
- data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
- data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
- data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
- data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
- data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
- data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
- data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
- data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
- data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
- data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
- data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
- data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
- data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
- data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
- data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
- data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
- data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
- data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
- data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
- data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
- data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
- data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
- data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
- data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
- data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
- data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
- data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
- data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
- data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
- data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
- data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
- data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
- data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
- data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
- data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
- data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
- data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
- data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
- data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
- data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
- data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
- data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
- data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
- data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
- data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
- data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
- data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
- data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
- data/textmate/Themes/Django.tmTheme +436 -0
- metadata +371 -325
- data/config/default.yaml +0 -15
- data/lib/freebase2/README.txt +0 -47
- data/lib/freebase2/bin/default.yaml +0 -15
- data/lib/freebase2/bin/install.rb +0 -42
- data/lib/freebase2/bin/run.rb +0 -48
- data/lib/freebase2/lib/freebase/configuration.rb +0 -535
- data/lib/freebase2/lib/freebase/core.rb +0 -197
- data/lib/freebase2/lib/freebase/databus.rb +0 -1128
- data/lib/freebase2/lib/freebase/freebase.rb +0 -60
- data/lib/freebase2/lib/freebase/logger.rb +0 -117
- data/lib/freebase2/lib/freebase/plugin.rb +0 -384
- data/lib/freebase2/lib/freebase/properties.rb +0 -130
- data/lib/freebase2/lib/freebase/readers.rb +0 -328
- data/lib/freebase2/notes +0 -61
- data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
- data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
- data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
- data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
- data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
- data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
- data/lib/freebase2/regress/README +0 -1
- data/lib/little_plugger/History.txt +0 -20
- data/lib/little_plugger/Rakefile +0 -34
- data/lib/little_plugger/lib/little-plugger.rb +0 -323
- data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
- data/lib/little_plugger/spec/spec_helper.rb +0 -16
- data/lib/logging/History.txt +0 -240
- data/lib/logging/Rakefile +0 -37
- data/lib/logging/data/bad_logging_1.rb +0 -13
- data/lib/logging/data/bad_logging_2.rb +0 -21
- data/lib/logging/data/logging.rb +0 -42
- data/lib/logging/data/logging.yaml +0 -63
- data/lib/logging/data/simple_logging.rb +0 -13
- data/lib/logging/examples/appenders.rb +0 -47
- data/lib/logging/examples/classes.rb +0 -41
- data/lib/logging/examples/consolidation.rb +0 -83
- data/lib/logging/examples/formatting.rb +0 -51
- data/lib/logging/examples/hierarchies.rb +0 -73
- data/lib/logging/examples/layouts.rb +0 -48
- data/lib/logging/examples/loggers.rb +0 -29
- data/lib/logging/examples/names.rb +0 -43
- data/lib/logging/examples/simple.rb +0 -17
- data/lib/logging/lib/logging.rb +0 -501
- data/lib/logging/lib/logging/appender.rb +0 -251
- data/lib/logging/lib/logging/appenders.rb +0 -131
- data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
- data/lib/logging/lib/logging/appenders/console.rb +0 -60
- data/lib/logging/lib/logging/appenders/email.rb +0 -75
- data/lib/logging/lib/logging/appenders/file.rb +0 -58
- data/lib/logging/lib/logging/appenders/growl.rb +0 -197
- data/lib/logging/lib/logging/appenders/io.rb +0 -69
- data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
- data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
- data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
- data/lib/logging/lib/logging/config/configurator.rb +0 -188
- data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
- data/lib/logging/lib/logging/layout.rb +0 -117
- data/lib/logging/lib/logging/layouts.rb +0 -47
- data/lib/logging/lib/logging/layouts/basic.rb +0 -32
- data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
- data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
- data/lib/logging/lib/logging/log_event.rb +0 -45
- data/lib/logging/lib/logging/logger.rb +0 -503
- data/lib/logging/lib/logging/repository.rb +0 -232
- data/lib/logging/lib/logging/root_logger.rb +0 -61
- data/lib/logging/lib/logging/stats.rb +0 -278
- data/lib/logging/lib/logging/utils.rb +0 -153
- data/lib/logging/lib/spec/logging_helper.rb +0 -34
- data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
- data/lib/logging/test/appenders/test_console.rb +0 -66
- data/lib/logging/test/appenders/test_email.rb +0 -170
- data/lib/logging/test/appenders/test_file.rb +0 -95
- data/lib/logging/test/appenders/test_growl.rb +0 -127
- data/lib/logging/test/appenders/test_io.rb +0 -129
- data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
- data/lib/logging/test/appenders/test_syslog.rb +0 -194
- data/lib/logging/test/benchmark.rb +0 -86
- data/lib/logging/test/config/test_configurator.rb +0 -70
- data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
- data/lib/logging/test/layouts/test_basic.rb +0 -42
- data/lib/logging/test/layouts/test_json.rb +0 -112
- data/lib/logging/test/layouts/test_pattern.rb +0 -198
- data/lib/logging/test/layouts/test_yaml.rb +0 -121
- data/lib/logging/test/setup.rb +0 -44
- data/lib/logging/test/test_appender.rb +0 -152
- data/lib/logging/test/test_consolidate.rb +0 -46
- data/lib/logging/test/test_layout.rb +0 -110
- data/lib/logging/test/test_log_event.rb +0 -80
- data/lib/logging/test/test_logger.rb +0 -699
- data/lib/logging/test/test_logging.rb +0 -267
- data/lib/logging/test/test_repository.rb +0 -158
- data/lib/logging/test/test_root_logger.rb +0 -81
- data/lib/logging/test/test_stats.rb +0 -274
- data/lib/logging/test/test_utils.rb +0 -116
- data/plugins/application/plugin.yaml +0 -11
- data/plugins/application_swt/plugin.yaml +0 -11
- data/plugins/auto_indenter/plugin.yaml +0 -12
- data/plugins/core/plugin.yaml +0 -7
- data/plugins/edit_view/plugin.yaml +0 -14
- data/plugins/edit_view_swt/plugin.yaml +0 -14
- data/plugins/project/plugin.yaml +0 -12
- data/plugins/redcar/plugin.yaml +0 -18
- data/plugins/repl/plugin.yaml +0 -12
- data/plugins/tree/plugin.yaml +0 -14
- data/plugins/tree_view_swt/plugin.yaml +0 -14
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
<string>capfile</string>
|
|
59
59
|
</array>
|
|
60
60
|
<key>firstLineMatch</key>
|
|
61
|
-
<string>^#!/.*\bruby
|
|
61
|
+
<string>^#!/.*\bruby</string>
|
|
62
62
|
<key>foldingStartMarker</key>
|
|
63
63
|
<string>(?x)^
|
|
64
64
|
(\s*+
|
|
@@ -432,7 +432,7 @@
|
|
|
432
432
|
(?>[a-zA-Z_]\w*(?>[?!]|=(?!>))? # the method name
|
|
433
433
|
|===?|>[>=]?|<=>|<[<=]?|[%&`/\|]|\*\*?|=?~|[-+]@?|\[\]=?) ) # …or an operator method
|
|
434
434
|
[ \t] # the space separating the arguments
|
|
435
|
-
(?=[ \t]*[^\s
|
|
435
|
+
(?=[ \t]*[^\s#;]) # make sure arguments and not a comment follow
|
|
436
436
|
</string>
|
|
437
437
|
<key>beginCaptures</key>
|
|
438
438
|
<dict>
|
|
@@ -549,6 +549,14 @@
|
|
|
549
549
|
</dict>
|
|
550
550
|
</array>
|
|
551
551
|
</dict>
|
|
552
|
+
<dict>
|
|
553
|
+
<key>comment</key>
|
|
554
|
+
<string>Needs higher precidence than regular expressions.</string>
|
|
555
|
+
<key>match</key>
|
|
556
|
+
<string>/=</string>
|
|
557
|
+
<key>name</key>
|
|
558
|
+
<string>keyword.operator.assignment.augmented.ruby</string>
|
|
559
|
+
</dict>
|
|
552
560
|
<dict>
|
|
553
561
|
<key>begin</key>
|
|
554
562
|
<string>'</string>
|
|
@@ -889,9 +897,6 @@
|
|
|
889
897
|
| ^elsif\s
|
|
890
898
|
| ^while\s
|
|
891
899
|
| ^unless\s
|
|
892
|
-
| ^Given\s
|
|
893
|
-
| ^Then\s
|
|
894
|
-
| ^When\s
|
|
895
900
|
)
|
|
896
901
|
)
|
|
897
902
|
\s*((/))(?![*+{}?])
|
|
@@ -1552,6 +1557,22 @@
|
|
|
1552
1557
|
<key>name</key>
|
|
1553
1558
|
<string>constant.other.symbol.ruby</string>
|
|
1554
1559
|
</dict>
|
|
1560
|
+
<dict>
|
|
1561
|
+
<key>captures</key>
|
|
1562
|
+
<dict>
|
|
1563
|
+
<key>1</key>
|
|
1564
|
+
<dict>
|
|
1565
|
+
<key>name</key>
|
|
1566
|
+
<string>punctuation.definition.constant.ruby</string>
|
|
1567
|
+
</dict>
|
|
1568
|
+
</dict>
|
|
1569
|
+
<key>comment</key>
|
|
1570
|
+
<string>symbols</string>
|
|
1571
|
+
<key>match</key>
|
|
1572
|
+
<string>(?>[a-zA-Z_]\w*(?>[?!])?)(:)(?!:)</string>
|
|
1573
|
+
<key>name</key>
|
|
1574
|
+
<string>constant.other.symbol.ruby.19syntax</string>
|
|
1575
|
+
</dict>
|
|
1555
1576
|
<dict>
|
|
1556
1577
|
<key>begin</key>
|
|
1557
1578
|
<string>^=begin</string>
|
|
@@ -1653,7 +1674,7 @@
|
|
|
1653
1674
|
</dict>
|
|
1654
1675
|
<dict>
|
|
1655
1676
|
<key>begin</key>
|
|
1656
|
-
<string>(?>
|
|
1677
|
+
<string>(?><<-("?)((?:[_\w]+_|)HTML)\b\1)</string>
|
|
1657
1678
|
<key>beginCaptures</key>
|
|
1658
1679
|
<dict>
|
|
1659
1680
|
<key>0</key>
|
|
@@ -1662,8 +1683,12 @@
|
|
|
1662
1683
|
<string>punctuation.definition.string.begin.ruby</string>
|
|
1663
1684
|
</dict>
|
|
1664
1685
|
</dict>
|
|
1686
|
+
<key>comment</key>
|
|
1687
|
+
<string>heredoc with embedded HTML and indented terminator</string>
|
|
1688
|
+
<key>contentName</key>
|
|
1689
|
+
<string>text.html.embedded.ruby</string>
|
|
1665
1690
|
<key>end</key>
|
|
1666
|
-
<string
|
|
1691
|
+
<string>\s*\2$</string>
|
|
1667
1692
|
<key>endCaptures</key>
|
|
1668
1693
|
<dict>
|
|
1669
1694
|
<key>0</key>
|
|
@@ -1673,13 +1698,17 @@
|
|
|
1673
1698
|
</dict>
|
|
1674
1699
|
</dict>
|
|
1675
1700
|
<key>name</key>
|
|
1676
|
-
<string>string.unquoted.
|
|
1701
|
+
<string>string.unquoted.embedded.html.ruby</string>
|
|
1677
1702
|
<key>patterns</key>
|
|
1678
1703
|
<array>
|
|
1679
1704
|
<dict>
|
|
1680
1705
|
<key>include</key>
|
|
1681
1706
|
<string>#heredoc</string>
|
|
1682
1707
|
</dict>
|
|
1708
|
+
<dict>
|
|
1709
|
+
<key>include</key>
|
|
1710
|
+
<string>text.html.basic</string>
|
|
1711
|
+
</dict>
|
|
1683
1712
|
<dict>
|
|
1684
1713
|
<key>include</key>
|
|
1685
1714
|
<string>#interpolated_ruby</string>
|
|
@@ -1692,7 +1721,7 @@
|
|
|
1692
1721
|
</dict>
|
|
1693
1722
|
<dict>
|
|
1694
1723
|
<key>begin</key>
|
|
1695
|
-
<string>(?><<-
|
|
1724
|
+
<string>(?><<-("?)((?:[_\w]+_|)SQL)\b\1)</string>
|
|
1696
1725
|
<key>beginCaptures</key>
|
|
1697
1726
|
<dict>
|
|
1698
1727
|
<key>0</key>
|
|
@@ -1702,11 +1731,11 @@
|
|
|
1702
1731
|
</dict>
|
|
1703
1732
|
</dict>
|
|
1704
1733
|
<key>comment</key>
|
|
1705
|
-
<string>heredoc with embedded
|
|
1734
|
+
<string>heredoc with embedded SQL and indented terminator</string>
|
|
1706
1735
|
<key>contentName</key>
|
|
1707
|
-
<string>text.
|
|
1736
|
+
<string>text.sql.embedded.ruby</string>
|
|
1708
1737
|
<key>end</key>
|
|
1709
|
-
<string>\s
|
|
1738
|
+
<string>\s*\2$</string>
|
|
1710
1739
|
<key>endCaptures</key>
|
|
1711
1740
|
<dict>
|
|
1712
1741
|
<key>0</key>
|
|
@@ -1716,7 +1745,7 @@
|
|
|
1716
1745
|
</dict>
|
|
1717
1746
|
</dict>
|
|
1718
1747
|
<key>name</key>
|
|
1719
|
-
<string>string.unquoted.embedded.
|
|
1748
|
+
<string>string.unquoted.embedded.sql.ruby</string>
|
|
1720
1749
|
<key>patterns</key>
|
|
1721
1750
|
<array>
|
|
1722
1751
|
<dict>
|
|
@@ -1725,7 +1754,7 @@
|
|
|
1725
1754
|
</dict>
|
|
1726
1755
|
<dict>
|
|
1727
1756
|
<key>include</key>
|
|
1728
|
-
<string>
|
|
1757
|
+
<string>source.sql</string>
|
|
1729
1758
|
</dict>
|
|
1730
1759
|
<dict>
|
|
1731
1760
|
<key>include</key>
|
|
@@ -1739,7 +1768,7 @@
|
|
|
1739
1768
|
</dict>
|
|
1740
1769
|
<dict>
|
|
1741
1770
|
<key>begin</key>
|
|
1742
|
-
<string>(?><<-
|
|
1771
|
+
<string>(?><<-("?)((?:[_\w]+_|)CSS)\b\1)</string>
|
|
1743
1772
|
<key>beginCaptures</key>
|
|
1744
1773
|
<dict>
|
|
1745
1774
|
<key>0</key>
|
|
@@ -1749,11 +1778,11 @@
|
|
|
1749
1778
|
</dict>
|
|
1750
1779
|
</dict>
|
|
1751
1780
|
<key>comment</key>
|
|
1752
|
-
<string>heredoc with embedded
|
|
1781
|
+
<string>heredoc with embedded css and intented terminator</string>
|
|
1753
1782
|
<key>contentName</key>
|
|
1754
|
-
<string>text.
|
|
1783
|
+
<string>text.css.embedded.ruby</string>
|
|
1755
1784
|
<key>end</key>
|
|
1756
|
-
<string>\s
|
|
1785
|
+
<string>\s*\2$</string>
|
|
1757
1786
|
<key>endCaptures</key>
|
|
1758
1787
|
<dict>
|
|
1759
1788
|
<key>0</key>
|
|
@@ -1763,7 +1792,7 @@
|
|
|
1763
1792
|
</dict>
|
|
1764
1793
|
</dict>
|
|
1765
1794
|
<key>name</key>
|
|
1766
|
-
<string>string.unquoted.embedded.
|
|
1795
|
+
<string>string.unquoted.embedded.css.ruby</string>
|
|
1767
1796
|
<key>patterns</key>
|
|
1768
1797
|
<array>
|
|
1769
1798
|
<dict>
|
|
@@ -1772,7 +1801,7 @@
|
|
|
1772
1801
|
</dict>
|
|
1773
1802
|
<dict>
|
|
1774
1803
|
<key>include</key>
|
|
1775
|
-
<string>source.
|
|
1804
|
+
<string>source.css</string>
|
|
1776
1805
|
</dict>
|
|
1777
1806
|
<dict>
|
|
1778
1807
|
<key>include</key>
|
|
@@ -1786,7 +1815,7 @@
|
|
|
1786
1815
|
</dict>
|
|
1787
1816
|
<dict>
|
|
1788
1817
|
<key>begin</key>
|
|
1789
|
-
<string>(?><<-(
|
|
1818
|
+
<string>(?><<-("?)((?:[_\w]+_|)CPP)\b\1)</string>
|
|
1790
1819
|
<key>beginCaptures</key>
|
|
1791
1820
|
<dict>
|
|
1792
1821
|
<key>0</key>
|
|
@@ -1796,7 +1825,9 @@
|
|
|
1796
1825
|
</dict>
|
|
1797
1826
|
</dict>
|
|
1798
1827
|
<key>comment</key>
|
|
1799
|
-
<string>
|
|
1828
|
+
<string>heredoc with embedded c++ and intented terminator</string>
|
|
1829
|
+
<key>contentName</key>
|
|
1830
|
+
<string>text.c++.embedded.ruby</string>
|
|
1800
1831
|
<key>end</key>
|
|
1801
1832
|
<string>\s*\2$</string>
|
|
1802
1833
|
<key>endCaptures</key>
|
|
@@ -1808,7 +1839,7 @@
|
|
|
1808
1839
|
</dict>
|
|
1809
1840
|
</dict>
|
|
1810
1841
|
<key>name</key>
|
|
1811
|
-
<string>string.unquoted.embedded.
|
|
1842
|
+
<string>string.unquoted.embedded.cplusplus.ruby</string>
|
|
1812
1843
|
<key>patterns</key>
|
|
1813
1844
|
<array>
|
|
1814
1845
|
<dict>
|
|
@@ -1817,11 +1848,11 @@
|
|
|
1817
1848
|
</dict>
|
|
1818
1849
|
<dict>
|
|
1819
1850
|
<key>include</key>
|
|
1820
|
-
<string
|
|
1851
|
+
<string>source.c++</string>
|
|
1821
1852
|
</dict>
|
|
1822
1853
|
<dict>
|
|
1823
1854
|
<key>include</key>
|
|
1824
|
-
<string
|
|
1855
|
+
<string>#interpolated_ruby</string>
|
|
1825
1856
|
</dict>
|
|
1826
1857
|
<dict>
|
|
1827
1858
|
<key>include</key>
|
|
@@ -1831,7 +1862,7 @@
|
|
|
1831
1862
|
</dict>
|
|
1832
1863
|
<dict>
|
|
1833
1864
|
<key>begin</key>
|
|
1834
|
-
<string>(?><<-(\w+))</string>
|
|
1865
|
+
<string>(?><<-("?)((?:[_\w]+_|)C)\b\1)</string>
|
|
1835
1866
|
<key>beginCaptures</key>
|
|
1836
1867
|
<dict>
|
|
1837
1868
|
<key>0</key>
|
|
@@ -1841,9 +1872,11 @@
|
|
|
1841
1872
|
</dict>
|
|
1842
1873
|
</dict>
|
|
1843
1874
|
<key>comment</key>
|
|
1844
|
-
<string>heredoc with
|
|
1875
|
+
<string>heredoc with embedded c++ and intented terminator</string>
|
|
1876
|
+
<key>contentName</key>
|
|
1877
|
+
<string>text.c.embedded.ruby</string>
|
|
1845
1878
|
<key>end</key>
|
|
1846
|
-
<string>\s*\
|
|
1879
|
+
<string>\s*\2$</string>
|
|
1847
1880
|
<key>endCaptures</key>
|
|
1848
1881
|
<dict>
|
|
1849
1882
|
<key>0</key>
|
|
@@ -1853,13 +1886,17 @@
|
|
|
1853
1886
|
</dict>
|
|
1854
1887
|
</dict>
|
|
1855
1888
|
<key>name</key>
|
|
1856
|
-
<string>string.unquoted.
|
|
1889
|
+
<string>string.unquoted.embedded.c.ruby</string>
|
|
1857
1890
|
<key>patterns</key>
|
|
1858
1891
|
<array>
|
|
1859
1892
|
<dict>
|
|
1860
1893
|
<key>include</key>
|
|
1861
1894
|
<string>#heredoc</string>
|
|
1862
1895
|
</dict>
|
|
1896
|
+
<dict>
|
|
1897
|
+
<key>include</key>
|
|
1898
|
+
<string>source.c</string>
|
|
1899
|
+
</dict>
|
|
1863
1900
|
<dict>
|
|
1864
1901
|
<key>include</key>
|
|
1865
1902
|
<string>#interpolated_ruby</string>
|
|
@@ -1872,7 +1909,7 @@
|
|
|
1872
1909
|
</dict>
|
|
1873
1910
|
<dict>
|
|
1874
1911
|
<key>begin</key>
|
|
1875
|
-
<string>(?>
|
|
1912
|
+
<string>(?><<-("?)((?:[_\w]+_|)(?:JS|JAVASCRIPT))\b\1)</string>
|
|
1876
1913
|
<key>beginCaptures</key>
|
|
1877
1914
|
<dict>
|
|
1878
1915
|
<key>0</key>
|
|
@@ -1881,8 +1918,12 @@
|
|
|
1881
1918
|
<string>punctuation.definition.string.begin.ruby</string>
|
|
1882
1919
|
</dict>
|
|
1883
1920
|
</dict>
|
|
1921
|
+
<key>comment</key>
|
|
1922
|
+
<string>heredoc with embedded javascript and intented terminator</string>
|
|
1923
|
+
<key>contentName</key>
|
|
1924
|
+
<string>text.js.embedded.ruby</string>
|
|
1884
1925
|
<key>end</key>
|
|
1885
|
-
<string
|
|
1926
|
+
<string>\s*\2$</string>
|
|
1886
1927
|
<key>endCaptures</key>
|
|
1887
1928
|
<dict>
|
|
1888
1929
|
<key>0</key>
|
|
@@ -1892,7 +1933,7 @@
|
|
|
1892
1933
|
</dict>
|
|
1893
1934
|
</dict>
|
|
1894
1935
|
<key>name</key>
|
|
1895
|
-
<string>string.unquoted.embedded.
|
|
1936
|
+
<string>string.unquoted.embedded.js.ruby</string>
|
|
1896
1937
|
<key>patterns</key>
|
|
1897
1938
|
<array>
|
|
1898
1939
|
<dict>
|
|
@@ -1901,7 +1942,7 @@
|
|
|
1901
1942
|
</dict>
|
|
1902
1943
|
<dict>
|
|
1903
1944
|
<key>include</key>
|
|
1904
|
-
<string>source.
|
|
1945
|
+
<string>source.js</string>
|
|
1905
1946
|
</dict>
|
|
1906
1947
|
<dict>
|
|
1907
1948
|
<key>include</key>
|
|
@@ -1915,7 +1956,7 @@
|
|
|
1915
1956
|
</dict>
|
|
1916
1957
|
<dict>
|
|
1917
1958
|
<key>begin</key>
|
|
1918
|
-
<string>(?>
|
|
1959
|
+
<string>(?><<-("?)((?:[_\w]+_|)JQUERY)\b\1)</string>
|
|
1919
1960
|
<key>beginCaptures</key>
|
|
1920
1961
|
<dict>
|
|
1921
1962
|
<key>0</key>
|
|
@@ -1924,8 +1965,12 @@
|
|
|
1924
1965
|
<string>punctuation.definition.string.begin.ruby</string>
|
|
1925
1966
|
</dict>
|
|
1926
1967
|
</dict>
|
|
1968
|
+
<key>comment</key>
|
|
1969
|
+
<string>heredoc with embedded javascript and intented terminator</string>
|
|
1970
|
+
<key>contentName</key>
|
|
1971
|
+
<string>text.js.jquery.embedded.ruby</string>
|
|
1927
1972
|
<key>end</key>
|
|
1928
|
-
<string
|
|
1973
|
+
<string>\s*\2$</string>
|
|
1929
1974
|
<key>endCaptures</key>
|
|
1930
1975
|
<dict>
|
|
1931
1976
|
<key>0</key>
|
|
@@ -1935,7 +1980,7 @@
|
|
|
1935
1980
|
</dict>
|
|
1936
1981
|
</dict>
|
|
1937
1982
|
<key>name</key>
|
|
1938
|
-
<string>string.unquoted.embedded.
|
|
1983
|
+
<string>string.unquoted.embedded.js.jquery.ruby</string>
|
|
1939
1984
|
<key>patterns</key>
|
|
1940
1985
|
<array>
|
|
1941
1986
|
<dict>
|
|
@@ -1944,7 +1989,7 @@
|
|
|
1944
1989
|
</dict>
|
|
1945
1990
|
<dict>
|
|
1946
1991
|
<key>include</key>
|
|
1947
|
-
<string>source.
|
|
1992
|
+
<string>source.js.jquery</string>
|
|
1948
1993
|
</dict>
|
|
1949
1994
|
<dict>
|
|
1950
1995
|
<key>include</key>
|
|
@@ -1958,7 +2003,7 @@
|
|
|
1958
2003
|
</dict>
|
|
1959
2004
|
<dict>
|
|
1960
2005
|
<key>begin</key>
|
|
1961
|
-
<string>(?>
|
|
2006
|
+
<string>(?><<-("?)((?:[_\w]+_|)(?:SH|SHELL))\b\1)</string>
|
|
1962
2007
|
<key>beginCaptures</key>
|
|
1963
2008
|
<dict>
|
|
1964
2009
|
<key>0</key>
|
|
@@ -1967,8 +2012,12 @@
|
|
|
1967
2012
|
<string>punctuation.definition.string.begin.ruby</string>
|
|
1968
2013
|
</dict>
|
|
1969
2014
|
</dict>
|
|
2015
|
+
<key>comment</key>
|
|
2016
|
+
<string>heredoc with embedded shell and intented terminator</string>
|
|
2017
|
+
<key>contentName</key>
|
|
2018
|
+
<string>text.shell.embedded.ruby</string>
|
|
1970
2019
|
<key>end</key>
|
|
1971
|
-
<string
|
|
2020
|
+
<string>\s*\2$</string>
|
|
1972
2021
|
<key>endCaptures</key>
|
|
1973
2022
|
<dict>
|
|
1974
2023
|
<key>0</key>
|
|
@@ -1978,7 +2027,7 @@
|
|
|
1978
2027
|
</dict>
|
|
1979
2028
|
</dict>
|
|
1980
2029
|
<key>name</key>
|
|
1981
|
-
<string>string.unquoted.embedded.
|
|
2030
|
+
<string>string.unquoted.embedded.shell.ruby</string>
|
|
1982
2031
|
<key>patterns</key>
|
|
1983
2032
|
<array>
|
|
1984
2033
|
<dict>
|
|
@@ -1987,7 +2036,7 @@
|
|
|
1987
2036
|
</dict>
|
|
1988
2037
|
<dict>
|
|
1989
2038
|
<key>include</key>
|
|
1990
|
-
<string>source.
|
|
2039
|
+
<string>source.shell</string>
|
|
1991
2040
|
</dict>
|
|
1992
2041
|
<dict>
|
|
1993
2042
|
<key>include</key>
|
|
@@ -2001,7 +2050,7 @@
|
|
|
2001
2050
|
</dict>
|
|
2002
2051
|
<dict>
|
|
2003
2052
|
<key>begin</key>
|
|
2004
|
-
<string>(?>
|
|
2053
|
+
<string>(?><<-("?)((?:[_\w]+_|)RUBY)\b\1)</string>
|
|
2005
2054
|
<key>beginCaptures</key>
|
|
2006
2055
|
<dict>
|
|
2007
2056
|
<key>0</key>
|
|
@@ -2010,8 +2059,12 @@
|
|
|
2010
2059
|
<string>punctuation.definition.string.begin.ruby</string>
|
|
2011
2060
|
</dict>
|
|
2012
2061
|
</dict>
|
|
2062
|
+
<key>comment</key>
|
|
2063
|
+
<string>heredoc with embedded ruby and intented terminator</string>
|
|
2064
|
+
<key>contentName</key>
|
|
2065
|
+
<string>text.ruby.embedded.ruby</string>
|
|
2013
2066
|
<key>end</key>
|
|
2014
|
-
<string
|
|
2067
|
+
<string>\s*\2$</string>
|
|
2015
2068
|
<key>endCaptures</key>
|
|
2016
2069
|
<dict>
|
|
2017
2070
|
<key>0</key>
|
|
@@ -2021,7 +2074,7 @@
|
|
|
2021
2074
|
</dict>
|
|
2022
2075
|
</dict>
|
|
2023
2076
|
<key>name</key>
|
|
2024
|
-
<string>string.unquoted.embedded.
|
|
2077
|
+
<string>string.unquoted.embedded.ruby.ruby</string>
|
|
2025
2078
|
<key>patterns</key>
|
|
2026
2079
|
<array>
|
|
2027
2080
|
<dict>
|
|
@@ -2030,7 +2083,7 @@
|
|
|
2030
2083
|
</dict>
|
|
2031
2084
|
<dict>
|
|
2032
2085
|
<key>include</key>
|
|
2033
|
-
<string>source.
|
|
2086
|
+
<string>source.ruby</string>
|
|
2034
2087
|
</dict>
|
|
2035
2088
|
<dict>
|
|
2036
2089
|
<key>include</key>
|
|
@@ -2044,7 +2097,7 @@
|
|
|
2044
2097
|
</dict>
|
|
2045
2098
|
<dict>
|
|
2046
2099
|
<key>begin</key>
|
|
2047
|
-
<string>(?>\=\s*<<(\w+))
|
|
2100
|
+
<string>(?>\=\s*<<(\w+))</string>
|
|
2048
2101
|
<key>beginCaptures</key>
|
|
2049
2102
|
<dict>
|
|
2050
2103
|
<key>0</key>
|
|
@@ -2064,7 +2117,7 @@
|
|
|
2064
2117
|
</dict>
|
|
2065
2118
|
</dict>
|
|
2066
2119
|
<key>name</key>
|
|
2067
|
-
<string>string.unquoted.
|
|
2120
|
+
<string>string.unquoted.heredoc.ruby</string>
|
|
2068
2121
|
<key>patterns</key>
|
|
2069
2122
|
<array>
|
|
2070
2123
|
<dict>
|
|
@@ -2073,7 +2126,44 @@
|
|
|
2073
2126
|
</dict>
|
|
2074
2127
|
<dict>
|
|
2075
2128
|
<key>include</key>
|
|
2076
|
-
<string
|
|
2129
|
+
<string>#interpolated_ruby</string>
|
|
2130
|
+
</dict>
|
|
2131
|
+
<dict>
|
|
2132
|
+
<key>include</key>
|
|
2133
|
+
<string>#escaped_char</string>
|
|
2134
|
+
</dict>
|
|
2135
|
+
</array>
|
|
2136
|
+
</dict>
|
|
2137
|
+
<dict>
|
|
2138
|
+
<key>begin</key>
|
|
2139
|
+
<string>(?><<-(\w+))</string>
|
|
2140
|
+
<key>beginCaptures</key>
|
|
2141
|
+
<dict>
|
|
2142
|
+
<key>0</key>
|
|
2143
|
+
<dict>
|
|
2144
|
+
<key>name</key>
|
|
2145
|
+
<string>punctuation.definition.string.begin.ruby</string>
|
|
2146
|
+
</dict>
|
|
2147
|
+
</dict>
|
|
2148
|
+
<key>comment</key>
|
|
2149
|
+
<string>heredoc with indented terminator</string>
|
|
2150
|
+
<key>end</key>
|
|
2151
|
+
<string>\s*\1$</string>
|
|
2152
|
+
<key>endCaptures</key>
|
|
2153
|
+
<dict>
|
|
2154
|
+
<key>0</key>
|
|
2155
|
+
<dict>
|
|
2156
|
+
<key>name</key>
|
|
2157
|
+
<string>punctuation.definition.string.end.ruby</string>
|
|
2158
|
+
</dict>
|
|
2159
|
+
</dict>
|
|
2160
|
+
<key>name</key>
|
|
2161
|
+
<string>string.unquoted.heredoc.ruby</string>
|
|
2162
|
+
<key>patterns</key>
|
|
2163
|
+
<array>
|
|
2164
|
+
<dict>
|
|
2165
|
+
<key>include</key>
|
|
2166
|
+
<string>#heredoc</string>
|
|
2077
2167
|
</dict>
|
|
2078
2168
|
<dict>
|
|
2079
2169
|
<key>include</key>
|
|
@@ -2122,7 +2212,7 @@
|
|
|
2122
2212
|
</dict>
|
|
2123
2213
|
<dict>
|
|
2124
2214
|
<key>match</key>
|
|
2125
|
-
<string><<=|%=|&=|\*=|\*\*=|\+=|\-=|\^=|\|{1,2}
|
|
2215
|
+
<string><<=|%=|&=|\*=|\*\*=|\+=|\-=|\^=|\|{1,2}=|<<</string>
|
|
2126
2216
|
<key>name</key>
|
|
2127
2217
|
<string>keyword.operator.assignment.augmented.ruby</string>
|
|
2128
2218
|
</dict>
|