File manager local or S3
Add this line to your application's Gemfile:
gem 'file-manager'
And then execute:
$ bundle
Or install it yourself as:
$ gem install file-manager
require 'file_manager_factory'
file_managers = { xml_data: { type: 'local', root_path:'/Users/franciscobarroso/reports/' }, txt: { type: 'local', root_path:'/Users/franciscobarroso/reports/' } }
factory = FileManagerFactory.new(file_managers)
file_manager_txt = factory.create(:txt)
file_manager_txt.save_file('babau.txt', 'buuuu')
export AWS_ACCESS_KEY_ID='' # with your keys
export AWS_SECRET_ACCESS_KEY=''
bundle exec rake
- 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