Sha256: 2dc630161042b5bdd1ef31c6a4b6dbe087421fe323c11a0d562164c08bdf0158
Contents?: true
Size: 1.06 KB
Versions: 18
Compression:
Stored size: 1.06 KB
Contents
module Pantograph module Actions class SkipDocsAction < Action def self.run(params) ENV["PANTOGRAPH_SKIP_DOCS"] = "1" end def self.step_text nil end ##################################################### # @!group Documentation ##################################################### def self.description "Skip the creation of the pantograph/README.md file when running pantograph" end def self.available_options end def self.output end def self.return_value end def self.details "Tell _pantograph_ to not automatically create a `pantograph/README.md` when running _pantograph_. You can always trigger the creation of this file manually by running `pantograph docs`." end def self.authors ["KrauseFx"] end def self.is_supported?(platform) true end def self.example_code [ 'skip_docs' ] end def self.category :misc end end end end
Version data entries
18 entries across 18 versions & 1 rubygems