forked from External/greenlight
add rubocop to travis config
This commit is contained in:
parent
3b985a6dbb
commit
19ffe483c6
|
@ -1,3 +1,6 @@
|
||||||
language: ruby
|
language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
- 2.5.1
|
- 2.5.1
|
||||||
|
|
||||||
|
script:
|
||||||
|
- bundle exec rubocop
|
||||||
|
|
6
Gemfile
6
Gemfile
|
@ -58,9 +58,6 @@ gem 'tabler-rubygem'
|
||||||
# Use Capistrano for deployment
|
# Use Capistrano for deployment
|
||||||
# gem 'capistrano-rails', group: :development
|
# gem 'capistrano-rails', group: :development
|
||||||
|
|
||||||
# Ruby linting.
|
|
||||||
gem 'rubocop', require: false
|
|
||||||
|
|
||||||
group :production do
|
group :production do
|
||||||
# Use a postgres database in production.
|
# Use a postgres database in production.
|
||||||
gem 'pg', '~> 0.18'
|
gem 'pg', '~> 0.18'
|
||||||
|
@ -82,6 +79,9 @@ group :test do
|
||||||
gem 'shoulda-matchers', '~> 3.1'
|
gem 'shoulda-matchers', '~> 3.1'
|
||||||
gem 'faker'
|
gem 'faker'
|
||||||
gem "factory_bot_rails"
|
gem "factory_bot_rails"
|
||||||
|
|
||||||
|
# Ruby linting.
|
||||||
|
gem 'rubocop'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|

|
||||||
|
|
||||||
# Greenlight
|
# Greenlight
|
||||||
|
|
||||||
Greenlight is currently on version 2.0. If you are still running Greenlight 1.0 we suggest [upgrading to 2.0](http://docs.bigbluebutton.org/install/greenlight-v2.html#upgrading-from-greenlight-10).
|
Greenlight is currently on version 2.0. If you are still running Greenlight 1.0 we suggest [upgrading to 2.0](http://docs.bigbluebutton.org/install/greenlight-v2.html#upgrading-from-greenlight-10).
|
||||||
|
|
Loading…
Reference in New Issue