-
Notifications
You must be signed in to change notification settings - Fork 4
/
client_side_validations-turbolinks.gemspec
40 lines (34 loc) · 1.59 KB
/
client_side_validations-turbolinks.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
30
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/client_side_validations/turbolinks/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'client_side_validations-turbolinks'
s.version = ClientSideValidations::Turbolinks::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Brian Cardarella"]
s.email = ["bcardarella@gmail.com"]
s.homepage = 'https://github.com/DavyJonesLocker/client_side_validations-turbolinks'
s.summary = %q{Turbolinks Plugin for ClientSideValidations}
s.description = %q{Turbolinks Plugin for ClientSideValidaitons}
s.license = 'MIT'
s.files = `git ls-files -- {lib/*,vendor/*,*.gemspec}`.split("\n")
s.require_paths = ['lib']
s.add_dependency 'client_side_validations', '~> 0.0.0'
s.add_dependency 'turbolinks', '~> 2.5'
s.add_development_dependency 'mocha', '~> 1.1'
s.add_development_dependency 'm', '~> 1.3'
s.add_development_dependency 'minitest', '>= 4.7.5', '< 6.0.0'
s.add_development_dependency 'simplecov', '~> 0.9.1'
s.add_development_dependency 'coveralls', '~> 0.7.3'
s.add_development_dependency 'appraisal', '~> 1.0'
if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.0')
s.add_development_dependency 'byebug', '~> 4.0'
else
s.add_development_dependency 'debugger', '~> 1.6'
end
# For QUnit testing
s.add_development_dependency 'sinatra', '~> 1.4'
s.add_development_dependency 'shotgun', '~> 0.9'
s.add_development_dependency 'thin', '~> 1.6'
s.add_development_dependency 'json', '~> 1.8'
s.add_development_dependency 'coffee-script', '~> 2.3'
end