Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/syoboemon/program_infomation_accessor/todays_programs.rb

Overview

取得した現在時刻から1日分の放送番組に関する情報を参照するためのクラス

Instance Method Summary collapse

Instance Method Details

#remove_other_than_animeObject



8
9
10
# File 'lib/syoboemon/program_infomation_accessor/todays_programs.rb', line 8

def remove_other_than_anime
	self.reject {|p| p.category.match(/0|2|3|6/)}
end

#remove_other_than_radioObject



12
13
14
# File 'lib/syoboemon/program_infomation_accessor/todays_programs.rb', line 12

def remove_other_than_radio
	self.reject {|p| not p.category.match(/2/)}
end