kompanee-recipes 0.1.3 → 0.1.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.
Potentially problematic release.
This version of kompanee-recipes might be problematic. Click here for more details.
- data/lib/kompanee-recipes/heroku.rb +2 -2
- data/lib/kompanee-recipes/ubuntu.rb +2 -2
- metadata +3 -8
@@ -177,12 +177,12 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
177
177
|
namespace :website do
|
178
178
|
desc "Installs the application on Heroku"
|
179
179
|
task :install do
|
180
|
-
`heroku create #{
|
180
|
+
`heroku create #{application}`
|
181
181
|
end
|
182
182
|
|
183
183
|
desc "Completely removes application from Heroku"
|
184
184
|
task :remove do
|
185
|
-
`heroku destroy --confirm #{
|
185
|
+
`heroku destroy --confirm #{application}`
|
186
186
|
end
|
187
187
|
end
|
188
188
|
|
@@ -26,7 +26,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
26
26
|
local_shared_file = "#{shared_file}.#{rails_env}"
|
27
27
|
|
28
28
|
if File.exists?(local_shared_file)
|
29
|
-
top.upload(local_shared_file, "#{shared_path}/#{shared_file}", :mode => "
|
29
|
+
top.upload(local_shared_file, "#{shared_path}/#{shared_file}", :mode => "600")
|
30
30
|
else
|
31
31
|
run "touch #{shared_path}/#{shared_file}"
|
32
32
|
end
|
@@ -227,7 +227,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
227
227
|
Installs the development packages typically required for most deployments.
|
228
228
|
DESC
|
229
229
|
task :install_common do
|
230
|
-
set :dependencies, %w{libcurl4-openssl-dev build-essential debconf-utils libxslt-dev libxml2-dev}
|
230
|
+
set :dependencies, %w{libcurl4-openssl-dev build-essential debconf-utils libxslt-dev libxml2-dev imagemagick}
|
231
231
|
os.package_manager.install
|
232
232
|
end
|
233
233
|
end
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kompanee-recipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 29
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
8
|
+
- 4
|
9
|
+
version: 0.1.4
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- The Kompanee
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-12-
|
17
|
+
date: 2010-12-14 00:00:00 -06:00
|
19
18
|
default_executable:
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
@@ -26,7 +25,6 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
hash: 7
|
30
28
|
segments:
|
31
29
|
- 2
|
32
30
|
- 0
|
@@ -42,7 +40,6 @@ dependencies:
|
|
42
40
|
requirements:
|
43
41
|
- - ">="
|
44
42
|
- !ruby/object:Gem::Version
|
45
|
-
hash: 21
|
46
43
|
segments:
|
47
44
|
- 2
|
48
45
|
- 6
|
@@ -94,7 +91,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
91
|
requirements:
|
95
92
|
- - ">="
|
96
93
|
- !ruby/object:Gem::Version
|
97
|
-
hash: 3
|
98
94
|
segments:
|
99
95
|
- 0
|
100
96
|
version: "0"
|
@@ -103,7 +99,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
99
|
requirements:
|
104
100
|
- - ">="
|
105
101
|
- !ruby/object:Gem::Version
|
106
|
-
hash: 3
|
107
102
|
segments:
|
108
103
|
- 0
|
109
104
|
version: "0"
|