Sha256: 6bfbf50b36ede1b416945e0e4f7691f15b48af3f6bd982bc10effd4a24fb7221

Contents?: true

Size: 1003 Bytes

Versions: 3

Compression:

Stored size: 1003 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'cells/version'

Gem::Specification.new do |s|
  s.name        = "cells"
  s.version     = Cells::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Nick Sutterer"]
  s.email       = ["apotonick@gmail.com"]
  s.homepage    = "http://cells.rubyforge.org"
  s.summary     = %q{View Components for Rails.}
  s.description = %q{Cells are View Components for Rails. They are lightweight controllers, can be rendered in views and thus provide an elegant and fast way for encapsulation and component-orientation.}
  
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  
  s.add_dependency "rails",   "~> 3.0"
  
  s.add_development_dependency "shoulda"
  s.add_development_dependency "haml"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cells-3.5.0 cells.gemspec
cells-3.5.0.beta2 cells.gemspec
cells-3.5.0.beta1 cells.gemspec