adding gem stuff

This commit is contained in:
Jeff Lindsay 2010-05-08 20:47:19 -07:00
parent 9faa31dd23
commit c553ccb879
2 changed files with 19 additions and 0 deletions

5
Manifest Normal file
View File

@ -0,0 +1,5 @@
README
Rakefile
bin/localtunnel
server.py
Manifest

14
Rakefile Normal file
View File

@ -0,0 +1,14 @@
require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('localtunnel', '0.1') do |p|
p.description = "instant reverse tunnel for local web servers"
p.url = "http://github.com/progrium/localtunnel"
p.author = "Jeff Lindsay"
p.email = "jeff.lindsay@twilio.com"
p.ignore_pattern = ["tmp/*", "script/*"]
p.executable_pattern = ["bin/*"]
p.runtime_dependencies = ["json >=1.2.4", "httpclient >=2.1.5.2", "net-ssh >=2.0.22", "net-ssh-gateway >=1.0.1"]
p.development_dependencies = []
end