eycap 0.5.1 → 0.5.2
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/History.txt +3 -0
- data/lib/eycap.rb +1 -1
- data/lib/eycap/recipes/slice.rb +3 -3
- metadata +9 -9
data/History.txt
CHANGED
data/lib/eycap.rb
CHANGED
data/lib/eycap/recipes/slice.rb
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Capistrano::Configuration.instance(:must_exist).load do
|
|
2
2
|
|
|
3
3
|
namespace :slice do
|
|
4
|
-
desc "Tail the Rails
|
|
5
|
-
task :
|
|
4
|
+
desc "Tail the Rails logs for your environment"
|
|
5
|
+
task :tail_environment_logs, :roles => :app do
|
|
6
6
|
run "tail -f #{shared_path}/log/#{rails_env}.log" do |channel, stream, data|
|
|
7
7
|
puts # for an extra line break before the host name
|
|
8
8
|
puts "#{channel[:server]} -> #{data}"
|
|
9
9
|
break if stream == :err
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
|
-
desc "Tail the Mongrel logs
|
|
12
|
+
desc "Tail the Mongrel logs for your environment"
|
|
13
13
|
task :tail_mongrel_logs, :roles => :app do
|
|
14
14
|
run "tail -f #{shared_path}/log/mongrel*.log" do |channel, stream, data|
|
|
15
15
|
puts # for an extra line break before the host name
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eycap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Engine Yard
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-12-17 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -24,15 +24,15 @@ dependencies:
|
|
|
24
24
|
version:
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: hoe
|
|
27
|
-
type: :
|
|
27
|
+
type: :development
|
|
28
28
|
version_requirement:
|
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 2.4.0
|
|
34
34
|
version:
|
|
35
|
-
description: A bunch of useful recipes to help deployment to
|
|
35
|
+
description: A bunch of useful recipes to help deployment to Engine Yard private cloud slices
|
|
36
36
|
email: appsupport@engineyard.com
|
|
37
37
|
executables: []
|
|
38
38
|
|
|
@@ -55,6 +55,7 @@ files:
|
|
|
55
55
|
- lib/eycap/recipes.rb
|
|
56
56
|
- lib/eycap/recipes/backgroundrb.rb
|
|
57
57
|
- lib/eycap/recipes/database.rb
|
|
58
|
+
- lib/eycap/recipes/bundler.rb
|
|
58
59
|
- lib/eycap/recipes/deploy.rb
|
|
59
60
|
- lib/eycap/recipes/ferret.rb
|
|
60
61
|
- lib/eycap/recipes/juggernaut.rb
|
|
@@ -62,14 +63,13 @@ files:
|
|
|
62
63
|
- lib/eycap/recipes/mongrel.rb
|
|
63
64
|
- lib/eycap/recipes/monit.rb
|
|
64
65
|
- lib/eycap/recipes/nginx.rb
|
|
65
|
-
- lib/eycap/recipes/passenger.rb
|
|
66
66
|
- lib/eycap/recipes/slice.rb
|
|
67
67
|
- lib/eycap/recipes/solr.rb
|
|
68
68
|
- lib/eycap/recipes/sphinx.rb
|
|
69
69
|
- lib/eycap/recipes/templates/maintenance.rhtml
|
|
70
70
|
- lib/eycap/recipes/tomcat.rb
|
|
71
|
+
- lib/eycap/recipes/passenger.rb
|
|
71
72
|
- lib/eycap/recipes/apache.rb
|
|
72
|
-
- lib/eycap/recipes/bundler.rb
|
|
73
73
|
- test/test_eycap.rb
|
|
74
74
|
- test/test_helper.rb
|
|
75
75
|
has_rdoc: true
|
|
@@ -99,8 +99,8 @@ requirements: []
|
|
|
99
99
|
rubyforge_project: eycap
|
|
100
100
|
rubygems_version: 1.3.5
|
|
101
101
|
signing_key:
|
|
102
|
-
specification_version:
|
|
103
|
-
summary: Capistrano tasks for Engine Yard private cloud
|
|
102
|
+
specification_version: 3
|
|
103
|
+
summary: Capistrano tasks for Engine Yard private cloud slices
|
|
104
104
|
test_files:
|
|
105
105
|
- test/test_eycap.rb
|
|
106
106
|
- test/test_helper.rb
|