Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 22 of 22 for

rb

(0.02 sec)
  1. How to Use RSpec to Test GroupDocs API? - Part 1

    In this article, we will review how to use Ruby RSpec for testing REST APIs like GroupDocs. RSpec is a BDD (behavior driven development) framework. You can find more info about RSpec on its official site. There are a lot of different GroupDocs APIs that you can use. In this article we will test one of the User APIs: “Get user profile”. What You Need You need Ruby, Gem, Bundler, and RSpec (gem install rspec) installed on you computer....rb file in the spec/ folder. We...Create a get_user_profile_spec.rb file in the user/ folder. Specs...

    blog.groupdocs.com/total/how-to-use-rspec-to-te...
  2. Working with Groupdocs Signature API from Ruby

    Today we will find out how to use GroupDocs’ Ruby SDK. We will create a GroupDocs Signature envelope sample with the Sinatra framework. GroupDocs Signature envelopes are used to prepare documents for digital signature and managing the signature process. Setting Up First, create the application folders structure: your_app/public – for CSS files. your_app/samples – for sample files. your_app/views – for view files, we will use Haml for these. Also we need to create a Gemfile in our project’s root directory with the following content: https://gist....rb file with following content:...application: bundle exec ruby app.rb In the terminal, you will see...

    blog.groupdocs.com/signature/working-with-group...