Sha256: d510add008b492220fcff33243da99d8ae78a21dc5938ce68f790b9743cfaaea
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'formie/version' Gem::Specification.new do |s| s.name = 'formie' s.version = Formie::VERSION s.summary = 'Formie is like a Rails helper, but uses the notation of a partial.' s.description = <<-'END' Formie implements low level template-based Rails 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' s.license = 'MIT' s.platform = Gem::Platform::RUBY s.files = `git ls-files -z`.split("\x0") s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ['lib'] s.add_development_dependency 'bundler', '~> 1' s.add_development_dependency 'rake', '~> 12' s.add_development_dependency 'appraisal', '~> 2' s.add_development_dependency 'combustion', '~> 0' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
formie-0.9.13 | formie.gemspec |
formie-0.9.12 | formie.gemspec |
formie-0.9.11 | formie.gemspec |