From 16aaafc46f6fcdb579ddee71926a4f0c66bf6bb0 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Fri, 2 Jun 2023 08:13:28 +0800 Subject: [PATCH] #21 doc --- .rultor.yml | 12 +++--------- Gemfile | 2 ++ jekyll-plantuml.gemspec | 3 +-- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.rultor.yml b/.rultor.yml index 7e84b46..79624c4 100644 --- a/.rultor.yml +++ b/.rultor.yml @@ -1,12 +1,10 @@ +docker: + image: yegor256/rultor-image:1.20.0 assets: rubygems.yml: yegor256/home#assets/rubygems.yml - s3cfg: yegor256/home#assets/s3cfg install: | - export GEM_HOME=~/.ruby - export GEM_PATH=$GEM_HOME:$GEM_PATH - sudo gem install pdd -v 0.20.5 - bundle install pdd -f /dev/null + sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile" release: script: |- bundle exec rake @@ -20,7 +18,3 @@ release: merge: script: |- bundle exec rake -deploy: - script: |- - echo "There is nothing to deploy" - exit -1 diff --git a/Gemfile b/Gemfile index 851fabc..4a55942 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,4 @@ source 'https://rubygems.org' gemspec + +gem 'rake', '13.0.6', require: false diff --git a/jekyll-plantuml.gemspec b/jekyll-plantuml.gemspec index 185e85a..9e9b8d9 100644 --- a/jekyll-plantuml.gemspec +++ b/jekyll-plantuml.gemspec @@ -16,12 +16,11 @@ Gem::Specification.new do |s| s.description = "PlantUML diagrams in Jekyll pages" s.authors = ["Yegor Bugayenko"] s.email = 'yegor@tpc2.com' - s.homepage = 'http://github.com/yegor256/jekyll-plantuml' + s.homepage = 'https://github.com/yegor256/jekyll-plantuml' s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.rdoc_options = ["--charset=UTF-8"] s.extra_rdoc_files = %w[README.md LICENSE.txt] s.add_runtime_dependency 'jekyll', '>2.0' - s.add_development_dependency 'rake', '12.0.0' end