Module: Isna::Behaviours
- Included in:
- String
- Defined in:
- lib/isna/behaviours.rb
Instance Method Summary collapse
- #blink ⇒ Object
- #bright ⇒ Object
- #dark ⇒ Object
- #fast_blink ⇒ Object
- #italic ⇒ Object
- #negative ⇒ Object
- #normal ⇒ Object
- #underline ⇒ Object
Instance Method Details
#blink ⇒ Object
25 26 27 |
# File 'lib/isna/behaviours.rb', line 25 def blink change_type 5 end |
#bright ⇒ Object
9 10 11 |
# File 'lib/isna/behaviours.rb', line 9 def bright change_type 1 end |
#dark ⇒ Object
13 14 15 |
# File 'lib/isna/behaviours.rb', line 13 def dark change_type 2 end |
#fast_blink ⇒ Object
29 30 31 |
# File 'lib/isna/behaviours.rb', line 29 def fast_blink change_type 6 end |
#italic ⇒ Object
17 18 19 |
# File 'lib/isna/behaviours.rb', line 17 def italic change_type 3 end |
#negative ⇒ Object
33 34 35 |
# File 'lib/isna/behaviours.rb', line 33 def negative change_type 7 end |
#normal ⇒ Object
5 6 7 |
# File 'lib/isna/behaviours.rb', line 5 def normal change_type 0 end |
#underline ⇒ Object
21 22 23 |
# File 'lib/isna/behaviours.rb', line 21 def underline change_type 4 end |