
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.