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.
@@ -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, :skip_steps, :cache_dirs, :db_example_name, :skip_steps
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
@@ -1,3 +1,3 @@
1
1
  module Nodex
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: nodex
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.6
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
@@ -1,11 +0,0 @@
1
- require 'nodex/helper'
2
- require 'nodex/dsl'
3
- require 'nodex/deploy'
4
-
5
- module Nodex
6
- class Railtie < ::Rails::Railtie
7
- rake_tasks do
8
- load 'tasks/nodex.rake'
9
- end
10
- end
11
- end if defined?(Rails) and Rails::VERSION::MAJOR == 3
@@ -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