-
Notifications
You must be signed in to change notification settings - Fork 232
/
omnicontacts.gemspec
25 lines (21 loc) · 1015 Bytes
/
omnicontacts.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
# encoding: utf-8
require File.expand_path('../lib/omnicontacts', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'omnicontacts'
gem.description = %q{A generalized Rack middleware for importing contacts from major email providers.}
gem.authors = ['Diego Castorina', 'Jordan Lance', 'Asma Tameem', 'Randy Villanueva']
gem.email = ['[email protected]', '[email protected]']
gem.add_runtime_dependency 'rack'
gem.add_runtime_dependency 'json'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rspec'
gem.version = OmniContacts::VERSION
gem.files = `git ls-files`.split("\n")
gem.homepage = 'http://github.com/Diego81/omnicontacts'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version=
gem.summary = gem.description
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
end