aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorTim Pope <code@tpope.net>2008-07-13 22:24:16 -0400
committerPratik Naik <pratiknaik@gmail.com>2008-07-14 03:47:22 +0100
commit5c086070824bf7dd2bc4c9ce97956d82ac3fa206 (patch)
tree3e5e524a60f8f3f04e286c04dd51cc7b60f7669c /railties/CHANGELOG
parente0750d6a5c7f621e4ca12205137c0b135cab444a (diff)
downloadrails-5c086070824bf7dd2bc4c9ce97956d82ac3fa206.tar.gz
rails-5c086070824bf7dd2bc4c9ce97956d82ac3fa206.tar.bz2
rails-5c086070824bf7dd2bc4c9ce97956d82ac3fa206.zip
Make script/plugin install <plugin> -r <revision> option work with git based plugins. [#257 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 1b9bdb57f2..b5c5aba460 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,10 @@
*Edge*
+* Make script/plugin install <plugin> -r <revision> option work with git based plugins. #257. [Tim Pope Jakub Kuźma]. Example:
+
+ script/plugin install git://github.com/mislav/will_paginate.git -r agnostic # Installs 'agnostic' branch
+ script/plugin install git://github.com/dchelimsky/rspec.git -r 'tag 1.1.4'
+
* Added Rails.initialized? flag [Josh Peek]
* Make rake test:uncommitted work with Git. [Tim Pope]