forked from mmangino/tunnlr_connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
58 lines (33 loc) · 1.1 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
TunnlrConnector
===============
TunnlrConnector is a plugin to make connecting to the Tunnlr service easy an painless.
It requires the net::ssh v2 plugin. To install, execute
gem install --source http://gems.jamisbuck.org net-ssh
To run autoconfigure, it also requires the highline gem which is installed as part of capistrano.
Installation
============
Rails 2
-------
Add the gem to config/development.rb
config.gem 'tunnlr_connector', :lib => false
And add the following to the end of Rakefile
begin
require 'tunnlr'
Tunnlr.load_tasks if defined?(Tunnlr)
rescue LoadError => loaderror
$stderr.puts %{Couldn't load tunnlr}
end
Rails 3
-------
Add the gem to the development group of your Gemfile
gem 'tunnlr_connector', :require => "tunnlr"
That's it!
Example
=======
To autoconfigure, run
rake tunnlr:configure
and enter the email address and password associated with your tunnlr account.
To create a tunnel, run
rake tunnlr:start
Questions or problems? Contact support@tunnlr.com
Copyright (c) 2008 Elevated Rails, released under the MIT license