Skip to content

Owenhorner/setting-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SettingStore

SettingStore is a simple wrapper around PStore that allows you to set persistent data using a key value store

Installation

Add this line to your application's Gemfile:

gem 'setting_store'

And then execute:

$ bundle

Or install it yourself as:

$ gem install setting_store

Usage

To set a new key value pair

SettingStore.set(:feature, value: 'Hello World')

To retrieve a set key value

SettingStore.get(:feature)
=> 'Hello World'

To check if value of a specific key value is truthy

SettingStore.set(:simple_key, value: 'Random String')
SettingStore.active?(:simple_key)
=> false

# must be explicitly set to true for .active? to return true
SettingStore.set(:simple_key, value: true)
SettingStore.active?(:simple_key)
=> true

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Owenhorner/setting_store.

License

The gem is available as open source under the terms of the MIT License.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published