forked from textmate/ruby.tmbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRun.tmCommand
37 lines (37 loc) · 1.02 KB
/
Run.tmCommand
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>autoScrollOutput</key>
<true/>
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby18 -KU
ENV['RUBYLIB'] = "#{ENV['TM_BUNDLE_SUPPORT']}/RubyMate"
require "#{ENV['TM_BUNDLE_SUPPORT']}/RubyMate/run_script.rb"
</string>
<key>input</key>
<string>document</string>
<key>inputFormat</key>
<string>text</string>
<key>keyEquivalent</key>
<string>@r</string>
<key>name</key>
<string>Run</string>
<key>outputCaret</key>
<string>afterOutput</string>
<key>outputFormat</key>
<string>html</string>
<key>outputLocation</key>
<string>newWindow</string>
<key>scope</key>
<string>source.ruby</string>
<key>semanticClass</key>
<string>process.run.script.ruby</string>
<key>uuid</key>
<string>35222962-C50D-4D58-A6AE-71E7AD980BE4</string>
<key>version</key>
<integer>2</integer>
</dict>
</plist>