forked from trailblazer/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cells.gemspec
31 lines (26 loc) · 1.24 KB
/
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
27
28
29
30
31
# -*- 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 = ["[email protected]"]
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 "actionpack", ">= 3.0"
s.add_dependency "railties", ">= 3.0"
s.add_development_dependency "rake"
s.add_development_dependency "haml"
s.add_development_dependency "slim"
s.add_development_dependency "simple_form"
s.add_development_dependency "tzinfo" # FIXME: why the hell do we need this for 3.1?
s.add_development_dependency "minitest", ">= 2.8.1"
end