initial commit
This commit is contained in:
commit
afbdee688a
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.bundle/*
|
||||
|
12
.project
Normal file
12
.project
Normal 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>
|
0
autotest/discover.rb
Normal file
0
autotest/discover.rb
Normal file
3
lib/screenie.rb
Normal file
3
lib/screenie.rb
Normal file
@ -0,0 +1,3 @@
|
||||
module Screenie
|
||||
|
||||
end
|
3
lib/screenie/version.rb
Normal file
3
lib/screenie/version.rb
Normal file
@ -0,0 +1,3 @@
|
||||
module Screenie
|
||||
VERSION = '0.0.1'
|
||||
end
|
24
screenie.gemspec
Normal file
24
screenie.gemspec
Normal 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
|
0
spec/lib/screenie_spec.rb
Normal file
0
spec/lib/screenie_spec.rb
Normal file
0
spec/spec_helper.rb
Normal file
0
spec/spec_helper.rb
Normal file
Loading…
Reference in New Issue
Block a user