capistrano 2.5.12 → 2.5.13
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.
- data/VERSION +1 -1
- data/lib/capistrano/version.rb +1 -1
- data/test/cli_test.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.5.
|
1
|
+
2.5.13
|
data/lib/capistrano/version.rb
CHANGED
data/test/cli_test.rb
CHANGED
@@ -3,14 +3,14 @@ require 'capistrano/cli'
|
|
3
3
|
|
4
4
|
class CLI_Test < Test::Unit::TestCase
|
5
5
|
def test_options_ui_and_help_modules_should_integrate_successfully_with_configuration
|
6
|
-
cli = Capistrano::CLI.parse(%w(-T))
|
6
|
+
cli = Capistrano::CLI.parse(%w(-T -x -X))
|
7
7
|
cli.expects(:puts).at_least_once
|
8
8
|
cli.execute!
|
9
9
|
end
|
10
10
|
|
11
11
|
def test_options_and_execute_modules_should_integrate_successfully_with_configuration
|
12
12
|
path = "#{File.dirname(__FILE__)}/fixtures/cli_integration.rb"
|
13
|
-
cli = Capistrano::CLI.parse(%W(-q -f #{path} testing))
|
13
|
+
cli = Capistrano::CLI.parse(%W(-x -X -q -f #{path} testing))
|
14
14
|
config = cli.execute!
|
15
15
|
assert config[:testing_occurred]
|
16
16
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2010-01-
|
13
|
+
date: 2010-01-06 00:00:00 +00:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|