Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM ruby:2.6.6
RUN apt-get update && apt-get install -y cmake
RUN gem install -N pronto-rubocop -v 0.10.0
COPY Gemfile Gemfile
RUN gem install specific_install
RUN gem specific_install https://github.com/prontolabs/pronto-rubocop.git
RUN bundle install
CMD git fetch origin master && pronto run -c origin/master --exit-code
9 changes: 5 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
source 'https://rubygems.org'

gem 'pronto', '~> 0.10.0', require: false
gem 'rubocop', '~> 1.4.1', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'pronto', '0.10.0', require: false
gem 'rubocop', '1.4.2', require: false
gem 'rubocop-ast', '1.2.0', require: false
gem 'rubocop-performance', '1.9.0', require: false
gem 'rubocop-rails', '2.8.1', require: false