traquitana 0.0.15 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -81,11 +81,11 @@ break something.
81
81
 
82
82
  There are some command line options:
83
83
 
84
- -f or --file <file> - specify the config file path
85
- -v or --version - show current version
86
- -c or --cleanup - clean old versions backups stored on the remote host
87
- -v or --verbose - be verbose while running
88
- -t or --target <target> - specify which target will be loaded on the config file
84
+ * -f or --file <file> - specify the config file path
85
+ * -v or --version - show current version
86
+ * -c or --cleanup - clean old versions backups stored on the remote host
87
+ * -v or --verbose - be verbose while running
88
+ * -t or --target <target> - specify which target will be loaded on the config file
89
89
 
90
90
  ## Contributing
91
91
 
data/lib/deployer.rb CHANGED
@@ -2,7 +2,6 @@ module Traquitana
2
2
  class Deployer
3
3
  def initialize(options=nil)
4
4
  @config = Traquitana::Config.instance
5
- @options = @config.password.size>1 ? {:password=>@config.password} : {}
6
5
  @verbose = !options.nil? && options[:verbose]
7
6
  @config.filename = options[:filename] if options[:filename]
8
7
  @config.target = options[:target] if options[:target]
@@ -21,6 +20,7 @@ module Traquitana
21
20
 
22
21
  @config.load
23
22
 
23
+ @options = @config.password.size>1 ? {:password=>@config.password} : {}
24
24
  @server = @config.server.to_s.size>0 ? @config.server : "none"
25
25
  @shell = @config.shell ? "#{@config.shell} " : ""
26
26
  @network = Traquitana::SSH.new(@config.host,@config.user,@options)
@@ -1,3 +1,3 @@
1
1
  module Traquitana
2
- VERSION = "0.0.15"
2
+ VERSION = "0.0.16"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: traquitana
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-05 00:00:00.000000000Z
12
+ date: 2013-01-08 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubyzip
16
- requirement: &70632250 !ruby/object:Gem::Requirement
16
+ requirement: &83769240 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70632250
24
+ version_requirements: *83769240
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: net-ssh
27
- requirement: &70631500 !ruby/object:Gem::Requirement
27
+ requirement: &83768670 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70631500
35
+ version_requirements: *83768670
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: net-scp
38
- requirement: &70628840 !ruby/object:Gem::Requirement
38
+ requirement: &83768370 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70628840
46
+ version_requirements: *83768370
47
47
  description: Simple tool for deploy Rails apps
48
48
  email:
49
49
  - eustaquiorangel@gmail.com