rush
rush copied to clipboard
Ruby replacement for bash+ssh
Bumps [git](https://github.com/ruby-git/ruby-git) from 1.2.5 to 1.11.0. Release notes Sourced from git's releases. Release v1.11.0 Full Changelog 292087e Supress unneeded test output (#570) 19dfe5e Add support for fetch options "--force/-f" and...
Bumps [rdoc](https://github.com/ruby/rdoc) from 3.12 to 6.3.2. Changelog Sourced from rdoc's changelog. === 5.1.0 / 2017-02-24 Bug fixes Fix an issue that rdoc fails when running on Windows with RUBYOPT=-U. PR...
Hi, the escaping of passed environment variables applies additional escaping to `"` and `` ` ``: https://github.com/adamwiggins/rush/blob/master/lib/rush/box.rb#L85 E.g. if you escape `` ` `` and `$` already in advance, an...
Bumps [rake](https://github.com/ruby/rake) from 0.9.2.2 to 12.3.3. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 12.3.3 > > ==== Bug fixes > > * Use the application's name in error message if...
Bumps [json](https://github.com/flori/json) from 1.6.5 to 1.8.6. Changelog *Sourced from [json's changelog](https://github.com/flori/json/blob/v1.8.6/CHANGES).* > 2017-01-13 (1.8.6) > * Be compatible with ancient ruby 1.8 (maybe?) > 2015-09-11 (1.8.5) > * Be compatible...
1. Refactor the code 2. Retab 3. Make all specs passed 4. Add some heuristics and aliases And I really want to maintain it. If noone still doing it, may...
I've installed the Debian Jessie repo version of Rush, and it ain't working: ``` $ sudo apt-get install rush Reading package lists... Done Building dependency tree Reading state information... Done...
See #17
Hello Adam, I had to access some servers where sshd is configured to listen to other ports than 22 With this commit you can do remote = Rush::Box.new("example.com:2222") 2 tests...
Currently [`File::create`](/s-mage/rush/tree/59b4ce1fc8e7cda73f8a3d8a1c31c7b79fe6abb4/lib/rush/file.rb#L12-L17) will truncate an existing file. It is an alias for `File::write( '' )`, whereas `Dir::create` will call `FileUtils::mkdir` and thus will throw if the directory already exists. That...