initial commit

This commit is contained in:
John Bintz 2010-12-09 09:19:01 -05:00
commit afbdee688a
9 changed files with 47 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.bundle/*

12
.project Normal file
View File

@ -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>

3
Gemfile Normal file
View File

@ -0,0 +1,3 @@
source :rubygems
gemspec

0
autotest/discover.rb Normal file
View File

3
lib/screenie.rb Normal file
View File

@ -0,0 +1,3 @@
module Screenie
end

3
lib/screenie/version.rb Normal file
View File

@ -0,0 +1,3 @@
module Screenie
VERSION = '0.0.1'
end

24
screenie.gemspec Normal file
View File

@ -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

View File

0
spec/spec_helper.rb Normal file
View File