Upcloudify
Upcloudify simplifies the process for uploading attachments to the cloud and emailing the recipient a link to that attachment.
Installation
Add this line to your application's Gemfile:
gem 'upcloudify'
And then execute:
$ bundle
Or install it yourself as:
$ gem install upcloudify
Usage
Configure the app:
# config/initializers/awesomeness.rb
Upcloudify.configure do |config|
config.aws_secret_access_key = 'foobarbaz' # can also be ENV['AWS_SECRET_ACCESS_KEY']
config.aws_access_key_id = 'hello' # can also be ENV['AWS_ACCESS_KEY_ID']
config.aws_directory = ''aws-directory
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request