Sha256: 86bdcddb5637083fede8b2d2254fe15e9d852fc854d0526fc3e1be5f71ff84ef

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'html5_validators/version'

Gem::Specification.new do |s|
  s.name        = 'html5_validators'
  s.version     = Html5Validators::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Akira Matsuda']
  s.email       = ['ronnie@dio.jp']
  s.homepage    = 'https://github.com/amatsuda/html5_validators'
  s.summary     = 'Automatic client side validation using HTML5 Form Validation'
  s.description = 'A gem/plugin for Rails 3+ that enables client-side validation using ActiveModel + HTML5'
  s.license     = 'MIT'

  s.rubyforge_project = 'html5_validators'

  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']
  s.add_development_dependency 'rspec-rails'
  s.add_development_dependency 'capybara', '>= 2'
  s.add_development_dependency 'sqlite3'
  s.add_development_dependency 'rake'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
html5_validators-1.4.0 html5_validators.gemspec
html5_validators-1.3.0 html5_validators.gemspec
html5_validators-1.2.2 html5_validators.gemspec
html5_validators-1.2.1 html5_validators.gemspec
html5_validators-1.2.0 html5_validators.gemspec