Sinderella
Ruby gem which will allow authors to pass a code block to transform a data object for a specific period of time.
Note I created this repo and all the code under the name "Cinderella" but it later transpired that the name was already taken and although the project owner has officially abandoned it I'm not able to take over the gem name...
nope, pick a new name. If anyone cares about it in 3 years I'll hand it over.
So I decided to rename the project and publish the gem under the title of Sinderella instead.
Installation
Add this line to your application's Gemfile:
gem 'sinderella'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sinderella
Usage
require 'sinderella'
data = { :key => 'value' }
till_midnight = 60 # 1 minute
id = Sinderella.transforms(data, till_midnight) do |data|
data.each do |key, value|
data.tap { |d| d[key].upcase! }
end
end
puts Sinderella.get(id) # => { :key => 'VALUE' }
# we'll randomly reset the data before the time expires...
if (rand() * 2).to_i == 1
puts "Resetting data early"
Sinderella.midnight(id)
end
sleep 10
# if reset early == { :key => 'value' }
# if not reset early == { :key => 'VALUE' }
puts Sinderella.get(id)
sleep 60
# time has expired by this point so == { :key => 'value' }
puts Sinderella.get(id)
Contributing
- Fork it ( http://github.com/Integralist/Sinderella/fork )
- 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