Low commit activity in last 3 years
A long-lived project that still receives updates
Ruby gem for communicating with the GroupDocs.Parser Cloud API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 5.11, >= 5.11.3

Runtime

~> 2.8.0, >= 2.8.0
~> 0.14.0
 Project Readme

GroupDocs.Parser Cloud Ruby SDK

Ruby gem for communicating with the GroupDocs.Parser Cloud API. This SDK allows you to work with GroupDocs.Parser Cloud REST APIs in your Ruby applications.

Requirements

Ruby 2.4+

Installation

Install groupdocs_parser_cloud from RubyGems:

gem install groupdocs_parser_cloud

Or add the dependency to your Gemfile and run bundle install:

gem "groupdocs_parser_cloud", "~> 25.7"

Getting Started

Please follow the installation procedure and then run the following code:

# Import modules
require "./Common.rb"

#  This example demonstrates how to extract formatted text from document.
class ExtractFormattedText
  def self.Run()
    parseApi = GroupDocsParserCloud::ParseApi.from_config($config)
    options = GroupDocsParserCloud::TextOptions.new
    options.file_info = GroupDocsParserCloud::FileInfo.new
    options.file_info.file_path = "words-processing/docx/formatted-document.docx"

    text_options = GroupDocsParserCloud::FormattedTextOptions.new
    text_options.mode = "Markdown"
    options.formatted_text_options = text_options

    request = GroupDocsParserCloud::TextRequest.new(options)
    response = parseApi.text(request)
    puts("Text:" + response.text)
  end
end

Licensing

GroupDocs.Parser Cloud Ruby SDK licensed under MIT License.

Resources

Contact Us

Your feedback is very important to us. Please feel free to contact us