Sha256: 164d500ab8a45520911e06e9c4dd50f4285ef01ac39e3e0a4935cf1a09fb7852
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "vobject/version" Gem::Specification.new do |spec| spec.name = "ruby-vobject" spec.version = Vobject::VERSION spec.authors = ["Peter Tam", "Nick Nicholas"] spec.email = ["peter.tam@ribose.com", "opoudjis@gmail.com"] #spec.platform = Gem::Platform.local spec.require_paths = ["lib"] spec.summary = "Parse iCalendar or vCard into a ruby hash." spec.description = "The main purpose of the gem is to parse vobject formatted text into a ruby hash format. Currently there are two possiblities of vobjects, namely iCalendar (https://tools.ietf.org/html/rfc5545) and vCard (https://tools.ietf.org/html/rfc6350)." spec.homepage = "https://github.com/riboseinc/ruby-vobject" spec.license = "BSD-2-Clause" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" #spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.1" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "rspec-json_expectations" spec.add_development_dependency "byebug" spec.add_runtime_dependency "rsec", "~> 0.4" spec.add_runtime_dependency "tzinfo" spec.post_install_message = <<-MSG Attention please! This gem has been renamed to "vobject". Please update your dependencies. Public API remains unchanged. Visit https://github.com/riboseinc/ruby-vobject for help. MSG end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-vobject-1.0.99 | ruby-vobject.gemspec |