README.markdown in roo-1.11.1 vs README.markdown in roo-1.11.2

- old
+ new

@@ -17,15 +17,15 @@ ## Usage: require 'roo' - s = Openoffice.new("myspreadsheet.ods") # creates an Openoffice Spreadsheet instance - s = Excel.new("myspreadsheet.xls") # creates an Excel Spreadsheet instance - s = Google.new("myspreadsheetkey_at_google") # creates an Google Spreadsheet instance - s = Excelx.new("myspreadsheet.xlsx") # creates an Excel Spreadsheet instance for Excel .xlsx files + s = Roo::Openoffice.new("myspreadsheet.ods") # creates an Openoffice Spreadsheet instance + s = Roo::Excel.new("myspreadsheet.xls") # creates an Excel Spreadsheet instance + s = Roo::Google.new("myspreadsheetkey_at_google") # creates an Google Spreadsheet instance + s = Roo::Excelx.new("myspreadsheet.xlsx") # creates an Excel Spreadsheet instance for Excel .xlsx files - s.default_sheet = s.sheets.first # first sheet in the spreadsheet file will be used + s.default_sheet = s.sheets.first # first sheet in the spreadsheet file will be used # s.sheet is an array which holds the names of the sheets within # a spreadsheet. # you can also write # s.default_sheet = s.sheets[3] or