Class: RubyMorphbank::Rmb

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyMorphbank.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Rmb

Returns a new instance of Rmb.



24
25
26
27
# File 'lib/rubyMorphbank.rb', line 24

def initialize(options = {}) 
  opt = {
  }.merge!(options)  
end

Instance Attribute Details

#optObject

Returns the value of attribute opt.



22
23
24
# File 'lib/rubyMorphbank.rb', line 22

def opt
  @opt
end

Instance Method Details

#request(options = {}) ⇒ Object



29
30
31
32
33
# File 'lib/rubyMorphbank.rb', line 29

def request(options = {})
  opt = {
  }.merge!(options)
  Request.new(opt)
end