Sha256: 0da7316f9e4b89317bfe8e16f1aa2715101ecf53083c1bfc8e891d2407fef577
Contents?: true
Size: 781 Bytes
Versions: 10
Compression:
Stored size: 781 Bytes
Contents
class Views::RenderingSystemSpec::RenderHashSubclass < Fortitude::Widgets::Html5 needs :the_hash, :other_hash def content text "the_hash class: #{the_hash.class.name}\n" # text "is_my_hash? #{the_hash.is_my_hash?.inspect}\n" text "the_hash[:foo] #{the_hash[:foo].inspect}\n" text "the_hash[\"foo\"] #{the_hash['foo'].inspect}\n" text "the_hash[:bar] #{the_hash[:bar].inspect}\n" text "the_hash[\"bar\"] #{the_hash['bar'].inspect}\n" text "other_hash class: #{other_hash.class.name}\n" text "other_hash[:quux] #{other_hash[:quux].inspect}\n" text "other_hash[\"quux\"] #{other_hash['quux'].inspect}\n" text "other_hash[:marph] #{other_hash[:marph].inspect}\n" text "other_hash[\"marph\"] #{other_hash['marph'].inspect}\n" end end
Version data entries
10 entries across 10 versions & 1 rubygems