teamocil/teamocil.gemspec
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

14 lines
569 B
Ruby

spec = Gem::Specification.new do |s|
s.name = "teamocil"
s.version = "0.1.10"
s.platform = Gem::Platform::RUBY
s.authors = "Rémi Prévost"
s.email = "remi@exomel.com"
s.homepage = "http://github.com/remiprev/teamocil"
s.summary = "Easy window and split layouts for tmux"
s.description = "Teamocil helps you set up window and splits layouts for tmux using YAML configuration files."
s.files = Dir["lib/**/*.rb", "README.mkd", "LICENSE", "bin/*"]
s.require_path = "lib"
s.executables << 'teamocil'
end