Sha256: 22f4fc199100c41f23d516fc625ff63608e8e3c61d2c387c63ccc79721bcfd16
Contents?: true
Size: 1.31 KB
Versions: 13
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true require_relative "lib/rpdoc/version" Gem::Specification.new do |spec| spec.name = "rpdoc" spec.version = Rpdoc::VERSION spec.authors = ["yuntai"] spec.email = ["yuntai.yang@kdanmobile.com"] spec.summary = "RSpec to Postman Documentation Tool" spec.description = "Rpdoc is a simple Postman API documentation tool, which transforms RSpec examples to Postman collection." spec.homepage = "https://github.com/kdan-mobile-software-ltd/rpdoc" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0") # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'json_requester', '~> 1.0' spec.add_development_dependency 'railties', '~> 6.1.4' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'pry', '~> 0.14.1' spec.add_development_dependency 'rubocop', '~> 1.0' end
Version data entries
13 entries across 13 versions & 1 rubygems