public
Description: Rails plugin to make calling partials in views more fun.
Homepage: http://www.railsjedi.com/posts/22
Clone URL: git://github.com/jcnetdev/better_partials.git
better_partials / better_partials.gemspec
100644 27 lines (20 sloc) 0.736 kb
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
26
27
Gem::Specification.new do |s|
  s.name = 'better_partials'
  s.version = '1.1.3'
  s.date = '2009-04-13'
  
  s.summary = "Makes calling partials in views look better and more fun."
  s.description = "Wrapper around render :partial that removes the need to use :locals, and allows blocks to be taken easily"
  
  s.authors = ['RailsJedi']
  s.email = 'railsjedi@gmail.com'
  s.homepage = 'http://www.railsjedi.com/posts/22'
  
  s.has_rdoc = true
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
 
  s.files = ["MIT-LICENSE",
             "README",
             "Rakefile",
             "better_partials.gemspec",
             "init.rb",
             "lib/better_partials.rb",
             "uninstall.rb"]
 
end