forked from wmoxam/phonie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phonie.gemspec
23 lines (20 loc) · 986 Bytes
/
phonie.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "phonie/version"
Gem::Specification.new do |s|
s.name = "phonie"
s.version = Phonie::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Tomislav Car', 'Todd Eichel', 'Don Morrison', 'Wesley Moxam', 'Lance Ivy']
s.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
s.homepage = "http://github.com/wmoxam/phonie"
s.summary = %q{Phone number parsing, validation and formatting}
s.description = %q{Phone number parsing, validation and formatting}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency 'activemodel', '~> 4.0'
s.add_development_dependency 'minitest', '~> 4.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'nokogiri'
end