-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvcardio.gemspec
35 lines (29 loc) · 1.15 KB
/
vcardio.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vcardio/version'
Gem::Specification.new do |spec|
spec.name = 'vcardio'
spec.version = VCardio::VERSION
spec.authors = ['Anthony Smith']
spec.email = ['[email protected]']
spec.summary = 'vCard builder and parser for Ruby'
spec.description = 'RFC 6350 compliant implementation of vCard for Ruby'
spec.homepage = 'https://github.com/sticksnleaves/vcardio.git'
spec.license = 'MIT'
spec.files = (
`git ls-files -z`.split("\x0").reject do |f|
f.match(/^(test|spec|features)\//)
end
)
spec.bindir = 'exe'
spec.executables = spec.files.grep(/^exe\//) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.2'
spec.add_dependency 'manilla', '~> 1.0.0'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'simplecov'
end