Skip to content

Commit

Permalink
created the basics for developing the gem
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed Nov 14, 2009
1 parent ecf2602 commit 6c9e478
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.gem
.gemspec
pkg/*
21 changes: 21 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# capcake

Looking to deploy a CakePHP application you've built? Capcake extends Capistrano, removing the `rails-ism`, replacing them by more `cake-ish` ones.

## Installation

# gem install capcake -s http://gemcutter.org

## Usage

Prepend your config/deploy.rb with the following lines:
require 'rubygems'
require 'capcake'

You should then be able to proceed as you would usually. To familiarise yourself with the now modified list of tasks, you can get a full list with:

$ cap -T

## Bugs & Feedback

http://github.com/jadb
19 changes: 19 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require 'rubygems'
require 'rake'

begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "capcake"
gem.summary = ""
gem.description = ""
gem.email = "jad@wdtmedia.net"
gem.homepage = ""
gem.author = "Jad Bitar"
gem.add_dependency "capistrano", ">= 2.5"
gem.files = FileList["lib/**/*"].to_a
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
Empty file added lib/capcake.rb
Empty file.

0 comments on commit 6c9e478

Please sign in to comment.