Sha256: 407fdebb87b9e45689f693052d0a417e7ac42fd1516fbbb49482953238ef6171

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 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@matiq.com"]
  s.homepage = "http://matiq.com"
  s.license = "MIT"
  s.platform = Gem::Platform::RUBY

  s.metadata["source_code_uri"] = "https://github.com/matique/formie"

  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.1 formie.gemspec