summaryrefslogtreecommitdiff
path: root/lib/rubygems/install_message.rb
blob: c1979c154941b2628d26cb73c606a01ea05c77c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'rubygems/user_interaction'

##
# A default post-install hook that displays "Successfully installed
# some_gem-1.0"

Gem.post_install do |installer|
  ui = Gem::DefaultUserInteraction.ui
  ui.say "Successfully installed #{installer.spec.full_name}"
end