
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
This is still a work in progress and breaking changes may be made, but I will do my best to update the README when features have been changed.
Add this line to your application's Gemfile:
gem 'adobe_doc_api'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install adobe_doc_api
AdobeDocApi.configure do |config|
config.client_id = nil
config.client_secret = nil
config.scopes = nil
end
AdobeDocApi.configure do |config|
config.client_id = Rails.application.credentials.dig(:adobe_doc, :client_id)
config.client_secret = Rails.application.credentials.dig(:adobe_doc, :client_secret)
config.scopes = Rails.application.credentials.dig(:adobe_doc, :scopes)
end
template_path = "../full_path_to/disclosure.docx"
output_path = "../full_path_to_output/output.docx"
json_data = { 'DocTag': 'Value', 'DocTag2': 'Value2'}
client = AdobeDocApi::Client.new
client.submit(json: json_data, template: template_path, output: output_path)
# returns true or false if file was saved to output_path
client = AdobeDocApi::Client.new(client_id: adobe_client_id,
client_secret: adobe_client_secret,
scopes: adobe_scopes)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that adobe_doc_api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.