Sha256: dc519a4c255d0a4d0831c8dd2313d71d9899be3113b7ce4eff8d4807499903e3

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'indieweb/post_types/version'

Gem::Specification.new do |spec|
  spec.name          = 'indieweb-post_types'
  spec.version       = Indieweb::PostTypes::VERSION
  spec.authors       = ['Stephen Rushe']
  spec.email         = ['steve+posttypes@deeden.co.uk']

  spec.summary       = 'IndieWeb Post Type Discovery for Microformats 2 JSON.'
  spec.description   = 'IndieWeb Post Type Discovery for Microformats 2 JSON.'
  spec.homepage      = 'https://github.com/srushe/indieweb-post_types'
  spec.license       = 'MIT'

  spec.metadata = {
    'bug_tracker_uri' => 'https://github.com/srushe/indieweb-post_types/issues',
    'changelog_uri'   => 'https://github.com/srushe/indieweb-post_types/blob/master/CHANGELOG.md',
    'homepage_uri'    => 'https://github.com/srushe/indieweb-post_types/'
  }

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.16'
  spec.add_development_dependency 'rake', '~> 12.3'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
indieweb-post_types-0.2.0 indieweb-post_types.gemspec