class SuperShuttle3

Attributes

client_id[RW]
client_key[RW]
token[RW]
vendor[RW]

Public Class Methods

hi() click to toggle source
# File lib/super_shuttle3.rb, line 6
def self.hi
  puts "Hello world! - super shuttle!! \n Vendor = #{@vendor.to_s} \n id : #{@client_id.to_s} \n key : #{@client_key.to_s}"
end
new(id = 'sandbox', key = 'sandbox') click to toggle source
# File lib/super_shuttle3.rb, line 10
def initialize(id = 'sandbox', key = 'sandbox')
  @client_id = id
  @client_key = key
  @vendor = 'ss'
end

Public Instance Methods

generate_token() click to toggle source
# File lib/super_shuttle3.rb, line 20
def generate_token
  
end
new_hi() click to toggle source
# File lib/super_shuttle3.rb, line 16
def new_hi
  puts "Hello world! - super shuttle!! \n Vendor = #{@vendor} \n id : #{@client_id} \n key : #{@client_key}"
end