forked from dmcouncil/formtastic-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
formtastic-bootstrap.gemspec
36 lines (33 loc) · 1.23 KB
/
formtastic-bootstrap.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
36
require File.expand_path('../lib/formtastic-bootstrap/version', __FILE__)
Gem::Specification.new do |s|
s.name = "formtastic-bootstrap"
s.version = FormtasticBootstrap::VERSION
s.authors = ["Matthew Bellantoni", "Aaron Stone"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/mjbellantoni/formtastic-bootstrap"
s.description = "Formtastic form builder to generate Twitter Bootstrap-friendly markup."
s.summary = "Formtastic form builder to generate Twitter Bootstrap-friendly markup."
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = Dir[
".document",
"LICENSE.txt",
"README.md",
"VERSION",
"lib/**/*.rb",
"vendor/assets/stylesheets/formtastic-bootstrap.css"
]
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.10"
s.add_dependency('formtastic', [">= 3.0"])
s.add_development_dependency('rake')
s.add_development_dependency('tzinfo')
s.add_development_dependency('bundler')
s.add_development_dependency('nokogiri', ["< 1.6.0"])
s.add_development_dependency('rspec_tag_matchers', ["~> 1.0"])
s.add_development_dependency('ammeter', ["~> 0.2"])
s.add_development_dependency('actionpack', ["~> 3.2"])
end