mirror of
https://github.com/tmuxinator/tmuxinator.git
synced 2026-07-17 21:52:30 -05:00
* Update dependencies * Revert some things * Fix merged files * feat: add stop_all command (#945) * Start implementation * Fix command, add some docs * Sort cli args * Update cli spec * Fix rubocop issues * feat: Add --no-pre-window option to start command Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * chore: Fix coveralls to run from GH actions Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * chore: Bump tmuxinator to v3.3.4 Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * Implement suggestions * Update readme and changelog * Extract, fix rubocop issues * Fix call issue * Fix alignment * Fix tests * Remove alias * Add alias * Add test for alias * Remove alias test * refactor: fix codeclimate complexity Signed-off-by: Andrew Kofink <ajkofink@gmail.com> --------- Signed-off-by: Andrew Kofink <ajkofink@gmail.com> Co-authored-by: Andrew Kofink <ajkofink@gmail.com> * Add changelog * feat: add stop_all command (#945) * Start implementation * Fix command, add some docs * Sort cli args * Update cli spec * Fix rubocop issues * feat: Add --no-pre-window option to start command Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * chore: Fix coveralls to run from GH actions Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * chore: Bump tmuxinator to v3.3.4 Signed-off-by: Andrew Kofink <ajkofink@gmail.com> * Implement suggestions * Update readme and changelog * Extract, fix rubocop issues * Fix call issue * Fix alignment * Fix tests * Remove alias * Add alias * Add test for alias * Remove alias test * refactor: fix codeclimate complexity Signed-off-by: Andrew Kofink <ajkofink@gmail.com> --------- Signed-off-by: Andrew Kofink <ajkofink@gmail.com> Co-authored-by: Andrew Kofink <ajkofink@gmail.com> * Fix double string freeze * Fix PR feedback, failing tests * Add explaining comment * Fix version parse * Update tmuxinator.gemspec Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Remove XDG depedency --------- Signed-off-by: Andrew Kofink <ajkofink@gmail.com> Co-authored-by: Andrew Kofink <ajkofink@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
26 lines
549 B
Ruby
26 lines
549 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "erubi"
|
|
require "fileutils"
|
|
require "shellwords"
|
|
require "thor"
|
|
require "thor/version"
|
|
require "yaml"
|
|
|
|
module Tmuxinator
|
|
end
|
|
|
|
require "tmuxinator/tmux_version"
|
|
require "tmuxinator/util"
|
|
require "tmuxinator/deprecations"
|
|
require "tmuxinator/wemux_support"
|
|
require "tmuxinator/cli"
|
|
require "tmuxinator/config"
|
|
require "tmuxinator/doctor"
|
|
require "tmuxinator/hooks"
|
|
require "tmuxinator/hooks/project"
|
|
require "tmuxinator/pane"
|
|
require "tmuxinator/project"
|
|
require "tmuxinator/window"
|
|
require "tmuxinator/version"
|