screenomat/screenomat.gemspec

25 lines
820 B
Ruby
Raw Permalink Normal View History

2010-12-09 14:19:01 +00:00
# -*- encoding: utf-8 -*-
2010-12-09 21:59:12 +00:00
require File.expand_path("../lib/screenomat/version", __FILE__)
2010-12-09 14:19:01 +00:00
Gem::Specification.new do |s|
2010-12-09 21:59:12 +00:00
s.name = "screenomat"
s.version = Screenomat::VERSION
2010-12-09 14:19:01 +00:00
s.platform = Gem::Platform::RUBY
s.authors = []
s.email = []
s.homepage = "http://johnbintz.com/"
s.summary = "DSL for making GNU screen obey your will"
s.description = "DSL for making GNU screen obey your will"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "autotest"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end