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.
- checksums.yaml +4 -4
- data/Contributing.md +68 -0
- data/{History.rdoc → History.md} +11 -0
- data/{Licence.rdoc → Licence.md} +5 -5
- data/Manifest.txt +8 -9
- data/README.rdoc +29 -10
- data/Rakefile +47 -30
- data/lib/cartage/commands/remote.rb +48 -0
- data/lib/cartage/plugins/remote.rb +475 -0
- data/lib/cartage/remote/host.rb +101 -0
- data/test/minitest_config.rb +11 -0
- data/test/test_cartage_remote.rb +110 -0
- metadata +74 -35
- data/.autotest +0 -27
- data/.gemtest +0 -1
- data/.minitest.rb +0 -2
- data/Contributing.rdoc +0 -63
- data/Gemfile +0 -9
- data/lib/cartage/remote.rb +0 -419
- data/lib/cartage/remote/command.rb +0 -22
@@ -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
|