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
|
# -*- 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
|