We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e459c3f commit 94eb2f5Copy full SHA for 94eb2f5
1 file changed
upload-api-docs
@@ -29,6 +29,7 @@ class FileUploader
29
end
30
31
def upload_docs
32
+ puts "Uploading to #{@bucket}"
33
Dir.glob("#{@docs_path}/**/*").each do |file|
34
next if File.directory?(file)
35
@@ -112,6 +113,7 @@ def generate_docs(options)
112
113
'--exclude', './spec',
114
'--readme', './README.md',
115
'-o', options[:docs_path]
116
+ File.delete(File.join(options[:docs_path], 'frames.html')) rescue nil
117
)
118
119
0 commit comments