-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautomux.gemspec
More file actions
21 lines (19 loc) · 857 Bytes
/
automux.gemspec
File metadata and controls
21 lines (19 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'automux/version'
require 'automux/installation'
Gem::Specification.new do |gem|
gem.name = 'automux'
gem.version = Automux::Version::STRING
gem.authors = ["Alex Johnson"]
gem.email = ["github.com/notalex"]
gem.description = %[Highly configurable Tmux Automator]
gem.summary = %[Automate tmux sessions stored in yaml files using custom recipes]
gem.homepage = %[https://github.com/notalex/automux]
gem.license = %[MIT License]
gem.files = %x[git ls-files].split($/)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = %w(lib)
gem.post_install_message = Automux::Installation::MESSAGE
end