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"
|
2012-03-03 18:07:25 -05:00
|
|
|
s.homepage = "https://github.com/plataformatec/simple_form"
|
2010-12-16 10:29:09 -05:00
|
|
|
s.description = "Forms made easy!"
|
2012-01-11 12:53:20 -05:00
|
|
|
s.authors = ['José Valim', 'Carlos Antônio', 'Rafael França']
|
2013-03-01 20:36:57 -05:00
|
|
|
s.license = "MIT"
|
2010-02-06 13:25:46 -05:00
|
|
|
|
2012-01-11 12:46:41 -05:00
|
|
|
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"]
|
2012-10-08 09:03:50 -04:00
|
|
|
s.test_files = Dir["test/**/*.rb"]
|
2010-12-16 10:29:09 -05:00
|
|
|
s.test_files -= Dir["test/support/country_select/**/*"]
|
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
|
|
|
|
2013-06-25 17:06:47 -04:00
|
|
|
s.add_dependency('activemodel', '>= 4.0.0', '< 4.1')
|
|
|
|
s.add_dependency('actionpack', '>= 4.0.0', '< 4.1')
|
2010-02-06 13:25:46 -05:00
|
|
|
end
|