assets: rubygems.yml: yegor256/home#assets/rubygems.yml install: |- export GEM_HOME=~/.ruby export GEM_PATH=$GEM_HOME:$GEM_PATH sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile" release: script: |- bundle exec rake rm -rf *.gem sed -i "s/0\.0\.0/${tag}/g" veils.gemspec git add veils.gemspec git commit -m "Version set to ${tag}" gem build veils.gemspec chmod 0600 ../rubygems.yml gem push *.gem --config-file ../rubygems.yml merge: script: |- bundle install bundle exec rake deploy: script: |- echo 'Nothing to deploy' exit -1