initial commit
This commit is contained in:
commit
afbdee688a
|
@ -0,0 +1,2 @@
|
|||
.bundle/*
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>screenie</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>com.aptana.ruby.core.rubynature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,3 @@
|
|||
module Screenie
|
||||
|
||||
end
|
|
@ -0,0 +1,3 @@
|
|||
module Screenie
|
||||
VERSION = '0.0.1'
|
||||
end
|
|
@ -0,0 +1,24 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
require File.expand_path("../lib/screenie/version", __FILE__)
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "screenie"
|
||||
s.version = Screenie::VERSION
|
||||
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
|
Loading…
Reference in New Issue