negroku 0.0.7 → 0.0.8
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.
- checksums.yaml +4 -4
- data/lib/negroku/cli.rb +1 -0
- data/lib/negroku/tasks/base.rb +1 -1
- data/lib/negroku/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b69ddf80fbd031f4d87fcd3faea83957e3031243
|
4
|
+
data.tar.gz: 2c248c19d30d8582c8763af01304f39b0c428dbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a55f7ed6eb30dd834ac53e0c235f8404e8edeefbd9c60cc1519925265c2702d1865e678200e7dbf824f9cdeadfed30b2c309fb4a4f32b12fe1bba15d6c9dda2c
|
7
|
+
data.tar.gz: f392454a55464576da4669aae629dd4021b5212472ab79a06ae4f1a412a194b07496685071da33f9b75ef394ee99f91c189a398d214c3dd8b78ed0bb076090bd
|
data/lib/negroku/cli.rb
CHANGED
@@ -13,6 +13,7 @@ class App < Thor
|
|
13
13
|
desc "create", "Create application. Intialize the capfile, also create the deploy.rb file in the config folder"
|
14
14
|
method_option :local_recipes, :type => :boolean, :aliases => "-l"
|
15
15
|
method_option :path, :type => :string, :aliases => "-p"
|
16
|
+
method_option :static, :type => :string, :aliases => "-s"
|
16
17
|
def create(name=nil)
|
17
18
|
# Get configuration
|
18
19
|
config = getConfig
|
data/lib/negroku/tasks/base.rb
CHANGED
@@ -21,7 +21,7 @@ namespace :deploy do
|
|
21
21
|
|
22
22
|
desc "Performs an Active Record migration."
|
23
23
|
task :migrate do
|
24
|
-
run "cd '#{release_path}' && RAILS_ENV=#{rails_env} rake db:migrate"
|
24
|
+
run "cd '#{release_path}' && RAILS_ENV=#{rails_env} bin/rake db:migrate"
|
25
25
|
end
|
26
26
|
|
27
27
|
desc "Sets up additional symlinks after deploy."
|
data/lib/negroku/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: negroku
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Ignacio Donoso
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 0.17.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: railsless-deploy
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.1.1
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.1.1
|
69
83
|
description: '["To deploy application"]'
|
70
84
|
email:
|
71
85
|
- jidonoso@gmail.com
|
@@ -109,8 +123,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
123
|
version: '0'
|
110
124
|
requirements: []
|
111
125
|
rubyforge_project:
|
112
|
-
rubygems_version: 2.0.
|
126
|
+
rubygems_version: 2.0.2
|
113
127
|
signing_key:
|
114
128
|
specification_version: 4
|
115
129
|
summary: '["Capistrano Wrapper"]'
|
116
130
|
test_files: []
|
131
|
+
has_rdoc:
|