lib/berkshelf/vagrant/action/set_ui.rb in berkshelf-1.1.6 vs lib/berkshelf/vagrant/action/set_ui.rb in berkshelf-1.2.0.rc1
- old
+ new
@@ -1,15 +1,15 @@
module Berkshelf
module Vagrant
module Action
- # @author Jamie Winsor <jamie@vialstudios.com>
+ # @author Jamie Winsor <reset@riotgames.com>
class SetUI
def initialize(app, env)
@app = app
end
def call(env)
- Berkshelf.ui = ::Vagrant::UI::Colored.new("Berkshelf")
+ Berkshelf.ui = ::Vagrant::UI::Colored.new('Berkshelf')
@app.call(env)
end
end
end
end