class Faker::LIRC

 LIRC-related faker stuff

Public Class Methods

button_name() click to toggle source

Produces a random LIRC response type

@return [String]

@example

Faker::LIRC.button_name #=> "KEY_GREEN"
# File lib/faker/lirc.rb, line 12
def button_name
  fetch('lirc.button_name')
end
remote_name() click to toggle source

Produces a random LIRC response type

@return [String]

@example

Faker::LIRC.remote_name #=> "RMT-V189-KARAOKE"
# File lib/faker/lirc.rb, line 23
def remote_name
  fetch('lirc.remote_name')
end
reply_success() click to toggle source

Produces a random LIRC response success

@return [String]

@example

Faker::LIRC.reply_type #=> "SUCCESS"
# File lib/faker/lirc.rb, line 45
def reply_success
  fetch('lirc.reply_success')
end
reply_type() click to toggle source

Produces a random LIRC response type

@return [String]

@example

Faker::LIRC.reply_type #=> "SEND_ONCE"
# File lib/faker/lirc.rb, line 34
def reply_type
  fetch('lirc.reply_type')
end