forked from trailblazer/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcells.gemspec
26 lines (21 loc) · 1003 Bytes
/
cells.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
26
# -*- 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