Sha256: b17a342af7bde8f0225957f7377a74366f63e6607aca12751cb1c9df9a284a8b

Contents?: true

Size: 941 Bytes

Versions: 2

Compression:

Stored size: 941 Bytes

Contents

# ~/.tmuxinator/sample.yml
# you can make as many tabs as you wish...

name: sample
root: ~/test
socket_name: foo # Remove to use default socket
pre: sudo /etc/rc.d/mysqld start # Runs before everything
pre_window: rbenv shell 2.0.0-p247 # Runs in each tab and pane
tmux_options: -v -2 # Pass arguments to tmux
windows:
  - editor:
      pre:
        - echo "I get run in each pane, before each pane command!"
        -
      layout: main-vertical
      panes:
        - vim
        - #empty, will just run plain bash
        - top
  - shell: git pull
  - guard:
      layout: tiled
      pre:
        - echo "I get run in each pane."
        - echo "Before each pane command!"
      panes:
        -
        - #empty, will just run plain bash
        -
  - database: bundle exec rails db
  - server: bundle exec rails s
  - logs: tail -f log/development.log
  - console: bundle exec rails c
  - capistrano:
  - server: ssh user@example.com

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tmuxinator-0.6.1 spec/fixtures/sample.yml
tmuxinator-0.6.0 spec/fixtures/sample.yml