Sha256: c31999e27e2181eed4d41723b515a4b3b89628bce62c6c1df8358dcc59ac2d0c
Contents?: true
Size: 619 Bytes
Versions: 7
Compression:
Stored size: 619 Bytes
Contents
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..', '..', 'lib') $:.unshift File.join(File.dirname(__FILE__), '..', '..', '..', '..') require 'connfu' require 'examples/provisioning/setup' ARGV.length < 2 and ( puts "Please include as argument the api_key and channel to be used" exit ) api_key = ARGV.shift channel = ARGV.shift number = ARGV.shift application = Connfu::Provisioning::Application.new(api_key, CONNFU_ENDPOINT) begin puts application.delete_whitelist(channel, number) rescue Exception => ex puts "There was an error:" puts "Exception message: #{ex.message}" end
Version data entries
7 entries across 7 versions & 1 rubygems