Sha256: 6a3cd46e60ba5164e22c83bf9c595d75aa0b94616054867c0e574f93e5796a4d

Contents?: true

Size: 968 Bytes

Versions: 2

Compression:

Stored size: 968 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"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
formie-1.1.4 formie.gemspec
formie-1.1.3 formie.gemspec