nodex 0.0.6 → 0.0.7
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/lib/nodex/deploy.rb +1 -1
- data/lib/nodex/version.rb +1 -1
- metadata +1 -3
- data/lib/nodex.rb +0 -11
- data/lib/tasks/nodex.rake +0 -16
data/lib/nodex/deploy.rb
CHANGED
|
@@ -3,7 +3,7 @@ module Nodex
|
|
|
3
3
|
include Helper
|
|
4
4
|
include DSL
|
|
5
5
|
|
|
6
|
-
attr_accessor :repository, :user, :application, :host, :path, :branch, :environment, :
|
|
6
|
+
attr_accessor :repository, :user, :application, :host, :path, :branch, :environment, :cache_dirs, :db_example_name, :skip_steps
|
|
7
7
|
|
|
8
8
|
def initialize
|
|
9
9
|
self.server = :passenger
|
data/lib/nodex/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: nodex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.7
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Bruno S. Barros
|
|
@@ -39,7 +39,6 @@ files:
|
|
|
39
39
|
- README.textile
|
|
40
40
|
- Rakefile
|
|
41
41
|
- bin/nodex
|
|
42
|
-
- lib/nodex.rb
|
|
43
42
|
- lib/nodex/cli.rb
|
|
44
43
|
- lib/nodex/deploy.rb
|
|
45
44
|
- lib/nodex/dsl.rb
|
|
@@ -49,7 +48,6 @@ files:
|
|
|
49
48
|
- lib/nodex/servers/thin.rb
|
|
50
49
|
- lib/nodex/servers/unicorn.rb
|
|
51
50
|
- lib/nodex/version.rb
|
|
52
|
-
- lib/tasks/nodex.rake
|
|
53
51
|
- nodex.gemspec
|
|
54
52
|
has_rdoc: true
|
|
55
53
|
homepage: http://bkether.blogspot.com
|
data/lib/nodex.rb
DELETED
data/lib/tasks/nodex.rake
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..'))
|
|
2
|
-
require 'nodex'
|
|
3
|
-
|
|
4
|
-
deploy = Nodex::Deploy.new
|
|
5
|
-
|
|
6
|
-
deploy.environment = ENV['environment'] || deploy.environment
|
|
7
|
-
deploy.skip_steps = ENV['skip_steps'].split(',') unless ENV['skip_steps'].nil?
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
namespace :nodex do
|
|
11
|
-
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
namespace :in do
|
|
15
|
-
|
|
16
|
-
end
|