-
Notifications
You must be signed in to change notification settings - Fork 33
/
valid_url.gemspec
24 lines (19 loc) · 919 Bytes
/
valid_url.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "valid_url/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "valid_url"
s.version = ValidUrl::VERSION
s.authors = ["Roman Ralovets"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/ralovets/valid_url"
s.summary = "The most accurate and reliable rails url validator"
s.description = "Provides with the ability to validate url (Rails 4). Allow using http, https and schema-less urls, checks domain zones, IP-based hostnames, name space specifications and hostname characters."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_development_dependency 'rspec'
s.add_dependency "rails"
s.add_dependency "addressable"
end