Sha256: 3b7326a93e79bc287c161d518ef62514498f0161d2c523365e94e808a1a6d9b8
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/cacheable_flash/version', __FILE__) Gem::Specification.new do |s| s.name = "cacheable_flash" s.version = CacheableFlash::VERSION s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Peter H. Boling", "Brian Takita"] s.date = "2012-08-13" s.description = "Allows caching of pages with flash messages by rendering flash\nmessages from a cookie using JavaScript, instead of statically in your Rails\nview template. Flash contents are converted to JSON and placed in\na cookie by an after_filter (default) or a Rack Middleware (option)." s.email = "peter.boling@gmail.com" s.extra_rdoc_files = [ "LICENSE", "README.rdoc" ] s.files = `git ls-files`.split($\) s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.homepage = "http://github.com/pivotal/cacheable-flash" s.licenses = ["MIT"] s.require_paths = ["lib"] s.rubygems_version = "1.8.24" s.summary = "Render flash messages from a cookie using JavaScript, instead of in your Rails view template" s.add_runtime_dependency(%q<facets>, [">= 0"]) s.add_runtime_dependency(%q<json>, [">= 0"]) s.add_development_dependency(%q<rails>, ["~> 3.1.3"]) s.add_development_dependency(%q<jquery-rails>, [">= 0"]) s.add_development_dependency(%q<rspec-rails>, [">= 2.8.0"]) s.add_development_dependency(%q<rdoc>, [">= 3.12"]) s.add_development_dependency(%q<bundler>, [">= 1.0.24"]) s.add_development_dependency(%q<jeweler>, [">= 1.6.4"]) s.add_development_dependency(%q<reek>, [">= 1.2.8"]) s.add_development_dependency(%q<roodi>, [">= 2.1.0"]) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cacheable_flash-0.2.10 | cacheable_flash.gemspec |