Method: Frodo::Schema#actions
- Defined in:
- lib/frodo/schema.rb
#actions ⇒ Array<String>
Returns a list of actions defined by the schema.
35 36 37 38 39 |
# File 'lib/frodo/schema.rb', line 35 def actions @actions ||= .xpath('//Action').map do |action| action.attributes['Name'].value end end |