# -*- encoding: utf-8 -*- lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mixlib/versioning/version" Gem::Specification.new do |spec| spec.name = "mixlib-versioning" spec.version = Mixlib::Versioning::VERSION spec.authors = ["Seth Chisamore", "Christopher Maier"] spec.email = ["schisamo@chef.io", "cm@chef.io"] spec.description = "General purpose Ruby library that allows you to parse, compare and manipulate version strings in multiple formats." spec.summary = spec.description spec.homepage = "https://github.com/chef/mixlib-versioning" spec.license = "Apache 2.0" spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] end