eycap 0.4.16 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +3 -0
  2. data/README.txt +8 -7
  3. data/Rakefile +4 -4
  4. data/lib/eycap.rb +1 -1
  5. metadata +5 -5
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.5.0 / 2009-10-07
2
+ * moved from github to gemcutter for hosting.
3
+
1
4
  == 0.4.16 / 2009-09-30
2
5
  * apps ping weather app before and after each deploy
3
6
 
data/README.txt CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == DESCRIPTION:
4
4
 
5
- Engine Yard capistrano tasks for use specifically with Engine Yard slices. They include convenience methods for managed a database, mongrel, nginx or other services.
5
+ Engine Yard capistrano tasks for use specifically with Engine Yard private cloud slices. They include convenience methods for managed a database, mongrel, nginx or other services.
6
6
 
7
7
  Also included is a deployment strategy, :filtered_remote_cache, which speeds up deployment like :remote_cache, but filters out .svn directory which are a security risk and write slowly to shared disks.
8
8
 
@@ -14,8 +14,9 @@ Also included is a deployment strategy, :filtered_remote_cache, which speeds up
14
14
 
15
15
  == INSTALL:
16
16
 
17
- $ gem sources -a http://gems.github.com/ (you only need to do this once)
18
- $ gem install engineyard-eycap
17
+ $ gem install gemcutter # installs the gemcutter gem
18
+ $ gem tumble # puts gemcutter as your top source
19
+ $ gem install eycap # installs the latest eycap version
19
20
 
20
21
  == SOURCE:
21
22
 
@@ -29,13 +30,13 @@ and cloned from:
29
30
 
30
31
  == USAGE:
31
32
 
32
- = Include in capistrano
33
+ === Include in capistrano
33
34
 
34
35
  In your deploy.rb, simply include this line at the top:
35
36
 
36
37
  require 'eycap/recipes'
37
38
 
38
- = Filtered remote cache
39
+ === Filtered remote cache
39
40
 
40
41
  To use filtered_remote_cache, simply:
41
42
 
@@ -43,7 +44,7 @@ set :deploy_via, :filtered_remote_cache
43
44
 
44
45
  == LICENSE:
45
46
 
46
- Copyright (c) 2008 Engine Yard
47
+ Copyright (c) 2008-2009 Engine Yard
47
48
 
48
49
  Permission is hereby granted, free of charge, to any person obtaining
49
50
  a copy of this software and associated documentation files (the
@@ -62,4 +63,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
62
63
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
63
64
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
64
65
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
65
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
66
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -4,10 +4,10 @@ require './lib/eycap'
4
4
 
5
5
  Hoe.new('eycap', Eycap::VERSION) do |p|
6
6
  p.author = 'Engine Yard'
7
- p.email = 'tech@engineyard.com'
8
- p.summary = 'Capistrano tasks for Engine Yard slices'
9
- p.description = 'A bunch of useful recipes to help deployment to Engine Yard slices'
10
- p.url = 'http://github.com/engineyard/eycap/tree/master'
7
+ p.email = 'appsupport@engineyard.com'
8
+ p.summary = 'Capistrano tasks for Engine Yard private cloud slices'
9
+ p.description = 'A bunch of useful recipes to help deployment to Engine Yard private cloud slices'
10
+ p.url = 'http://github.com/engineyard/eycap'
11
11
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
12
12
  p.extra_deps << ['capistrano', '>= 2.2.0']
13
13
  end
data/lib/eycap.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Eycap
2
- VERSION = '0.4.16'
2
+ VERSION = '0.5.0'
3
3
  end
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.4.16
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Engine Yard
@@ -32,8 +32,8 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: 2.3.3
34
34
  version:
35
- description: A bunch of useful recipes to help deployment to Engine Yard slices
36
- email: tech@engineyard.com
35
+ description: A bunch of useful recipes to help deployment to Engine Yard private cloud slices
36
+ email: appsupport@engineyard.com
37
37
  executables: []
38
38
 
39
39
  extensions: []
@@ -73,7 +73,7 @@ files:
73
73
  - test/test_eycap.rb
74
74
  - test/test_helper.rb
75
75
  has_rdoc: true
76
- homepage: http://github.com/engineyard/eycap/tree/master
76
+ homepage: http://github.com/engineyard/eycap
77
77
  licenses: []
78
78
 
79
79
  post_install_message:
@@ -100,7 +100,7 @@ rubyforge_project: eycap
100
100
  rubygems_version: 1.3.5
101
101
  signing_key:
102
102
  specification_version: 3
103
- summary: Capistrano tasks for Engine Yard slices
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