紹介 絵本レコメ 2014年02月_rev01

Download 紹介 絵本レコメ 2014年02月_rev01

If you can't read please download the document

Upload: matsutomu

Post on 26-Jul-2015

530 views

Category:

Education


0 download

TRANSCRIPT

1. [email protected] 2. 2/16/14Simple Tech Plus2 3. IT 30 2/16/14Simple Tech Plus3 4. 2/16/14Simple Tech Plus4 5. class Launcher def initialize( app_map ) @app_map = app_map end # Execute the given file using the associate app def run( file_name ) application = select_app( file_name ) system( "#{application} #{file_name}" ) end # Given a file, look up the matching application def select_app( file_name ) ftype = file_type( file_name ) @app_map[ ftype ] end # Return the part of the file name string after the last '.' def file_type( file_name ) File.extname( file_name ).gsub( /^./, '' ).downcase end end java 2/16/14Simple Tech Plus5 6. 2/16/14Simple Tech Plus6 7. 2/16/14Simple Tech Plus7 8. 2/16/14Simple Tech Plus8 9. 2/16/14Simple Tech Plus9 10. Fathering Japan http://www.fathering.jp/2/16/14Simple Tech Plus10 11. http://www.asahi.com/and_M/living/TKY201308050088.html2/16/14Simple Tech Plus11 12. 2/16/14Simple Tech Plus12 13. http://ehonrecomme.appspot.com/ 2/16/14Simple Tech Plus13