Skip to content

Commit

Permalink
Update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
haath committed May 27, 2019
1 parent ae0f8f7 commit 60fd92c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL maintainer="[email protected]"
ARG BUILD_TAG=v0.1.0
ENV BUILD_TAG $BUILD_TAG

COPY Gemfile Gemfile.lock yaml-cv.gemspec /src/
COPY Gemfile yaml-cv.gemspec /src/

RUN cd /src && \
bundle install
Expand Down
2 changes: 1 addition & 1 deletion yaml-cv.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Gem::Specification.new do |s|

s.name = "yaml-cv"
s.version = ENV.key?("TRAVIS_TAG") ? ENV["TRAVIS_TAG"][1...] : (ENV.key?("BUILD_TAG") ? ENV["BUILD_TAG"][1...] : "0.1.0")
s.version = (ENV.key?("TRAVIS_TAG") and !ENV["TRAVIS_TAG"].empty?) ? ENV["TRAVIS_TAG"][1...] : (ENV.key?("BUILD_TAG") ? ENV["BUILD_TAG"][1...] : "0.1.0")

s.summary = "Static CV generator from a YAML file, in HTML or PDF format."
s.description = "Simple tool, with which you can fully populate your CV in user-friendly YAML and then have it generated in HTML or PDF format."
Expand Down

0 comments on commit 60fd92c

Please sign in to comment.