Revisions

gist: 224505 Download_button fork
public
Public Clone URL: git://gist.github.com/224505.git
Embed All Files: show embed
Rakefile #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "cells"
    gem.summary = %Q{Components for Rails}
    gem.description = %Q{Cells are like controllers in Rails - they have methods and corresponding views. However, their big advantage to controllers is their modularity: you can have as many cells on a page as you want. That’s as if you had multiple controllers in one page, where each "controller" renders only a certain part of the page. As if this wasn’t enough, cells are superfast and lightweight.}
    gem.email = "apotonick@gmail.com"
    gem.homepage = "http://github.com/apotonick/cells"
    gem.authors = ["Nick Sutterer "]
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end