cartage-remote 1.1 → 2.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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