Sha256: 37026feb111e7ed2889fb9a958ac66dbb7f6d58c0d4be7f11ba9c14c5ce6f283

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 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 "bundler"
  s.add_development_dependency "rake"
  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.0 formie.gemspec