nodex 0.0.3 → 0.0.4

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.
@@ -0,0 +1,45 @@
1
+ h2. ABOUT:
2
+
3
+
4
+ h2. INSTALLATION:
5
+
6
+
7
+ h2. USAGE
8
+
9
+
10
+ h2. CONFIGURATION
11
+
12
+
13
+ h2. SKIP STEPS
14
+
15
+
16
+ h2. HOOKS
17
+
18
+
19
+ h2. CONTRIBUTORS:
20
+
21
+
22
+ h2. LICENSE:
23
+
24
+ (The MIT License)
25
+
26
+ Copyright (c) 2010
27
+
28
+ Permission is hereby granted, free of charge, to any person obtaining
29
+ a copy of this software and associated documentation files (the
30
+ 'Software'), to deal in the Software without restriction, including
31
+ without limitation the rights to use, copy, modify, merge, publish,
32
+ distribute, sublicense, and/or sell copies of the Software, and to
33
+ permit persons to whom the Software is furnished to do so, subject to
34
+ the following conditions:
35
+
36
+ The above copyright notice and this permission notice shall be
37
+ included in all copies or substantial portions of the Software.
38
+
39
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
40
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
42
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
43
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
44
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
45
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,11 @@
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
File without changes
@@ -1,3 +1,3 @@
1
1
  module Nodex
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -0,0 +1,16 @@
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
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: nodex
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bruno S. Barros
@@ -26,18 +26,20 @@ extra_rdoc_files: []
26
26
  files:
27
27
  - .gitignore
28
28
  - Gemfile
29
- - README
29
+ - README.textile
30
30
  - Rakefile
31
31
  - bin/nodex.rb
32
+ - lib/nodex.rb
32
33
  - lib/nodex/cli.rb
33
34
  - lib/nodex/deploy.rb
34
35
  - lib/nodex/dsl.rb
35
36
  - lib/nodex/helper.rb
37
+ - lib/nodex/servers/mongrel.rb
38
+ - lib/nodex/servers/passenger.rb
39
+ - lib/nodex/servers/thin.rb
40
+ - lib/nodex/servers/unicorn.rb
36
41
  - lib/nodex/version.rb
37
- - lib/servers/mongrel.rb
38
- - lib/servers/passenger.rb
39
- - lib/servers/thin.rb
40
- - lib/servers/unicorn.rb
42
+ - lib/tasks/nodex.rake
41
43
  - nodex.gemspec
42
44
  has_rdoc: true
43
45
  homepage: http://bkether.blogspot.com
data/README DELETED
File without changes