class Jisota::Server
Attributes
host[RW]
key[RW]
roles[RW]
user[RW]
Public Class Methods
new(host = nil, options = {})
click to toggle source
# File lib/jisota/server.rb, line 5 def initialize(host = nil, options = {}) @roles = [] @host = host @user = options[:user] @roles = Array(options[:roles]) if options[:roles] @key = options[:key] end