heartcombo--simple_form/simple_form.gemspec

26 lines
870 B
Ruby
Raw Normal View History

2010-02-06 18:25:46 +00:00
# -*- encoding: utf-8 -*-
2010-12-16 15:29:09 +00:00
$:.push File.expand_path("../lib", __FILE__)
require "simple_form/version"
2010-02-06 18:25:46 +00:00
Gem::Specification.new do |s|
2010-12-16 15:29:09 +00:00
s.name = "simple_form"
s.version = SimpleForm::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Forms made easy!"
s.email = "opensource@plataformatec.com.br"
2012-03-03 23:07:25 +00:00
s.homepage = "https://github.com/plataformatec/simple_form"
2010-12-16 15:29:09 +00:00
s.description = "Forms made easy!"
s.authors = ['José Valim', 'Carlos Antônio', 'Rafael França']
s.license = "MIT"
2010-02-06 18:25:46 +00:00
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"]
s.test_files = Dir["test/**/*.rb"]
2010-12-16 15:29:09 +00:00
s.test_files -= Dir["test/support/country_select/**/*"]
2010-02-06 18:25:46 +00:00
s.require_paths = ["lib"]
2010-12-16 15:29:09 +00:00
s.rubyforge_project = "simple_form"
s.add_dependency('activemodel', '>= 5.0')
s.add_dependency('actionpack', '>= 5.0')
2010-02-06 18:25:46 +00:00
end