Skip to content

Commit

Permalink
Fix ci build systems (#66)
Browse files Browse the repository at this point in the history
* Fix ci build systems

Update system ruby rubgems > 2.6.9 so we can install `rainbow` gem.
Require `rake` in our Gemfile. Secondary bandaid for `rainbow` gem.

See: ku1ik/rainbow#44
Fix: #64

* Fix svn.rb empty upstream method
  • Loading branch information
Clayton Burlison authored and jaymzh committed Feb 28, 2017
1 parent 535a6f9 commit a9e8713
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: ruby

before_install: gem update --system

rvm:
- 2.2.2
- 2.3.0
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
source 'https://rubygems.org'

gemspec

gem 'rake' # See: sickill/rainbow#44
3 changes: 3 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ machine:
version: 2.3.0

test:
pre:
- gem update --system
post:
- bundle exec rspec
- bundle exec rubocop --display-cop-names
3 changes: 1 addition & 2 deletions lib/between_meals/repo/svn.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ def files
end
end

def upstream?
end
def upstream?; end

def valid_ref?(ref)
@cmd.info_r(ref, @repo_path)
Expand Down

0 comments on commit a9e8713

Please sign in to comment.