Skip to content

Commit

Permalink
Added gem dependency on sprinkle 0.2.1 due to usage of new text insta…
Browse files Browse the repository at this point in the history
…ller
  • Loading branch information
benschwarz committed Mar 10, 2009
1 parent 2a2b02e commit ae3b948
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/deploy.rb.example
Expand Up @@ -2,4 +2,6 @@
role :app, "your-app-server.com" role :app, "your-app-server.com"


# Fill user in - if remote user is different to your local user # Fill user in - if remote user is different to your local user
# set :user, "username" # set :user, "username"


8 changes: 8 additions & 0 deletions config/install.rb
Expand Up @@ -38,4 +38,12 @@
archives '/usr/local/sources' archives '/usr/local/sources'
builds '/usr/local/build' builds '/usr/local/build'
end end
end

# Depend on a specific version of sprinkle
begin
gem 'sprinkle', ">= 0.2.1"
rescue Gem::LoadError
puts "sprinkle 0.2.1 required.\n Run: `sudo gem install sprinkle`"
exit
end end

0 comments on commit ae3b948

Please sign in to comment.