
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
== StorageRoom Gem
This gem provides read and write access to the StorageRoom API (http://storageroomapp.com).
== Main Features
== Installation
To install the library execute:
sudo gem install storage_room
== Basic Usage
This is a walkthrough with all steps you need to setup a devise entry, including model, migration, route files, and optional configuration.
StorageRoom.authenticate(YOUR_ACCOUNT_ID, YOUR_APPLICATION_API_KEY) collection = StorageRoom::Collection.find('4ddaf68b4d085d374a000003')
entry = collection.entries.resources.first # collection.entries contains meta information, the resources key contains the returned objects
entry.name = 'Foobar'
if entry.save puts "Entry saved." else puts "Could not save Entry: #{entry.errors.join(', )}" end
You can find the documentation at http://rdoc.info/github/thriventures/storage_room_gem.
== Long Running Processes
The gem caches responses from the API. If you have a long-running process such as a server or worker you probably want fresh data and you should clear the cache before each request:
StorageRoom::IdentityMap.clear
== More Examples
See the examples folder.
== TODO
Please refer to TODO file.
== Maintainers
== Bugs and Feedback
If you discover any bugs, please create an issue on GitHub.
http://github.com/thriventures/storage_room_gem/issues
== License
MIT License. Copyright 2010 Thriventures UG (haftungsbeschränkt) - http://www.thriventures.com
FAQs
Unknown package
We found that storage_room 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
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.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.