-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
229 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
p { | ||
color: red; | ||
color: red; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
function hell() { | ||
console.log('world'); | ||
console.log('world'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env ruby | ||
|
||
conn_hash = { :hosts => [ | ||
|
||
{:login => login, :passcode => passcode, :host => host, :port => port}, | ||
], | ||
:reliable => false, # Override default | ||
:connect_headers => conn_hdrs, | ||
|
||
} | ||
|
||
|
||
hash = { :hosts => [ | ||
|
||
{:login => user, :passcode => password, :host => 'noonehome', :port => 2525}, | ||
|
||
{:login => user, :passcode => password, :host => host, :port => port}, | ||
|
||
], | ||
|
||
:logger => mylog, # This enables callback logging! | ||
|
||
:max_reconnect_attempts => 5, | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
Requires https://github.com/erniebrodeur/ruby-beautify | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var cliBeautify = require('./cli-beautify'); | ||
|
||
function getCmd(inputPath, outputPath, options) { | ||
var path = options.rbeautify_path; // jshint ignore: line | ||
if (path) { | ||
// Use absolute path | ||
return 'ruby "' + path + '" "' + inputPath + '"'; | ||
} else { | ||
// Use command available in $PATH | ||
return 'rbeautify "' + inputPath + '"'; | ||
} | ||
} | ||
var isStdout = true; | ||
module.exports = cliBeautify(getCmd, isStdout); |
Oops, something went wrong.
FIXME
langauges
should belanguages
.