diff options
author | elijah <elijah@riseup.net> | 2014-10-28 11:21:21 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-10-28 11:21:21 -0700 |
commit | dddbaa40ed9abb1031ccdce21c3d6769dbc5b112 (patch) | |
tree | adec8224af0906c291cd7daa63f1dc1c359851fd /lib/leap_cli/remote | |
parent | 8067a244be533aac273725bef70618bae6f557cc (diff) |
autoload some of the external dependencies that are rarely used, so that we don't need to load them every time.
Diffstat (limited to 'lib/leap_cli/remote')
-rw-r--r-- | lib/leap_cli/remote/rsync_plugin.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/remote/rsync_plugin.rb b/lib/leap_cli/remote/rsync_plugin.rb index 48f82d3..a6708f4 100644 --- a/lib/leap_cli/remote/rsync_plugin.rb +++ b/lib/leap_cli/remote/rsync_plugin.rb @@ -3,7 +3,7 @@ # (see RemoteCommand::new_capistrano) # -require 'rsync_command' +autoload :RsyncCommand, 'rsync_command' module LeapCli; module Remote; module RsyncPlugin |