tmuxinator/tmuxinator

View on GitHub
lib/tmuxinator/deprecations.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Tmuxinator
  module Deprecations
    def rvm?
      yaml["rvm"]
    end

    def rbenv?
      yaml["rbenv"]
    end

    def pre_tab?
      yaml["pre_tab"]
    end

    def cli_args?
      yaml["cli_args"]
    end

    def pre?
      yaml["pre"]
    end

    def post?
      yaml["post"]
    end
  end
end