Sha256: 00769ea66619353324658f00d5cf904ea3ea3fd24ca9467f8ba4a78ab541adce
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
# Caddy (WORK IN PROGRESS) Holds your stuff, and keeps it up to date. ```ruby # in your initializers (caddy.rb would be a wonderful name) Caddy.refresher = -> { Hash[SomeKeyValueModel.all.map { |skvm| [skvm.key.to_sym, skvm.value } } Caddy.refresh_interval = 5.minutes # default is 60 seconds # ... in your unicorn.rb/puma.rb after fork/start Caddy.start # ... in a controller def index # the Caddy requests are instant, and are up-to-date (as of 5 minutes ago, as specified above) # you could use this for high-level feature flags, cache dumping if Caddy[:use_the_fast_index] Rails.cache.fetch("#{Caddy[:global_cache_version}/#{Caddy[:foo_index_cache_version}/foo/bar") do # wonderful things happen here end end end ``` ## Give it to me! Add this line to your application's Gemfile: ```ruby gem "caddy" ``` ## Semantic Versioning This project conforms to [semver](http://semver.org/). As a result of this policy, you can (and should) specify a dependency on this gem using the [Pessimistic Version Constraint](http://guides.rubygems.org/patterns/) with two digits of precision. For example: ```ruby spec.add_dependency "caddy", "~> 1.0" ``` This means your project is compatible with caddy 1.0 up until 2.0. ## Contributing 1. Fork it 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 new Pull Request Don't forget to run the tests with `rake`.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caddy-0.0.1 | README.md |