2010-02-06 13:25:46 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2010-12-16 10:29:09 -05:00
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "simple_form/version"
|
2010-02-06 13:25:46 -05:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2010-12-16 10:29:09 -05:00
|
|
|
s.name = "simple_form"
|
|
|
|
s.version = SimpleForm::VERSION.dup
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.summary = "Forms made easy!"
|
|
|
|
s.email = "contact@plataformatec.com.br"
|
|
|
|
s.homepage = "http://github.com/plataformatec/simple_form"
|
|
|
|
s.description = "Forms made easy!"
|
|
|
|
s.authors = ['José Valim', 'Carlos Antônio']
|
2010-02-06 13:25:46 -05:00
|
|
|
|
2010-12-16 10:29:09 -05:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
|
|
s.test_files -= Dir["test/support/country_select/**/*"]
|
|
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
2010-02-06 13:25:46 -05:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
|
2010-12-16 10:29:09 -05:00
|
|
|
s.rubyforge_project = "simple_form"
|
2011-06-21 23:00:55 -04:00
|
|
|
|
|
|
|
s.add_dependency('activemodel', '~> 3.0')
|
|
|
|
s.add_dependency('actionpack', '~> 3.0')
|
2010-02-06 13:25:46 -05:00
|
|
|
end
|