# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby
require 'aspose_cells_cloud'

class Row

  include AsposeCellsCloud


  def initialize
     #Get client_id and client_secret from https://cloud.aspose.com
   
    @instance =  AsposeCellsCloud::CellsApi.new($client_id,$client_secret,$api_version,$baseurl) 
  end

  def upload_file(file_name)

    response = @cells_api.put_create(file_name, File.open("../../../data/" << file_name,"r") { |io| io.read } )
  end

  # Read worksheet row data by row&#39;s index.
  def read_worksheet_row_data
    name = $BOOK1
    sheet_name = $SHEET1
    row_index = 100
    folder = $TEMPFOLDER
    storage = nil
    result = @instance.upload_file( folder+"/"+name,  ::File.open(File.expand_path("data/"+name),"r") {|io| io.read(io.size) })
    expect(result.uploaded.size).to  be > 0
    result = @instance.cells_get_worksheet_row(name, sheet_name, row_index,  { :folder=>folder})
    expect(result.code).to eql(200)
  end

end

row = Row.new()
puts row.read_worksheet_row_data