Sha256: 90e6700770b3741be9a25aaa7a941e6b4b3212717cf57b09d708993b28a11dd3
Contents?: true
Size: 1009 Bytes
Versions: 1
Compression:
Stored size: 1009 Bytes
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@matiq.com"] s.homepage = "https://github.com/matique/formie" s.license = "MIT" s.platform = Gem::Platform::RUBY s.files = `git ls-files -z`.split("\x0") s.require_paths = ["lib"] s.add_development_dependency "appraisal" s.add_development_dependency "combustion" s.add_development_dependency "minitest" s.add_development_dependency "sqlite3" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
formie-1.1.2 | formie.gemspec |