Skip to content

Instantly share code, notes, and snippets.

@marcamillion
Created June 8, 2016 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcamillion/ddce2f675a0589e55819e6457b89b829 to your computer and use it in GitHub Desktop.
Save marcamillion/ddce2f675a0589e55819e6457b89b829 to your computer and use it in GitHub Desktop.
rouge-rails5-bug
<pre class="highlight ruby">
<p>def convert_relation(invited_gender, relation)<br>
case invited_gender<br>
when &quot;male&quot;<br>
case relation<br>
when &quot;daughter&quot;, &quot;son&quot; then &quot;dad&quot;<br>
when &quot;mom&quot;, &quot;dad&quot; then &quot;son&quot;<br>
when &quot;grandfather&quot;, &quot;grandmother&quot; then &quot;grandson&quot;<br>
when &quot;sister&quot;, &quot;brother&quot; then &quot;brother&quot;<br>
when &quot;wife&quot; then &quot;husband&quot;<br>
when &quot;husband&quot; then &quot;husband&quot;<br>
end<br>
when &quot;female&quot;<br>
case relation<br>
when &quot;daughter&quot;, &quot;son&quot; then &quot;mom&quot;<br>
when &quot;mom&quot;, &quot;dad&quot; then &quot;daughter&quot;<br>
when &quot;grandfather&quot;, &quot;grandmother&quot; then &quot;granddaughter&quot;<br>
when &quot;sister&quot;, &quot;brother&quot; then &quot;sister&quot;<br>
when &quot;wife&quot; then &quot;wife&quot;<br>
when &quot;husband&quot; then &quot;wife&quot;<br>
end<br>
end<br>
end</p>
<p>puts convert_relation(&quot;male&quot;, &quot;wife&quot;)</p>
</pre>
/**/
.highlight table td { padding: 5px; }
.highlight table pre { margin: 0; }
.highlight, .highlight .w {
color: #bbbbbb;
background-color: #000;
}
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1 {
color: #888;
}
.highlight .cp {
color: #579;
}
.highlight .cs {
color: #cc0000;
font-weight: bold;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kr, .highlight .kv {
color: #080;
font-weight: bold;
}
.highlight .kp {
color: #038;
}
.highlight .kt {
color: #339;
}
.highlight .o {
color: #333;
}
.highlight .ow {
color: #000;
font-weight: bold;
}
.highlight .nb, .highlight .bp {
color: #007020;
}
.highlight .nf {
color: #06B;
font-weight: bold;
}
.highlight .nc {
color: #B06;
font-weight: bold;
}
.highlight .nn {
color: #0e84b5;
font-weight: bold;
}
.highlight .ne {
color: #F00;
font-weight: bold;
}
.highlight .nv {
color: #963;
}
.highlight .vi {
color: #33B;
}
.highlight .vc {
color: #369;
}
.highlight .vg {
color: #d70;
font-weight: bold;
}
.highlight .no {
color: #036;
font-weight: bold;
}
.highlight .nl {
color: #970;
font-weight: bold;
}
.highlight .ni {
color: #800;
font-weight: bold;
}
.highlight .na {
color: #00C;
}
.highlight .nt {
color: #070;
}
.highlight .nd {
color: #555;
font-weight: bold;
}
.highlight .s, .highlight .sb, .highlight .s2, .highlight .sh, .highlight .s1 {
background-color: #fff0f0;
}
.highlight .sc {
color: #04D;
}
.highlight .sd {
color: #D42;
}
.highlight .si {
background-color: #eee;
}
.highlight .se {
color: #666;
font-weight: bold;
}
.highlight .sr {
color: #000;
background-color: #fff0ff;
}
.highlight .ss {
color: #A60;
}
.highlight .sx {
color: #D20;
}
.highlight .m, .highlight .mb, .highlight .mx {
color: #60E;
font-weight: bold;
}
.highlight .mi, .highlight .il {
color: #00D;
font-weight: bold;
}
.highlight .mf {
color: #60E;
font-weight: bold;
}
.highlight .mh {
color: #058;
font-weight: bold;
}
.highlight .mo {
color: #40E;
font-weight: bold;
}
.highlight .gh {
color: #000080;
font-weight: bold;
}
.highlight .gu {
color: #800080;
font-weight: bold;
}
.highlight .gd {
color: #A00000;
}
.highlight .gi {
color: #00A000;
}
.highlight .gr {
color: #FF0000;
}
.highlight .ge {
font-style: italic;
}
.highlight .gs {
font-weight: bold;
}
.highlight .gp {
color: #c65d09;
font-weight: bold;
}
.highlight .go {
color: #888;
}
.highlight .gt {
color: #04D;
}
.highlight .err {
color: #F00;
background-color: #FAA;
}
<pre class="highlight ruby">
<p>5.times do<br>
puts "Herro Rerl!"<br>
end</p>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment