Sha256: ebbd03dab3999f50fa0a51223d284036bb63b4230540666465576661b54aaeea

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

require "#{File.dirname(__FILE__)}/../lib/stages"

include Stages

#count the occurance of each letter in these song lyrics
@lyrics = 
  { :do => 'doe a deer a female deer',
    :re => 'ray a drop of golden sun',
    :mi => 'me a name I call myself',
    :fa => 'far a long long way to run',
    :so => 'a needle pulling thread',
    :la => 'a note to follow so',
    :ti => 'a drink with jam and bread'}

def setup_pipeline
  get_lyric = Map.new{ |x| @lyrics[x]}
  
  
  each_character = Each.new{ |x| x.chars }
  trim_whitespace = Select.new{ |x| x != ' '}
  letters_in_each_line = Wrap.new(get_lyric | each_character | trim_whitespace)
  each_note = Each.new @lyrics.keys
  count_everything = Count.new
  each_letter = Each.new
  
  
  each_note | letters_in_each_line | each_letter | count_everything
end

puts setup_pipeline.run.inspect

puts "one line at a time"
lyrics = Each.new(@lyrics.keys)
letters_in_chunks = Wrap.new(Map.new{ |x| @lyrics[x]} | Each.new{ |x| x.chars}).with_hash
each_letter = Each.new{ |x| x.values.first }
count = Count.new

p2 = lyrics | letters_in_chunks | each_letter | count

puts p2.run.inspect

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
stages-0.2.3 examples/sing_subpipes.rb
stages-0.2.2 examples/sing_subpipes.rb
stages-0.2.1 examples/sing_subpipes.rb
stages-0.2.0 examples/sing_subpipes.rb