forked from oggy/template_streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_streaming.gemspec
25 lines (23 loc) · 993 Bytes
/
template_streaming.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'template_streaming/version'
Gem::Specification.new do |s|
s.name = 'template_streaming'
s.date = Time.now.strftime('%Y-%m-%d')
s.version = TemplateStreaming::VERSION.to_s
s.authors = ["George Ogata"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/oggy/template_streaming"
s.summary = "Progressive rendering for Rails."
s.description = <<-EOS.gsub(/^ *\|/, '')
|Adds a #flush helper to Rails which flushes the output buffer to
|the client before the template has finished rendering.
EOS
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "actionpack", '~> 2.3.11'
s.add_development_dependency "rspec"
s.add_development_dependency "temporaries"
s.files = Dir["{doc,lib,rails}/**/*"] + %w(LICENSE README.markdown Rakefile CHANGELOG)
s.test_files = Dir["spec/**/*"]
s.require_path = 'lib'
s.specification_version = 3
end