Sha256: 0f83ae37950e76613eb1b7d46a3e4955372de02b050987435f1a4009ac66eda8

Contents?: true

Size: 1.61 KB

Versions: 1

Compression:

Stored size: 1.61 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'uri'
require 'stash/wrapper/module_info'

Gem::Specification.new do |spec|
  spec.name          = Stash::Wrapper::NAME
  spec.version       = Stash::Wrapper::VERSION
  spec.authors       = ['David Moles']
  spec.email         = ['david.moles@ucop.edu']
  spec.summary       = 'Parses and generates Stash wrapper XML documents'
  spec.description   = 'A gem for working with the Stash wrapper XML format'
  spec.license       = 'MIT'

  origin = `git config --get remote.origin.url`.chomp
  origin_uri = origin.start_with?('http') ? URI(origin) : URI(origin.sub('git@github.com:', 'https://github.com/'))
  spec.homepage = URI::HTTP.build(host: origin_uri.host, path: origin_uri.path.chomp('.git')).to_s

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }

  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_dependency 'typesafe_enum', '~> 0.1', '>= 0.1.5'
  spec.add_dependency 'xml-mapping_extensions', '~> 0.3', '>= 0.3.5'

  spec.add_development_dependency 'bundler', '~> 1.7'
  spec.add_development_dependency 'equivalent-xml', '~> 0.6.0'
  spec.add_development_dependency 'rake', '~> 10.4'
  spec.add_development_dependency 'rspec', '~> 3.2'
  spec.add_development_dependency 'simplecov', '~> 0.9.2'
  spec.add_development_dependency 'simplecov-console', '~> 0.2.0'
  spec.add_development_dependency 'rubocop', '~> 0.32.1'
  spec.add_development_dependency 'yard', '~> 0.8'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stash-wrapper-0.1.5 stash-wrapper.gemspec