summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2013-02-02 17:41:25 +0100
committerJohn Mair <jrmair@gmail.com>2013-02-02 22:32:00 +0100
commit0229255f5a31bc68f4f297720cc1ef90338e6b44 (patch)
treeda2052800108f562af40536c1d0ec8a279c94aca /Rakefile
parent7c8a849fef142cf354095f79c024cc2b8cfcd568 (diff)
downloadpry-0229255f5a31bc68f4f297720cc1ef90338e6b44.tar.gz
add a few rake task aliases
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index d75dee5e..ad45a207 100644
--- a/Rakefile
+++ b/Rakefile
@@ -123,6 +123,8 @@ task :gems => [:clean, :rmgems, 'ruby:gem', 'mswin32:gem', 'mingw32:gem', 'jruby
desc "remove all platform gems"
task :rmgems => ['ruby:clobber_package']
+task :rm_gems => :rmgems
+task :rm_pkgs => :rmgems
desc "reinstall gem"
task :reinstall => :gems do
@@ -130,6 +132,8 @@ task :reinstall => :gems do
sh "gem install #{File.dirname(__FILE__)}/pkg/pry-#{Pry::VERSION}.gem"
end
+task :install => :reinstall
+
desc "build and push latest gems"
task :pushgems => :gems do
chdir("#{File.dirname(__FILE__)}/pkg") do