teamocil/lib/teamocil.rb
Rémi Prévost 514a13a35d Add support for filters
In your layout files, you can now use the "filters" key in window items,
like so:

    windows:
      - name: my-new-window
        root: ~/Code/foo
        filters:
          before: "sudo bash"
          after:
            - "echo 'Let’s use use ruby-1.9.2 for eachs plit'"
            - "rvm use 1.9.2"
        splits:
          [splits list]
2011-10-07 22:03:51 -04:00

6 lines
114 B
Ruby

module Teamocil
VERSION = '0.1.10'
autoload :Layout, "teamocil/layout"
autoload :CLI, "teamocil/cli"
end