Sha256: f3b7b4d9939d749699e399122bf0d0a79d061060cb331a07e8eb47f0bf3c1214
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "simple_form_unique/version" Gem::Specification.new do |s| s.name = "simple_form_unique" s.version = SimpleFormUnique::VERSION s.authors = ["Peter Ragone"] s.email = ["peter@prmtech.com"] s.license = 'MIT' s.homepage = "http://github.com/pcragone/simple_form_unique" s.summary = "Adds unique inputs to the simple_form library" s.description = <<-eos Sets a form to invalid if a value entered into the specified input is not unique among all instances of that model; UI can display this as various formats, with the default being a green 'Available' and a red 'Unavailable' eos s.rubyforge_project = "simple_form_unique" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] # specify any dependencies here; for example: # s.add_development_dependency "rspec" s.add_runtime_dependency "rails", "~> 4.2" s.add_runtime_dependency "simple_form", "~> 3.1" # s.add_runtime_dependency "jquery-rails", ">= 1.0.14" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_form_unique-0.0 | simple_form_unique.gemspec |