cartage-remote 1.1 → 2.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,22 +0,0 @@
1
- require 'cartage/command'
2
-
3
- class Cartage::Remote::Command < Cartage::Command #:nodoc:
4
- def initialize(cartage)
5
- super(cartage, 'remote')
6
- takes_commands(false)
7
- short_desc('Build a release package and upload to cloud storage.')
8
-
9
- @cartage = cartage
10
- @remote = cartage.remote
11
-
12
- Cartage.common_build_options(options, cartage)
13
- end
14
-
15
- def perform(*)
16
- @remote.build
17
- end
18
-
19
- def with_plugins
20
- %w(remote)
21
- end
22
- end