Sha256: cfc77b96393fb16d1bfcb3199c70308060770a899d98267996d70dee5c09ec47

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

Rpdoc.configure do |config|

  # (Optional) You can disable rpdoc generation process manually.
  # config.rpdoc_enable = true

  # (Optional) Apikey for your Postman account, used if need to push.
  # config.postman_apikey = 'postman_apikey'

  # (Optional) Workspace that your collection will be push to. Default your account's personal workspace. 
  # config.collection_workspace = 'collection_workspace'
  
  # (Optional) Your existing collection uid. Will update it when using :push_and_update push strategy.
  # config.collection_uid = 'collection_uid'
  
  # (Optional) Collection name.
  # config.collection_name = 'Rpdoc'
  
  # (Optional) Your Rails server API host.
  # config.rspec_server_host = '{{server_host}}'

  # (Optional) Since Rspec generates many noisy headers, you can filter them.
  # config.rspec_request_allow_headers = ['User-Agent', 'Content-Type', 'Authorization']

  # (Optional) Folder that Rpdoc use for json data generation and save.
  # config.rpdoc_root = 'rpdoc'

  # (Optional) Filename to store RSpec request json data.
  # config.rpdoc_request_filename = 'request.json'

  # (Optional) Filename to store Postman description markdown data.
  # config.rpdoc_description_filename = 'description.md'

  # (Optional) Filename to store RSpec collection json data.
  # config.rpdoc_collection_filename = 'collection.json'

  # (Optional) Auto push collection to Postman server or not.
  # config.rpdoc_auto_push = false

  # (Optional) Auto push strategy, including :push_and_create and :push_and_update
  # config.rpdoc_auto_push_strategy = :push_and_create
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rpdoc-0.1.1 lib/generators/templates/initializer.rb