2011-10-10 02:42:37 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "teamocil"
|
|
|
|
|
2011-02-05 18:11:38 +00:00
|
|
|
spec = Gem::Specification.new do |s|
|
|
|
|
s.name = "teamocil"
|
2011-10-10 02:42:37 +00:00
|
|
|
s.version = Teamocil::VERSION
|
2011-02-05 18:11:38 +00:00
|
|
|
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."
|
2011-10-08 16:01:58 +00:00
|
|
|
s.files = Dir["lib/**/*.rb", "README.md", "LICENSE", "bin/*", "spec/**/*.rb"]
|
2011-02-05 18:11:38 +00:00
|
|
|
s.require_path = "lib"
|
2011-10-08 15:50:17 +00:00
|
|
|
s.executables << "teamocil"
|
|
|
|
|
2011-10-08 15:59:10 +00:00
|
|
|
s.add_development_dependency("rake")
|
2011-10-08 15:50:17 +00:00
|
|
|
s.add_development_dependency("rspec")
|
2011-10-08 15:59:10 +00:00
|
|
|
s.add_development_dependency("yard")
|
|
|
|
s.add_development_dependency("maruku")
|
2011-10-08 15:50:17 +00:00
|
|
|
|
2011-02-05 18:11:38 +00:00
|
|
|
end
|