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.



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

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

Instance Attribute Details

#optObject

Returns the value of attribute opt.



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

def opt
  @opt
end

Instance Method Details

#request(options = {}) ⇒ Object



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

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