Sha256: b6e78b10f2b7c063964629ab7a322324c6e69e33a4cb2a0fecf0237571616d3b
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'reform/rails/version' Gem::Specification.new do |spec| spec.name = "reform-rails" spec.version = Reform::Rails::VERSION spec.authors = ["Nick Sutterer"] spec.email = ["apotonick@gmail.com"] spec.summary = %q{Automatically load and include all common Rails form features.} spec.description = %q{Automatically load and include all common Reform features for a standard Rails environment.} spec.homepage = "https://github.com/trailblazer/reform-rails" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test/|spec/|features/|database.sqlite3)}) end spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "reform", ">= 2.3.1", "< 3.0.0" spec.add_dependency "activemodel", ">= 5.0" end
Version data entries
7 entries across 7 versions & 1 rubygems