nodex 0.0.4 → 0.0.5
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/bin/{nodex.rb → nodex} +0 -0
- data/lib/nodex/version.rb +1 -1
- data/nodex.gemspec +2 -0
- metadata +15 -5
data/bin/{nodex.rb → nodex}
RENAMED
|
File without changes
|
data/lib/nodex/version.rb
CHANGED
data/nodex.gemspec
CHANGED
|
@@ -12,6 +12,8 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.summary = %q{Easy way to deploy}
|
|
13
13
|
s.description = %q{Easy way to deploy a rails app (minimalist version of inploy)}
|
|
14
14
|
|
|
15
|
+
s.add_development_dependency "rspec"
|
|
16
|
+
|
|
15
17
|
s.rubyforge_project = "nodex"
|
|
16
18
|
|
|
17
19
|
s.files = `git ls-files`.split("\n")
|
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.5
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Bruno S. Barros
|
|
@@ -12,13 +12,23 @@ cert_chain: []
|
|
|
12
12
|
|
|
13
13
|
date: 2011-03-06 00:00:00 -03:00
|
|
14
14
|
default_executable:
|
|
15
|
-
dependencies:
|
|
16
|
-
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: rspec
|
|
18
|
+
prerelease: false
|
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
20
|
+
none: false
|
|
21
|
+
requirements:
|
|
22
|
+
- - ">="
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: "0"
|
|
25
|
+
type: :development
|
|
26
|
+
version_requirements: *id001
|
|
17
27
|
description: Easy way to deploy a rails app (minimalist version of inploy)
|
|
18
28
|
email:
|
|
19
29
|
- bkether@gmail.com
|
|
20
30
|
executables:
|
|
21
|
-
- nodex
|
|
31
|
+
- nodex
|
|
22
32
|
extensions: []
|
|
23
33
|
|
|
24
34
|
extra_rdoc_files: []
|
|
@@ -28,7 +38,7 @@ files:
|
|
|
28
38
|
- Gemfile
|
|
29
39
|
- README.textile
|
|
30
40
|
- Rakefile
|
|
31
|
-
- bin/nodex
|
|
41
|
+
- bin/nodex
|
|
32
42
|
- lib/nodex.rb
|
|
33
43
|
- lib/nodex/cli.rb
|
|
34
44
|
- lib/nodex/deploy.rb
|