forked from formtastic/formtastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formtastic.gemspec
35 lines (29 loc) · 1.44 KB
/
formtastic.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
32
33
34
35
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "formtastic/version"
Gem::Specification.new do |s|
s.name = %q{formtastic}
s.version = Formtastic::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [%q{Justin French}]
s.email = [%q{[email protected]}]
s.homepage = %q{http://github.com/justinfrench/formtastic}
s.summary = %q{A Rails form builder plugin/gem with semantically rich and accessible markup}
s.description = %q{A Rails form builder plugin/gem with semantically rich and accessible markup}
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.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = ["README.textile"]
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = %q{1.3.6}
s.add_dependency(%q<rails>, ["~> 3.0"])
s.add_development_dependency(%q<rspec-rails>, ["~> 2.5"])
s.add_development_dependency(%q<rspec_tag_matchers>, [">= 1.0.0"])
s.add_development_dependency(%q<hpricot>, ["~> 0.8.3"])
s.add_development_dependency(%q<BlueCloth>) # for YARD
s.add_development_dependency(%q<yard>, ["~> 0.6"])
s.add_development_dependency(%q<rcov>, ["~> 0.9.9"])
s.add_development_dependency(%q<colored>)
end