Class: Mushy::Web
Instance Attribute Summary
Attributes inherited from Flux
#config, #flow, #id, #masher, #parent_fluxs, #subscribed_to, #type
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Flux
#convert_this_to_an_array, #convert_to_symbolized_hash, #execute, #execute_single_event, #group_these_results, #guard, #ignore_these_results, inherited, #initialize, #join_these_results, #limit_these_results, #merge_these_results, #model_these_results, #outgoing_split_these_results, #shape_these, #sort_these_results, #standardize_these
Constructor Details
This class inherits a constructor from Mushy::Flux
Class Method Details
.details ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/mushy/fluxs/web.rb', line 2 def self.details { name: 'Web', title: 'Set up a web endpoint', description: '', fluxGroup: { name: '' }, config: { }, examples: { } } end |
Instance Method Details
#process(event, _) ⇒ Object
15 16 17 18 19 |
# File 'lib/mushy/fluxs/web.rb', line 15 def process(event, _) puts event.inspect puts 'method!!!' if event[:method] event end |