Sha256: 8d5a9b33d58ed6f184dda543d405189700e97b876c481f9bec4ce3433bfc2d5f
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'formie/version' Gem::Specification.new do |s| s.name = "formie" s.version = Formie::VERSION s.platform = Gem::Platform::RUBY s.summary = "Formie is like a helper, but uses the notation of a partial." s.description = <<-'END' Formie implements low level template-based helpers. It injects the formies into the ActionView module. The form-bounded as well as the unbounded templates are supported. Still, the ActionView functionality (e.g. text_field) is kept untouched. END s.authors = ['Dittmar Krall'] s.email = ['dittmar.krall@matique.de'] s.homepage = 'http://matique.de' files = Dir["{app,lib,config}/**/*.rb"] files += %w{Gemfile MIT-LICENSE README.md formie.gemspec} s.files = files s.require_paths = ["lib"] s.add_dependency "rails" s.add_development_dependency "sqlite3" s.add_development_dependency "rspec-rails" s.add_development_dependency "capybara" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
formie-0.7.1 | formie.gemspec |
formie-0.6.6 | formie.gemspec |
formie-0.6.5 | formie.gemspec |