Skip to content
Module for the 'fog' gem to support local filesystem storage
Ruby
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
lib/fog Bump version to 0.6.0 Sep 11, 2018
tests Follow fog-core best practices Sep 11, 2018
.gitignore
.ruby-gemset Add development files Mar 3, 2016
.travis.yml Follow fog-core best practices Sep 11, 2018
CONTRIBUTING.md Setup project structure Feb 14, 2015
CONTRIBUTORS.md Follow fog-core best practices Sep 11, 2018
Gemfile Setup project structure Feb 14, 2015
LICENSE.md Setup project structure Feb 14, 2015
README.md Follow fog-core best practices Sep 11, 2018
Rakefile Add description to test rake task Sep 12, 2015
fog-local.gemspec Allow fog 2.x Feb 25, 2018

README.md

Fog::Local

Gem Version Build Status Dependency Status

Installation

Add this line to your application's Gemfile:

gem 'fog-local'

And then execute:

$ bundle

Or install it yourself as:

$ gem install fog-local

Usage

Initialise a Fog::Local::Storage object:

storage = Fog::Local::Storage.new(local_root: '~/fog')

This can then be used like any other Fog storage.

directory = storage.directories.create(key: 'data')
directory.files.create(body: 'Hello World!', key: 'hello_world.txt')

Contributing

  1. Fork it ( https://github.com/fog/fog-local/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
You can’t perform that action at this time.