|
1 |
| -SampleStory = Struct.new(:source, :title, :lead, :is_read, :published) do |
2 |
| - BODY = <<-eos.freeze |
3 |
| -<p>Tofu shoreditch intelligentsia <a href="#">umami</a>, fashion axe photo booth |
4 |
| -try-hard terry richardson quinoa actually fingerstache meggings fixie. Aesthetic |
5 |
| -salvia vinyl raw denim, keffiyeh master cleanse tonx selfies mlkshk occupy twee |
6 |
| -street art gentrify. Quinoa PBR readymade 90's. <b>Chambray</b> Austin aesthetic |
7 |
| -meggings, carles vinyl intelligentsia tattooed. Keffiyeh mumblecore |
8 |
| -fingerstache, sartorial sriracha disrupt biodiesel cred. Skateboard yr cosby |
9 |
| -sweater, narwhal beard ethnic jean shorts aesthetic. Post-ironic flannel mlkshk, |
10 |
| -pickled VHS wolf banjo forage portland wayfarers.</p> |
11 |
| -<img src='https://placekitten.com/g/500/300' /> |
12 |
| -<p>Selfies mumblecore odd future <a href="#">irony DIY messenger bag</a>. |
13 |
| -Authentic neutra next level selvage squid. Four loko freegan occupy, tousled |
14 |
| -vinyl leggings selvage messenger bag. Four loko wayfarers kale chips, next level |
15 |
| -banksy banh mi umami flannel hella. Street art odd future scenester, |
16 |
| -intelligentsia brunch fingerstache YOLO narwhal single-origin coffee tousled |
17 |
| -tumblr pop-up four loko you probably haven't heard of them dreamcatcher. |
18 |
| -Single-origin coffee direct trade retro biodiesel, truffaut fanny pack portland |
19 |
| -blue bottle scenester bushwick. Skateboard squid fanny pack bushwick, photo |
20 |
| -booth vice literally.</p> |
21 |
| - eos |
| 1 | +SampleStory = Struct.new(:source, :title, :lead, :is_read, :published) do # rubocop:disable Metrics/BlockLength |
| 2 | + BODY = <<~EOS.freeze |
| 3 | + <p>Tofu shoreditch intelligentsia <a href="#">umami</a>, fashion axe photo booth |
| 4 | + try-hard terry richardson quinoa actually fingerstache meggings fixie. Aesthetic |
| 5 | + salvia vinyl raw denim, keffiyeh master cleanse tonx selfies mlkshk occupy twee |
| 6 | + street art gentrify. Quinoa PBR readymade 90's. <b>Chambray</b> Austin aesthetic |
| 7 | + meggings, carles vinyl intelligentsia tattooed. Keffiyeh mumblecore |
| 8 | + fingerstache, sartorial sriracha disrupt biodiesel cred. Skateboard yr cosby |
| 9 | + sweater, narwhal beard ethnic jean shorts aesthetic. Post-ironic flannel mlkshk, |
| 10 | + pickled VHS wolf banjo forage portland wayfarers.</p> |
| 11 | + <img src='https://placekitten.com/g/500/300' /> |
| 12 | + <p>Selfies mumblecore odd future <a href="#">irony DIY messenger bag</a>. |
| 13 | + Authentic neutra next level selvage squid. Four loko freegan occupy, tousled |
| 14 | + vinyl leggings selvage messenger bag. Four loko wayfarers kale chips, next level |
| 15 | + banksy banh mi umami flannel hella. Street art odd future scenester, |
| 16 | + intelligentsia brunch fingerstache YOLO narwhal single-origin coffee tousled |
| 17 | + tumblr pop-up four loko you probably haven't heard of them dreamcatcher. |
| 18 | + Single-origin coffee direct trade retro biodiesel, truffaut fanny pack portland |
| 19 | + blue bottle scenester bushwick. Skateboard squid fanny pack bushwick, photo |
| 20 | + booth vice literally.</p> |
| 21 | + EOS |
22 | 22 |
|
23 | 23 | def id
|
24 | 24 | -1 * rand(100)
|
|
0 commit comments