/carrierwave-nightcrawler-swift

Carrierwave storage adapter to swift using the nightcrawlerswift client

Primary LanguageRuby

Carrierwave Nightcrawler Swift

This gem is a Carrierwave store for Swift. This library uses nightcrawler_swift for swift operations.

Installation

Add this line to your application's Gemfile:

gem 'carrierwave-nightcrawler-swift'

And then execute:

$ bundle

Or install it yourself as:

$ gem install carrierwave-nightcrawler-swift

Usage

You should configure the client.

NightcrawlerSwift.configure({
  :bucket=>"container-name",
  :tenant_name=>"tenant-name",
  :username=>"user",
  :password=>"some-secret-password",
  :auth_url=>"https://your-swift-server.com/v2.0/tokens",
  :verify_ssl=>false
})

Set the storage to be storage Carrierwave::Nightcrawler::Swift::Storage. .

class AvatarUploader < CarrierWave::Uploader::Base
  :storage => Carrierwave::Nightcrawler::Swift::Storage
end