Sha256: 983081e0b861ce25d9f9b5a171cc3f7cb125d9e307ecaefda254b3651d66f8b3

Contents?: true

Size: 1.66 KB

Versions: 55

Compression:

Stored size: 1.66 KB

Contents

# The MIT License (MIT)

# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.

# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:

# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

# frozen_string_literal: true

require_relative '../../command'
require_relative '../../modules/user'

module Gzr
  module Commands
    class User
      class Delete < Gzr::Command
        include Gzr::User
        def initialize(user_id,options)
          super()
          @user_id = user_id
          @options = options
        end

        def execute(input: $stdin, output: $stdout)
          say_warning(@options) if @options[:debug]
          with_session do
            data = delete_user(@user_id)
          end
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
gazer-0.3.10 lib/gzr/commands/user/delete.rb
gazer-0.3.9 lib/gzr/commands/user/delete.rb
gazer-0.3.8 lib/gzr/commands/user/delete.rb
gazer-0.3.7 lib/gzr/commands/user/delete.rb
gazer-0.3.6 lib/gzr/commands/user/delete.rb
gazer-0.3.5 lib/gzr/commands/user/delete.rb
gazer-0.3.4 lib/gzr/commands/user/delete.rb
gazer-0.3.3 lib/gzr/commands/user/delete.rb
gazer-0.3.2 lib/gzr/commands/user/delete.rb
gazer-0.3.1 lib/gzr/commands/user/delete.rb
gazer-0.3.0 lib/gzr/commands/user/delete.rb
gazer-0.2.60 lib/gzr/commands/user/delete.rb
gazer-0.2.59 lib/gzr/commands/user/delete.rb
gazer-0.2.58 lib/gzr/commands/user/delete.rb
gazer-0.2.56 lib/gzr/commands/user/delete.rb
gazer-0.2.54 lib/gzr/commands/user/delete.rb
gazer-0.2.53 lib/gzr/commands/user/delete.rb
gazer-0.2.50 lib/gzr/commands/user/delete.rb
gazer-0.2.48 lib/gzr/commands/user/delete.rb
gazer-0.2.47 lib/gzr/commands/user/delete.rb