Sha256: 1407aeb837d12032861e05ae778c1b500a28afd9b89c78f0d05cac1f1143cf34

Contents?: true

Size: 461 Bytes

Versions: 3

Compression:

Stored size: 461 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.new_window(:name => 'doc', :command => "zsh -c 'vim -p *.md'")
tmux.start

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pointrb-0.1.2 script/terminal
pointrb-0.1.1 script/terminal
pointrb-0.1.0 script/terminal