Sha256: 7f62b8168d633aabe179969f3746821384b455d6a50f86a86df0ea672026abf7
Contents?: true
Size: 1.68 KB
Versions: 5
Compression:
Stored size: 1.68 KB
Contents
= rubyXL == To Install: gem install rubyXL == To Use: require 'rubyXL' #assuming rubygems is already required === Parsing workbook = RubyXL::Parser.parse("path/to/Excel/file.xlsx") === Creating workbook = RubyXL::Workbook.new === Modifying ==== Adding Worksheets workbook.worksheets << Worksheet.new('Sheet2') ==== Adding Cells workbook.worksheets[0].add_cell(0,0,'A1') #sets A1 to string "A1" workbook.worksheets[0].add_cell(0,1,'','A1') #sets A2 to value of A1 ==== Changing Fonts workbook.worksheets[0].sheet_data[0][0].change_font_bold(true) #sets A1 to bold workbook.worksheets[0].change_row_font_italics(0,true) #makes first row italicized workbook.worksheets[0].change_column_font_name(0,'Verdana') ==== Changing Fills #code here ==== Merging Cells #code here === Writing workbook.write("path/to/desired/Excel/file.xlsx") == For more information Take a look at the files in spec/lib/ for rspecs on most methods == Contributing to rubyXL * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it * Fork the project * Start a feature/bugfix branch * Commit and push until you are happy with your contribution * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. == Copyright Copyright (c) 2011 Vivek Bhagwat. See LICENSE.txt for further details.
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rubyXL-1.1.0 | README.rdoc |
rubyXL-1.0.11 | README.rdoc |
rubyXL-1.0.10 | README.rdoc |
rubyXL-1.0.9 | README.rdoc |
rubyXL-1.0.8 | README.rdoc |