Sha256: a3b40faef06c829c843107ed665762d059f18d5e87aa3600c16943e39f7261a1
Contents?: true
Size: 898 Bytes
Versions: 29
Compression:
Stored size: 898 Bytes
Contents
# Copyright 2013 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module VagrantPlugins module Google module Action class MessageNotCreated def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_google.not_created")) @app.call(env) end end end end end
Version data entries
29 entries across 29 versions & 2 rubygems