Sha256: 7432f8791d5f40644a1bd518f5132a4fe4a9988b51cacddc59484185ab523d31

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# 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         = ['anthony@sticksnleaves.com']

  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.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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vcardio-0.1.0 vcardio.gemspec