Sha256: fa7ac0304910e904c7ea75ca6132ab86e56e32c904ea89d9eb082a9dccf42fcd
Contents?: true
Size: 393 Bytes
Versions: 1
Compression:
Stored size: 393 Bytes
Contents
#!/usr/bin/env ruby require 'tmrb' tmux = TmRb::Multiplexer.new #creates an empty window tmux.new_session(session_name: 'pointrb') tmux.new_window(:name => 'code', :command => "zsh -c 'vim -p lib/**/*.rb'") tmux.new_window(:name => 'spec', :command => "zsh -c 'vim -p spec/**/*.rb'") tmux.new_window(:name => 'features', :command => "zsh -c 'vim -p features/**/*.{rb,feature}'") tmux.start
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pointrb-0.0.1 | script/terminal |