-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient_side_validations-simple_form.gemspec
29 lines (24 loc) · 1.17 KB
/
client_side_validations-simple_form.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/client_side_validations/simple_form/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Brian Cardarella"]
gem.email = ["[email protected]"]
gem.description = %q{SimpleForm Plugin for ClientSideValidaitons}
gem.summary = %q{SimpleForm Plugin for ClientSideValidations}
gem.homepage = 'https://github.com/dockyard/client_side_validations-simple_form'
gem.files = `git ls-files -- {lib/*,vendor/*,*.gemspec}`.split("\n")
gem.name = 'client_side_validations-simple_form'
gem.require_paths = ['lib']
gem.version = ClientSideValidations::SimpleForm::VERSION
gem.add_dependency 'client_side_validations', '~> 3.2.0'
gem.add_dependency 'simple_form', '>= 2.0.3'
gem.add_development_dependency 'rails', '~> 3.2.0'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'm'
# For QUnit testing
gem.add_development_dependency 'sinatra', '~> 1.0'
gem.add_development_dependency 'shotgun'
gem.add_development_dependency 'thin'
gem.add_development_dependency 'json'
gem.add_development_dependency 'coffee-script'
end