.rultor.yml in total-0.0.0 vs .rultor.yml in total-0.1.0
- old
+ new
@@ -1,19 +1,26 @@
-docker:
- image: yegor256/rultor-image:1.9.1
assets:
- rubygems.yml: yegor256/home#assets/rubygems.yml
-install: |
- pdd -f /dev/null
- sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
+ rubygems.yml: zerocracy/home#assets/rubygems.yml
+install: |-
+ export GEM_HOME=~/.ruby
+ export GEM_PATH=$GEM_HOME:$GEM_PATH
release:
script: |-
- bundle exec rake clean test rubocop copyright
- sed -i "s/0\.0\.0/${tag}/g" lib/total/version.rb
- git add lib/total/version.rb
- git commit -m "version set to ${tag}"
+ bundle install
+ rake
+ rm -rf *.gem
+ sed -i "s/0\.0\.0/${tag}/g" total.gemspec
+ git add total.gemspec
+ git commit -m "Version set to ${tag}"
gem build total.gemspec
chmod 0600 ../rubygems.yml
gem push *.gem --config-file ../rubygems.yml
+ commanders:
+ - yegor256
+architect:
+- yegor256
merge:
+ commanders: []
script: |-
- bundle exec rake clean test rubocop copyright
+ bundle install
+ bundle exec rake
+deploy: {}