Sha256: 5f14caf8748075f9b2b29a5c021608c9e99206034ff8fde4c14aa362057223c6

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# -*- 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.required_ruby_version = '>= 1.9'

  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']

  # Development dependencies
  spec.add_development_dependency 'rubocop', '= 0.31.0'
  spec.add_development_dependency 'rspec',   '~> 2.14'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mixlib-versioning-1.1.0 mixlib-versioning.gemspec