Method: Frodo::Schema#functions
- Defined in:
- lib/frodo/schema.rb
#functions ⇒ Array<String>
Returns a list of functions defined by the schema.
73 74 75 76 77 |
# File 'lib/frodo/schema.rb', line 73 def functions @functions ||= .xpath('//Function').map do |function| function.attributes['Name'].value end end |