mirror of
https://github.com/tmuxinator/tmuxinator.git
synced 2026-03-09 01:12:24 -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>
55 lines
1.9 KiB
Ruby
55 lines
1.9 KiB
Ruby
# coding: utf-8
|
|
# frozen_string_literal: true
|
|
|
|
lib = File.expand_path("lib", __dir__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require "tmuxinator/version"
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "tmuxinator"
|
|
s.version = Tmuxinator::VERSION
|
|
s.authors = ["Allen Bargi", "Christopher Chow"]
|
|
s.email = ["allen.bargi@gmail.com", "chris@chowie.net"]
|
|
s.description = %q{Create and manage complex tmux sessions easily.}
|
|
s.summary = %q{Create and manage complex tmux sessions easily.}
|
|
s.homepage = "https://github.com/tmuxinator/tmuxinator"
|
|
s.license = "MIT"
|
|
|
|
s.files = Dir["lib/**/*", "spec/**/*", "bin/*", "completion/*"]
|
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
s.require_paths = ["lib"]
|
|
|
|
s.post_install_message = %q{
|
|
__________________________________________________________
|
|
..........................................................
|
|
|
|
Thank you for installing tmuxinator.
|
|
|
|
Make sure that you've set these variables in your ENV:
|
|
|
|
$EDITOR, $SHELL
|
|
|
|
You can run `tmuxinator doctor` to make sure everything is set.
|
|
Happy tmuxing with tmuxinator!
|
|
|
|
..........................................................
|
|
__________________________________________________________
|
|
}
|
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 2.7")
|
|
s.required_ruby_version = ">= 2.7"
|
|
|
|
s.add_dependency "erubi", "~> 1.13"
|
|
s.add_dependency "thor", "~> 1.4.0"
|
|
|
|
s.add_development_dependency "amazing_print", "~> 1.8"
|
|
s.add_development_dependency "bundler", ">= 1.3"
|
|
s.add_development_dependency "factory_bot", "~> 6.5"
|
|
s.add_development_dependency "pry", "~> 0.15"
|
|
s.add_development_dependency "rake", "~> 13.3"
|
|
s.add_development_dependency "rspec", "~> 3.13"
|
|
s.add_development_dependency "rubocop", "~> 1.79"
|
|
s.add_development_dependency "simplecov", "~> 0.22"
|
|
end
|