Sha256: 6bb008d64bc71a3774a22217aca4c021d3202c2b82d4f3bb47ce7b781d726d0a
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require File.expand_path('../lib/yard/version', __FILE__) Gem::Specification.new do |s| s.name = "yard" s.summary = "Documentation tool for consistent and usable documentation in Ruby." s.description = <<-eof YARD is a documentation generation tool for the Ruby programming language. It enables the user to generate consistent, usable documentation that can be exported to a number of formats very easily, and also supports extending for custom Ruby constructs such as custom class level definitions. eof s.version = YARD::VERSION s.author = "Loren Segal" s.email = "lsegal@soen.ca" s.homepage = "http://yardoc.org" s.platform = Gem::Platform::RUBY s.files = `git ls-files`.strip.split(/\s+/).reject {|f| f.match(%r{^spec/}) } s.require_paths = ['lib'] s.executables = ['yard', 'yardoc', 'yri'] s.license = 'MIT' if s.respond_to?(:license=) s.metadata['yard.run'] = 'yri' s.add_runtime_dependency 'webrick', '~> 1.7.0' end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
devcycle-ruby-server-sdk-2.0.0 | vendor/bundle/ruby/3.0.0/gems/yard-0.9.28/yard.gemspec |
yard-0.9.28 | yard.gemspec |
yard-0.9.27 | yard.gemspec |