diff --git a/README.md b/README.md index 999f94f..8f208eb 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ You can also run `penchant gemfile ENV`. Use `no_deployment` blocks to indicate gems that shouldn't even appear in `Gemfiles` destined for remote servers. *Very* helpful when you have OS-specific gems and are developing on one platform -and deploying on another: +and deploying on another, or if you don't want to deal with the dependencies for your testing +frameworks: ``` erb <% no_deployment do %> @@ -59,11 +60,15 @@ and deploying on another: when /linux/ gem 'libnotify', :require => nil end + + group :test do + # ... all your testing libraries you won't need on the deployed end ... + end <% end %> ``` Run `penchant gemfile ENV --deployment` to get this behavior. This is run by default when the -pre-commit git hook runs. +pre-commit git hook runs, but only after the default Rake task passes. ## initialize-environment diff --git a/lib/penchant/version.rb b/lib/penchant/version.rb index 8733841..5654ec5 100644 --- a/lib/penchant/version.rb +++ b/lib/penchant/version.rb @@ -1,3 +1,3 @@ module Penchant - VERSION = "0.0.5" + VERSION = "0.1.0" end