.rultor.yml in rumble-0.5.3 vs .rultor.yml in rumble-0.6.0
- old
+ new
@@ -1,32 +1,22 @@
assets:
- rubygems.yml: zerocracy/home#assets/rubygems.yml
- s3cfg: zerocracy/home#assets/s3cfg
+ rubygems.yml: yegor256/home#assets/rubygems.yml
install: |
- export GEM_HOME=~/.ruby
- export GEM_PATH=$GEM_HOME:$GEM_PATH
- sudo apt-get -y update
- sudo gem install pdd
+ pdd -f /dev/null
+ sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
release:
script: |-
- bundle install
- rake
+ bundle exec rake
rm -rf *.gem
sed -i "s/1\.0\.snapshot/${tag}/g" lib/rumble/version.rb
git add lib/rumble/version.rb
git commit -m "version set to ${tag}"
gem build rumble.gemspec
chmod 0600 ../rubygems.yml
gem push *.gem --config-file ../rubygems.yml
- commanders:
- - yegor256
-architect:
-- yegor256
merge:
script: |-
- bundle install
- rake
- pdd
+ bundle exec rake
deploy:
script: |-
echo "There is nothing to deploy"
exit -1