forked from ryanb/nested_form
-
Notifications
You must be signed in to change notification settings - Fork 15
/
nested_form.gemspec
26 lines (22 loc) · 1.03 KB
/
nested_form.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 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'nested_form/version'
Gem::Specification.new do |s|
s.name = "nested_form"
s.version = NestedForm::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ryan Bates", "Andrea Singh"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/madebydna/nested_form"
s.summary = "Gem to conveniently handle multiple models in a single form."
s.description = "Gem to conveniently handle multiple models in a single form. Rails 2 plugin by Ryan Bates converted into a gem."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "nested_form"
s.add_development_dependency "bundler", ">= 1.0.0.rc.5"
s.add_development_dependency "rspec", "~> 2.0.0.beta.22"
s.add_development_dependency "rr"
s.add_development_dependency "rails", "~> 3.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end