source
stringclasses
1 value
repo
stringlengths
5
63
repo_url
stringlengths
24
82
path
stringlengths
5
167
language
stringclasses
1 value
license
stringclasses
5 values
stars
int64
10
51.4k
ref
stringclasses
23 values
size_bytes
int64
200
258k
text
stringlengths
137
258k
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/chunking_utils.rb
Ruby
apache-2.0
19
main
2,156
# frozen_string_literal: true module HealthCards # Split up a JWS into chunks if encoded size is above QR Code Size constraint module ChunkingUtils extend self MAX_SINGLE_JWS_SIZE = 1195 MAX_CHUNK_SIZE = 1191 def split_jws(jws) if jws.length <= MAX_SINGLE_JWS_SIZE [jws] else ...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/encoding.rb
Ruby
apache-2.0
19
main
678
# frozen_string_literal: true require 'base64' module HealthCards # Encoding utilities for producing JWS # # @see https://datatracker.ietf.org/doc/html/rfc7515#appendix-A.3.1 module Encoding # Encodes the provided data using url safe base64 without padding # @param data [String] the data to be encoded...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/payload_types/covid_lab_result_payload.rb
Ruby
apache-2.0
19
main
383
# frozen_string_literal: true module HealthCards class COVIDLabResultPayload < COVIDPayload additional_types 'https://smarthealth.cards#laboratory' allow type: FHIR::Observation, attributes: %w[meta status code subject effectiveDateTime effectivePeriod performer valueCodea...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/payload_types/monkeypox_immunization_payload.rb
Ruby
apache-2.0
19
main
362
# frozen_string_literal: true module HealthCards class MonkeypoxImmunizationPayload < MonkeypoxPayload additional_types 'https://smarthealth.cards#immunization' allow type: FHIR::Immunization, attributes: %w[meta status vaccineCode patient occurrenceDateTime manufacturer lotNumber performer ...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/payload_types/monkeypox_payload.rb
Ruby
apache-2.0
19
main
377
# frozen_string_literal: true require 'health_cards/attribute_filters' require 'health_cards/payload_types' module HealthCards # Implements Payload for use with COVID Vaccination IG class MonkeypoxPayload < HealthCards::Payload additional_types 'https://smarthealth.cards#monkeypox' allow type: FHIR::Pati...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/payload_types/covid_payload.rb
Ruby
apache-2.0
19
main
371
# frozen_string_literal: true require 'health_cards/attribute_filters' require 'health_cards/payload_types' module HealthCards # Implements Payload for use with COVID Vaccination IG class COVIDPayload < HealthCards::Payload additional_types 'https://smarthealth.cards#covid19' allow type: FHIR::Patient, a...
github
dvci/health_cards
https://github.com/dvci/health_cards
lib/health_cards/payload_types/covid_immunization_payload.rb
Ruby
apache-2.0
19
main
354
# frozen_string_literal: true module HealthCards class COVIDImmunizationPayload < COVIDPayload additional_types 'https://smarthealth.cards#immunization' allow type: FHIR::Immunization, attributes: %w[meta status vaccineCode patient occurrenceDateTime manufacturer lotNumber performer ...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/test_helper.rb
Ruby
apache-2.0
19
main
2,992
# frozen_string_literal: true require 'simplecov' require 'webmock/minitest' require 'json' SimpleCov.start do enable_coverage :branch add_filter '/test/' add_filter '/config/' end if ENV['GITHUB_ACTIONS'] require 'codecov' SimpleCov.formatter = SimpleCov::Formatter::Codecov end ENV['RAILS_ENV'] ||= 'test...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/qr_codes_controller_test.rb
Ruby
apache-2.0
19
main
2,486
# frozen_string_literal: true require 'test_helper' class QRCodesControllerTest < ActionDispatch::IntegrationTest setup do @patient = Patient.create!(given: 'foo') (200...225).each { |i| @vax = Vaccine.create(code: i.to_s) } @imm = @patient.immunizations.create(vaccine: Vaccine.first, occurrence: Time....
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/immunizations_controller_test.rb
Ruby
apache-2.0
19
main
2,425
# frozen_string_literal: true require 'test_helper' class ImmunizationsControllerTest < ActionDispatch::IntegrationTest setup do @patient = Patient.create(given: 'Foo') @vaccine = Vaccine.create(code: 'a', name: 'b') @immunization = @patient.immunizations.create(vaccine: @vaccine, occurrence: Time.zone....
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/auth_controller_test.rb
Ruby
apache-2.0
19
main
4,622
# frozen_string_literal: true require 'test_helper' class AuthControllerTest < ActionDispatch::IntegrationTest good_auth_params = { response_type: 'code', client_id: Rails.application.config.client_id, redirect_uri: 'http://example.com', scope: 'l...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/lab_results_controller_test.rb
Ruby
apache-2.0
19
main
2,494
# frozen_string_literal: true require 'test_helper' class LabResultsControllerTest < ActionDispatch::IntegrationTest # test "the truth" do # assert true # end setup do @patient = Patient.create(given: 'Foo') @lab_result = LabResult.create(code: '94508-9', status: 'amended', result: '260385009', effe...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/health_cards_controller_test.rb
Ruby
apache-2.0
19
main
4,588
# frozen_string_literal: true require 'test_helper' class HealthCardsControllerTest < ActionDispatch::IntegrationTest setup do @patient = Patient.create!(given: 'foo') @vax = Vaccine.create(code: '207') @imm = @patient.immunizations.create(vaccine: @vax, occurrence: Time.zone.today) @key = rails_pub...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/patients_controller_test.rb
Ruby
apache-2.0
19
main
3,431
# frozen_string_literal: true require 'test_helper' class PatientsControllerTest < ActionDispatch::IntegrationTest setup do @attributes = { given: 'foo', family: 'bar', gender: 'male' } @patient = Patient.create(@attributes) assert_not @patient.new_record? end test 'should get index' do get pat...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/controllers/well_known_controller_test.rb
Ruby
apache-2.0
19
main
992
# frozen_string_literal: true require 'test_helper' class WellKnownControllerTest < ActionDispatch::IntegrationTest setup do @well_known = Rails.application.config.smart @key = rails_public_key @headers = { Origin: 'http://example.com' } end teardown do cleanup_keys end test 'supports heal...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/helpers/health_cards_helper_test.rb
Ruby
apache-2.0
19
main
971
# frozen_string_literal: true require 'test_helper' FILEPATH_PAYLOAD_MINIFIED = 'example-jws-payload-minified' FILEPATH_PAYLOAD_MINIFIED_LR = 'example-jws-lab-result' class HealthCardsHelperTest < ActiveSupport::TestCase include HealthCardsHelper setup do Vaccine.create(code: '207') @jws_payload = load_j...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/helpers/lab_results_helper_test.rb
Ruby
apache-2.0
19
main
574
# frozen_string_literal: true require 'test_helper' FILEPATH_EXAMPLE_VALUESET = 'test/fixtures/files/example-valueset.json' class LabResultsHelperTest < ActiveSupport::TestCase include LabResultsHelper test 'lab_option obtaining codes correctly' do example_str = ValueSet.new(FILEPATH_EXAMPLE_VALUESET) v...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/system/immunizations_test.rb
Ruby
apache-2.0
19
main
1,372
# frozen_string_literal: true require 'application_system_test_case' class ImmunizationsTest < ApplicationSystemTestCase setup do @immunization = immunizations(:one) end test 'visiting the index' do visit immunizations_url assert_selector 'h1', text: 'Immunizations' end test 'creating a Immuni...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/qr_codes_test.rb
Ruby
apache-2.0
19
main
1,108
# frozen_string_literal: true require 'test_helper' require 'fileutils' class QrCodesTest < ActiveSupport::TestCase setup do @jws = HealthCards::JWS.from_jws(load_json_fixture('example-jws-multiple')) @chunks = load_json_fixture('example-numeric-qr-code') end test 'chunk converts to valid code' do ...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/covid_immunization_payload_test.rb
Ruby
apache-2.0
19
main
1,263
# frozen_string_literal: true require 'test_helper' class COVIDImmunizationPayloadTest < ActiveSupport::TestCase setup do bundle = FHIR::Bundle.new(load_json_fixture('example-covid-immunization-bundle')) @payload = HealthCards::COVIDImmunizationPayload.new(bundle: bundle, issuer: 'http://example.org') end...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/payload_test.rb
Ruby
apache-2.0
19
main
6,855
# frozen_string_literal: true require 'test_helper' class PayloadTest < ActiveSupport::TestCase class TestCOVIDLabPayload < HealthCards::Payload additional_types 'https://smarthealth.cards#covid19' additional_types 'https://smarthealth.cards#laboratory' end setup do # from https://smarthealth.cards...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/monkeypox_immunization_payload_test.rb
Ruby
apache-2.0
19
main
1,297
# frozen_string_literal: true require 'test_helper' class MonkeypoxImmunizationPayloadTest < ActiveSupport::TestCase setup do bundle = FHIR::Bundle.new(load_json_fixture('example-monkeypox-immunization-bundle')) @payload = HealthCards::MonkeypoxImmunizationPayload.new(bundle: bundle, issuer: 'http://example...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/key_set_test.rb
Ruby
apache-2.0
19
main
3,397
# frozen_string_literal: true require 'test_helper' class KeySetTest < ActiveSupport::TestCase setup do @keys = [private_key, private_key] end ## Constructors test 'KeySet can be initialized without keys' do HealthCards::KeySet.new end test 'KeySet can be initialized with a single private key' ...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/health_card_test.rb
Ruby
apache-2.0
19
main
1,095
# frozen_string_literal: true require 'test_helper' class HealthCardTest < ActiveSupport::TestCase setup do @jws = load_json_fixture('example-jws') @card = HealthCards::HealthCard.new(@jws) end test 'json' do credential = JSON.parse(@card.to_json) vc = credential['verifiableCredential'][0] ...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/issuer_test.rb
Ruby
apache-2.0
19
main
1,590
# frozen_string_literal: true require 'test_helper' class IssuerTest < ActiveSupport::TestCase setup do @bundle = bundle_payload @private_key = private_key @issuer = HealthCards::Issuer.new(key: @private_key) end ## Constructors test 'Create a new Issuer' do HealthCards::Issuer.new(key: @pri...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/verifier_test.rb
Ruby
apache-2.0
19
main
6,561
# frozen_string_literal: true require 'test_helper' class VerifierTest < ActiveSupport::TestCase setup do @private_key = private_key @public_key = @private_key.public_key @verifier = HealthCards::Verifier.new(keys: rails_public_key) @jws = rails_issuer.issue_jws(bundle_payload) end ## Construct...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/chunking_utils_test.rb
Ruby
apache-2.0
19
main
2,595
# frozen_string_literal: true require 'test_helper' require 'health_cards/chunking_utils' JWS_SMALL = 's' * 1195 JWS_LARGE = 'l' * 1196 JWS_3 = "#{'t' * 1191 * 2}t" FILEPATH_NUMERIC_QR_CODE = 'example-numeric-qr-code' FILEPATH_NUMERIC_QR_CODE_MULTIPLE = 'example-numeric-qr-code-multiple' FILEPATH_JWS = 'example-jws'...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/encoding_test.rb
Ruby
apache-2.0
19
main
1,013
# frozen_string_literal: true require 'test_helper' class EncodingTest < Minitest::Test def setup @klass = Class.new @klass.extend(HealthCards::Encoding) end def test_encodes_header_correctly # Examples from: https://datatracker.ietf.org/doc/html/rfc7515 { '{"alg":"ES256"}' => 'eyJhbGciOi...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/covid_lab_result_payload_test.rb
Ruby
apache-2.0
19
main
1,184
# frozen_string_literal: true require 'test_helper' class COVIDLabResultPayloadTest < ActiveSupport::TestCase setup do bundle = FHIR::Bundle.new(load_json_fixture('example-covid-lab-result-bundle')) @lab_result_card = HealthCards::COVIDLabResultPayload.new(bundle: bundle, issuer: 'http://example.org') end...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/covid_payload_test.rb
Ruby
apache-2.0
19
main
3,111
# frozen_string_literal: true require 'test_helper' class COVIDPayloadTest < ActiveSupport::TestCase setup do @bundle = FHIR::Bundle.new(load_json_fixture('example-covid-immunization-bundle')) @card = HealthCards::COVIDPayload.new(bundle: @bundle, issuer: 'http://example.org') end class COVIDHealthCard...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/jws_test.rb
Ruby
apache-2.0
19
main
805
# frozen_string_literal: true require 'test_helper' class JWSTest < ActiveSupport::TestCase setup do @payload = 'foo' @private_key = private_key end ## Constructor test 'JWS can be created from string payload' do HealthCards::JWS.new(payload: @payload) end test 'changing keys causes signatu...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/monkeypox_payload_test.rb
Ruby
apache-2.0
19
main
3,209
# frozen_string_literal: true require 'test_helper' class MonkeypoxPayloadTest < ActiveSupport::TestCase setup do @bundle = FHIR::Bundle.new(load_json_fixture('example-monkeypox-immunization-bundle')) @card = HealthCards::MonkeypoxPayload.new(bundle: @bundle, issuer: 'http://example.org') end class Mon...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/private_key_test.rb
Ruby
apache-2.0
19
main
1,788
# frozen_string_literal: true require 'test_helper' class PrivateKeyTest < Minitest::Test def setup # Key from https://datatracker.ietf.org/doc/html/rfc7515#appendix-A.3.1 @jwk = { kty: 'EC', crv: 'P-256', x: 'f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU', y: 'x_FEzRu9m...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/health_cards/key_test.rb
Ruby
apache-2.0
19
main
2,378
# frozen_string_literal: true require 'test_helper' require 'fileutils' class KeyTest < ActiveSupport::TestCase setup do @key_path = rails_key_path @key = HealthCards::PrivateKey.load_from_or_create_from_file(@key_path) @test_jwk = { kty: 'EC', kid: '3Kfdg-XwP-7gXyywtUfUADwBumDOPKMQx-iELL11W...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/models/immunization_test.rb
Ruby
apache-2.0
19
main
474
# frozen_string_literal: true require 'test_helper' class ImmunizationTest < ActiveSupport::TestCase setup do @pat = Patient.create(given: 'Foo') @vax = Vaccine.create(code: 'a', name: 'b') end test 'json serialization of vax data' do imm = @pat.immunizations.create(vaccine: @vax, occurrence: Time....
github
dvci/health_cards
https://github.com/dvci/health_cards
test/models/lab_result_test.rb
Ruby
apache-2.0
19
main
935
# frozen_string_literal: true require 'test_helper' class LabResultTest < ActiveSupport::TestCase test 'serialization' do pat = Patient.create!(given: 'Foo') lab = LabResult.create(code: '94508-9', status: 'amended', result: '260385009', effective: Time.zone.now, patient: pat) ...
github
dvci/health_cards
https://github.com/dvci/health_cards
test/models/patient_test.rb
Ruby
apache-2.0
19
main
2,011
# frozen_string_literal: true require 'test_helper' class PatientTest < ActiveSupport::TestCase test 'json serialization' do p1 = Patient.create(given: 'Foo', family: 'Bar', gender: 'male', birth_date: Time.zone.today) assert p1.valid?, p1.errors.full_messages.join(', ') p2 = Pat...
github
dvci/health_cards
https://github.com/dvci/health_cards
db/schema.rb
Ruby
apache-2.0
19
main
2,079
# This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # # This file is the source Rails uses to define your schema when running `bin/rai...
github
dvci/health_cards
https://github.com/dvci/health_cards
db/seeds.rb
Ruby
apache-2.0
19
main
1,459
# frozen_string_literal: true # This file should contain all the record creation needed to seed the database with its default values. # The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup). # # Examples: # # movies = Movie.create([{ name: 'Star Wars' }, { n...
github
dvci/health_cards
https://github.com/dvci/health_cards
db/migrate/20210428145300_add_id_to_fhir_json.rb
Ruby
apache-2.0
19
main
1,023
# frozen_string_literal: true # Sets ID in existing FHIR-based records class AddIdToFHIRJson < ActiveRecord::Migration[6.1] # https://guides.rubyonrails.org/v4.1/migrations.html#using-models-in-your-migrations # https://rails.rubystyle.guide/#define-model-class-migrations # class MigrationFHIRSerializer d...
github
dvci/health_cards
https://github.com/dvci/health_cards
db/migrate/20210315202844_create_vaccines.rb
Ruby
apache-2.0
19
main
211
class CreateVaccines < ActiveRecord::Migration[6.1] def change create_table :vaccines do |t| t.string :code t.string :name t.integer :doses_required t.timestamps end end end
github
dvci/health_cards
https://github.com/dvci/health_cards
db/migrate/20210315205132_create_immunizations.rb
Ruby
apache-2.0
19
main
224
class CreateImmunizations < ActiveRecord::Migration[6.1] def change create_table :immunizations do |t| t.references :patient t.references :vaccine t.string :json t.timestamps end end end
github
dvci/health_cards
https://github.com/dvci/health_cards
test_app/test_qr_codes.rb
Ruby
apache-2.0
19
main
1,505
#!/usr/bin/env ruby # frozen_string_literal: true require 'bundler/setup' require 'health_cards' qr_inspect = lambda do |qr| qr.chunks.each do |ch| puts "Chunk #{ch.ordinal}\n=======\n" if qr.chunks.length > 1 puts "Version: #{ch.qr_code.version}" puts "ECL: #{ch.qr_code.error_correction_level}" end e...
github
mustache/mustache-sinatra
https://github.com/mustache/mustache-sinatra
mustache-sinatra.gemspec
Ruby
mit
19
master
1,144
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'mustache/sinatra/version' Gem::Specification.new do |spec| spec.name = "mustache-sinatra" spec.version = Mustache::Sinatra::VERSION spec.authors = ["Ricardo Mendes"] ...
github
mustache/mustache-sinatra
https://github.com/mustache/mustache-sinatra
spec/spec_helper.rb
Ruby
mit
19
master
696
require 'rack/test' require 'sinatra' require_relative 'views/layout' require_relative 'views/index' RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.include_chain_clauses_in_custom_matcher_descriptions = true end config.mock_with :rspec do |mocks| mocks.verify_partia...
github
mustache/mustache-sinatra
https://github.com/mustache/mustache-sinatra
spec/normal_usage_spec.rb
Ruby
mit
19
master
501
require 'mustache/sinatra' RSpec.describe 'normal usage' do let(:app) { Class.new(Sinatra::Application) do set :mustache, { templates: 'views', views: 'views', namespace: Object } get '/' do mustache :index ...
github
mustache/mustache-sinatra
https://github.com/mustache/mustache-sinatra
lib/mustache/sinatra.rb
Ruby
mit
19
master
323
require 'mustache/sinatra/version' require 'mustache' require 'mustache/sinatra/helpers' class Mustache module Sinatra # Called when you `register Mustache::Sinatra` in your Sinatra app. def self.registered(app) app.helpers Mustache::Sinatra::Helpers end end end Sinatra.register Mustache::Sinat...
github
mustache/mustache-sinatra
https://github.com/mustache/mustache-sinatra
lib/mustache/sinatra/helpers.rb
Ruby
mit
19
master
5,503
class Mustache module Sinatra module Helpers # Call this in your Sinatra routes. def mustache(template, options={}, locals={}) # Locals can be passed as options under the :locals key. locals.update(options.delete(:locals) || {}) # Grab any user-defined settings. if s...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
Gemfile
Ruby
mit
19
master
303
source 'https://rubygems.org' gem 'faraday', '~> 1.9', '>= 1.9.3' gem 'marcel', '>= 1.0.0' gem 'multipart-parser', '~> 0.1.1' group :development do gem 'rake' gem 'ci_reporter_minitest' gem 'rubocop', '~> 0.58.2' gem 'rubocop-checkstyle_formatter' gem 'minitest', '~> 5.11', '>= 5.11.3' end
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
aspose_words_cloud.gemspec
Ruby
mit
19
master
932
require './lib/aspose_words_cloud/version' Gem::Specification.new do |s| s.name = 'aspose_words_cloud' s.version = AsposeWordsCloud::VERSION s.platform = Gem::Platform::RUBY s.author = 'Aspose' s.email = 'aspose.cloud@aspose.com' s.homepage = 'https://products.aspose.cloud/words...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
Rakefile
Ruby
mit
19
master
299
require "bundler/gem_tasks" require "rake/testtask" require 'ci/reporter/rake/minitest' ENV['CI_REPORTS'] = 'testReports/report' Rake::TestTask.new do |t| t.libs << "tests" t.test_files = FileList['tests/**/*_tests.rb'] end desc "Run tests" task :test => 'ci:setup:minitest' task default: :test
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
examples/AcceptAllRevisionsOnline.rb
Ruby
mit
19
master
577
AsposeWordsCloud.configure do |config| config.client_data['ClientId'] = '####-####-####-####-####' config.client_data['ClientSecret'] = '##################' end @words_api = WordsAPI.new file_name= 'test_doc.docx' # Calls AcceptAllRevisionsOnline method for document in cloud. request_document = File.open(file_name...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
examples/AcceptAllRevisions.rb
Ruby
mit
19
master
644
require 'aspose_words_cloud' AsposeWordsCloud.configure do |config| config.client_data['ClientId'] = '####-####-####-####-####' config.client_data['ClientSecret'] = '##################' end @words_api = WordsAPI.new file_name= 'test_doc.docx' # Upload original document to cloud storage. my_var1 = File.open(file_n...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/readme_test.rb
Ruby
mit
19
master
4,030
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="readme_test.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ass...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/examples_tests.rb
Ruby
mit
19
master
2,723
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="examples_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/base_test_context.rb
Ruby
mit
19
master
2,988
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="base_test_context.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software a...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/url_encode_test.rb
Ruby
mit
19
master
2,130
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="url_encode_test.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/batch_test.rb
Ruby
mit
19
master
5,433
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="batch_test.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and asso...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Hyperlink/hyperlink_tests.rb
Ruby
mit
19
master
3,496
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Hyperlink_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Compatibility/compatibility_tests.rb
Ruby
mit
19
master
2,724
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Compatibility_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/HeaderFooter/header_footer_tests.rb
Ruby
mit
19
master
6,984
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="HeaderFooter_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/MailMerge/execute_template_with_field_options_tests.rb
Ruby
mit
19
master
3,556
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="ExecuteTemplateWithFieldOptions_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy #...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/MailMerge/execute_mail_merge_tests.rb
Ruby
mit
19
master
4,656
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="ExecuteMailMerge_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softw...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/MailMerge/execute_template_tests.rb
Ruby
mit
19
master
3,092
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="ExecuteTemplate_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwa...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/MailMerge/mail_merge_fileds_tests.rb
Ruby
mit
19
master
2,707
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="MailMergeFileds_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwa...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Info/info_tests.rb
Ruby
mit
19
master
1,736
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Info_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and asso...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/StructuredDocumentTag/structured_document_tag_tests.rb
Ruby
mit
19
master
8,205
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="StructuredDocumentTag_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Macros/macros_tests.rb
Ruby
mit
19
master
2,420
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Macros_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and as...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Field/field_tests.rb
Ruby
mit
19
master
14,563
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Field_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ass...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Field/form_field_tests.rb
Ruby
mit
19
master
10,565
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="FormField_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/PageSetup/page_setup_tests.rb
Ruby
mit
19
master
4,693
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="PageSetup_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/DocumentProperties/document_properties_tests.rb
Ruby
mit
19
master
5,628
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="DocumentProperties_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this sof...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Text/text_tests.rb
Ruby
mit
19
master
3,858
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Text_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and asso...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/document/custom_xml_parts_tests.rb
Ruby
mit
19
master
7,545
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="CustomXmlParts_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwar...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/document/password_encryption_tests.rb
Ruby
mit
19
master
1,991
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="PasswordEncryption_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this sof...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Sections/section_tests.rb
Ruby
mit
19
master
6,143
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Section_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and a...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Font/font_tests.rb
Ruby
mit
19
master
1,936
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Font_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and asso...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/MathObject/math_object_tests.rb
Ruby
mit
19
master
8,012
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="MathObject_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software an...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Footnote/footnote_tests.rb
Ruby
mit
19
master
9,176
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Footnote_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Watermark/watermark_tests.rb
Ruby
mit
19
master
7,763
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Watermark_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Styles/styles_tests.rb
Ruby
mit
19
master
9,301
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Styles_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and as...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Report/build_report_tests.rb
Ruby
mit
19
master
3,398
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="BuildReport_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software a...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Drawing/drawing_objects_tests.rb
Ruby
mit
19
master
15,650
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="DrawingObjects_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwar...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/append_document_tests.rb
Ruby
mit
19
master
6,138
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="AppendDocument_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwar...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/comment_tests.rb
Ruby
mit
19
master
8,147
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Comment_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and a...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/split_document_to_format_tests.rb
Ruby
mit
19
master
3,819
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="SplitDocumentToFormat_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/compress_document_tests.rb
Ruby
mit
19
master
2,844
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="CompressDocument_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softw...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/compare_document_tests.rb
Ruby
mit
19
master
6,156
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="CompareDocument_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwa...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/document_with_format_tests.rb
Ruby
mit
19
master
2,832
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="DocumentWithFormat_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this sof...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/document_statistics_tests.rb
Ruby
mit
19
master
2,577
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="DocumentStatistics_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this sof...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/document_tests.rb
Ruby
mit
19
master
2,456
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Document_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/convert_document_tests.rb
Ruby
mit
19
master
6,256
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="ConvertDocument_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwa...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/signature_tests.rb
Ruby
mit
19
master
5,025
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Signature_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/revisions_tests.rb
Ruby
mit
19
master
4,350
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Revisions_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Document/load_web_document_tests.rb
Ruby
mit
19
master
2,705
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="LoadWebDocument_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this softwa...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Table/table_tests.rb
Ruby
mit
19
master
21,341
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Table_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ass...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Table/table_border_tests.rb
Ruby
mit
19
master
6,651
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="TableBorder_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software a...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/DocumentProtection/document_protection_tests.rb
Ruby
mit
19
master
4,926
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="DocumentProtection_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this sof...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Paragraph/paragraph_tests.rb
Ruby
mit
19
master
27,151
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Paragraph_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and...
github
aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
https://github.com/aspose-words-cloud/Aspose.Words-Cloud-SDK-for-Ruby
tests/Bookmark/bookmark_tests.rb
Ruby
mit
19
master
8,049
# ------------------------------------------------------------------------------------ # <copyright company="Aspose" file="Bookmark_tests.rb"> # Copyright (c) 2026 Aspose.Words for Cloud # </copyright> # <summary> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and ...