.rultor.yml in syncem-0.1.1 vs .rultor.yml in syncem-0.1.2
- old
+ new
@@ -1,26 +1,24 @@
assets:
- rubygems.yml: zerocracy/home#assets/rubygems.yml
+ rubygems.yml: yegor256/home#assets/rubygems.yml
install: |-
export GEM_HOME=~/.ruby
export GEM_PATH=$GEM_HOME:$GEM_PATH
+ bundle install
release:
script: |-
- bundle install
bundle exec rake
rm -rf *.gem
sed -i "s/0\.0\.0/${tag}/g" syncem.gemspec
git add syncem.gemspec
git commit -m "Version set to ${tag}"
gem build syncem.gemspec
chmod 0600 ../rubygems.yml
gem push *.gem --config-file ../rubygems.yml
- commanders:
- - yegor256
-architect:
-- yegor256
merge:
- commanders: []
script: |-
bundle install
- rake
-deploy: {}
+ bundle exec rake
+deploy:
+ script: |-
+ echo 'Nothing to deploy'
+ exit -1