Skip to content

Commit

Permalink
deprec-2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mbailey committed Jul 14, 2011
1 parent 10ace4b commit 899c8e3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 15 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# deprec changelog

= 2.2.1 (Jul 10, 2011)
= 2.2.1 (Jul 15, 2011)

* deprec now provides rake tasks

Just add this to your Rakefile

require 'deprec/rake'

= 2.2.0 (Jul 10, 2011)

* First release since rewrite of http://deprec.org
* Tidy up of various recipes
Expand Down
2 changes: 1 addition & 1 deletion deprec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require 'rubygems'

SPEC = Gem::Specification.new do |s|
s.name = 'deprec'
s.version = '2.2.0'
s.version = '2.2.1'

s.authors = ['Mike Bailey']
s.description = <<-EOF
Expand Down
32 changes: 19 additions & 13 deletions docs/README.rails
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
deprec: Install Ruby on Rails app on fresh Ubuntu 7.10 (gutsy), 8.04 (hardy)
============================================================================
Install Ruby on Rails app with deprec
=====================================

* Quickstart
The rack recipes should work with any rack app.

cd your_rails_app
depify .
# Edit config/deploy.rb
cap deprec:rails:install_stack
*Quickstart*

# WARNING! Don't run the following command if you are using a shared
# database server that has already been installed.
cap deprec:db:install
$ cap deprec:rack:install_stack

cap deploy:setup
cap deploy
cap deploy:migrate
$ cd your_rails_app
$ depify .
# Edit config/deploy.rb and config/deploy/uat.rb

# WARNING! Don't run the following command if you are using a shared
# database server that has already been installed.
$ cap deprec:db:install

$ cap deploy:setup HOSTS=mbailey@uat

$ cap deprec:rack:config HOSTS=mbailey@uat

# ssh to git@github.com from uat and accept hostkey
$ cap deploy

0 comments on commit 899c8e3

Please sign in to comment.