
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
carrierwave-azure_rm
Advanced tools
Microsoft Azure Storage blob support for CarrierWave.
Heavily inspired by @unosk carrierwave-azure gem, which seems to be no longer maintained.
Uses new azure-storage sdk to support ARM.
Add this line to your application's Gemfile:
gem 'carrierwave-azure_rm'
And then execute:
$ bundle
First configure CarrierWave with your Azure storage credentials
CarrierWave.configure do |config|
config.azure_storage_account_name = 'YOUR STORAGE ACCOUNT NAME'
config.azure_storage_access_key = 'YOUR STORAGE ACCESS KEY'
config.azure_storage_blob_host = 'YOUR STORAGE BLOB HOST' # optional
config.azure_container = 'YOUR CONTAINER NAME'
config.asset_host = 'YOUR CDN HOST' # optional
end
And then in your uploader, set the storage to :azure_rm
class ExampleUploader < CarrierWave::Uploader::Base
storage :azure_rm
end
If your container access policy is set to private, carrierwave-azure_rm can automatically return signed urls on the files. Enable auto_sign in the configuration:
config.auto_sign_urls = true
config.token_expire_after = 3600 # optional - Set the expire time of the url to 3600 seconds. Default is 1800 seconds
If you wish a newly created container to be initialized with a specific access_level you can set the following in your config:
config.public_access_level = 'private' # optional - possible values are blob, private, container
This config is only required if your container does not exist and you want it to be configured automatically.
If you have any problems with or questions about this image, please contact me through a GitHub issue.
You are invited to contribute new features, fixes, or updates, large or small.
I'm always thrilled to receive pull requests, and do my best to process them as fast as I can.
In order to run the integration specs you will need to configure some environment variables.
A sample file is provided as spec/environment.rb.sample
.
Copy it over and plug in the appropriate values.
cp spec/environment.rb.sample spec/environment.rb
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Released under the MIT License. See LICENSE file for details.
FAQs
Unknown package
We found that carrierwave-azure_rm demonstrated a not healthy version release cadence and project activity because the last version was released 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
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.