Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
moklidia committed Jul 31, 2023
2 parents 6cc3e6b + c8aa9f2 commit deabccb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
tags:
- 'v*.*.*'

env:
RELEASE_VERSION: ${{ github.ref_name }}
LINUX_BIN_PATH: uffizzi-${{ github.ref_name }}-linux-x86_64
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ RUN apk --update add --no-cache \
ruby-json \
openssl \
groff \
mandoc \
man-pages \
bash \
vim

Expand All @@ -35,7 +33,6 @@ RUN bundle exec rake install
FROM ruby:3.0.3 AS shell

RUN apt-get update && apt-get install -y \
man-db \
vim \
bash \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
uffizzi-cli (2.0.10)
uffizzi-cli (2.0.11)
activesupport
awesome_print
faker
Expand Down
4 changes: 2 additions & 2 deletions lib/uffizzi/cli/common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ module Uffizzi
class Cli::Common
class << self
def show_manual(command_name)
manual_doc_path = File.join(Uffizzi.root, "man/#{command_name}")
manual_doc_path = File.join(Uffizzi.root, "man/#{command_name}.ronn")

Open3.pipeline("man #{manual_doc_path}")
Uffizzi.ui.say(File.read(manual_doc_path))
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/uffizzi/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Uffizzi
VERSION = '2.0.10'
VERSION = '2.0.11'
end

0 comments on commit deabccb

Please sign in to comment.