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 CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.5.2 / 2009-12-17
2
+ * renamed task cap slice:tail_production_logs to cap slice:tail_environment_logs
3
+
1
4
  == 0.5.1 / 2009-11-12
2
5
  * using bundler's cache instead of symlinking on each deploy.
3
6
 
data/lib/eycap.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Eycap
2
- VERSION = '0.5.1'
2
+ VERSION = '0.5.2'
3
3
  end
@@ -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 production log for this environment"
5
- task :tail_production_logs, :roles => :app do
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 this environment"
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.1
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-10-07 00:00:00 -06:00
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: :runtime
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: 1.5.1
33
+ version: 2.4.0
34
34
  version:
35
- description: A bunch of useful recipes to help deployment to the Engine Yard private cloud.
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: 2
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