Sha256: 2ecbb41d97aa9413f83c5c2d3162b0542857505d9196e3d8db3634e5e76102a3
Contents?: true
Size: 1.01 KB
Versions: 93
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true require './lib/builder/version' PKG_VERSION = Builder::VERSION PKG_FILES = Dir[ '[A-Z]*', 'doc/**/*', 'lib/**/*.rb', 'test/**/*.rb', 'rakelib/**/*' ] Gem::Specification.new do |s| #### Basic information. s.name = 'builder' s.version = PKG_VERSION s.summary = "Builders for MarkUp." s.description = %{\ Builder provides a number of builder objects that make creating structured data simple to do. Currently the following builder objects are supported: * XML Markup * XML Events } s.files = PKG_FILES s.require_path = 'lib' s.test_files = PKG_FILES.select { |fn| fn =~ /^test\/test/ } s.has_rdoc = true # s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a s.rdoc_options << '--title' << 'Builder -- Easy XML Building' << '--main' << 'README.rdoc' << '--line-numbers' s.authors = ["Jim Weirich", "Aaron Patterson"] s.email = "aron.patterson@gmail.com" s.homepage = "https://github.com/tenderlove/builder" s.license = 'MIT' end
Version data entries
93 entries across 55 versions & 17 rubygems