[MediaWiki-commits] [Gerrit] mediawiki...GettingStarted[master]: Update RuboCop Ruby gem

2017-12-04 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/395022 )

Change subject: Update RuboCop Ruby gem
..


Update RuboCop Ruby gem

Bug: T180878
Change-Id: Ifd2b37d7136e7e3f5ff414b6a1c8964f48ce3d07
---
M .rubocop.yml
A .rubocop_todo.yml
M Gemfile
M Gemfile.lock
4 files changed, 33 insertions(+), 15 deletions(-)

Approvals:
  jenkins-bot: Verified
  Phuedx: Looks good to me, approved



diff --git a/.rubocop.yml b/.rubocop.yml
index 84567a5..3c8a650 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,3 +1,5 @@
+inherit_from: .rubocop_todo.yml
+
 AllCops:
   StyleGuideCopsOnly: true
 
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
new file mode 100644
index 000..3ff5102
--- /dev/null
+++ b/.rubocop_todo.yml
@@ -0,0 +1,14 @@
+# This configuration was generated by
+# `rubocop --auto-gen-config`
+# on 2017-12-04 16:43:08 +0100 using RuboCop version 0.51.0.
+# The point is for the user to remove these configuration records
+# one by one as the offenses are removed from the code base.
+# Note that changes in the inspected code, or installation of new
+# versions of RuboCop, may require this file to be generated again.
+
+# Offense count: 1
+# Configuration parameters: Blacklist.
+# Blacklist: END, (?-mix:EO[A-Z]{1})
+Naming/HeredocDelimiterNaming:
+  Exclude:
+- 'tests/browser/features/support/pages/registration_page.rb'
diff --git a/Gemfile b/Gemfile
index f3acc08..591fd6b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,4 +2,4 @@
 
 gem 'mediawiki_selenium', '~> 1.8'
 gem 'rake', '~> 11.1', '>= 11.1.1'
-gem 'rubocop', '~> 0.34.2', require: false
+gem 'rubocop', '~> 0.51.0', require: false
diff --git a/Gemfile.lock b/Gemfile.lock
index 8fcd52c..1b16d93 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,9 +1,7 @@
 GEM
   remote: https://rubygems.org/
   specs:
-ast (2.1.0)
-astrolabe (1.3.1)
-  parser (~> 2.2)
+ast (2.3.0)
 builder (3.2.3)
 childprocess (0.6.2)
   ffi (~> 1.0, >= 1.0.11)
@@ -65,10 +63,12 @@
   watir (~> 6.0)
 page_navigation (0.10)
   data_magic (>= 0.22)
-parser (2.2.2.6)
-  ast (>= 1.1, < 3.0)
+parallel (1.12.0)
+parser (2.4.0.2)
+  ast (~> 2.3)
 powerpack (0.1.1)
-rainbow (2.0.0)
+rainbow (2.2.2)
+  rake
 rake (11.1.1)
 rest-client (1.8.0)
   http-cookie (>= 1.0.2, < 2.0)
@@ -77,13 +77,14 @@
 rspec-core (2.99.2)
 rspec-expectations (2.99.2)
   diff-lcs (>= 1.1.3, < 2.0)
-rubocop (0.34.2)
-  astrolabe (~> 1.3)
-  parser (>= 2.2.2.5, < 3.0)
+rubocop (0.51.0)
+  parallel (~> 1.10)
+  parser (>= 2.3.3.1, < 3.0)
   powerpack (~> 0.1)
-  rainbow (>= 1.99.1, < 3.0)
-  ruby-progressbar (~> 1.4)
-ruby-progressbar (1.7.5)
+  rainbow (>= 2.2.2, < 3.0)
+  ruby-progressbar (~> 1.7)
+  unicode-display_width (~> 1.0, >= 1.0.1)
+ruby-progressbar (1.9.0)
 rubyzip (1.2.1)
 selenium-webdriver (3.1.0)
   childprocess (~> 0.5)
@@ -94,6 +95,7 @@
 unf (0.1.4)
   unf_ext
 unf_ext (0.0.7.2)
+unicode-display_width (1.3.0)
 watir (6.2.0)
   selenium-webdriver (~> 3.0)
 websocket (1.2.4)
@@ -105,7 +107,7 @@
 DEPENDENCIES
   mediawiki_selenium (~> 1.8)
   rake (~> 11.1, >= 11.1.1)
-  rubocop (~> 0.34.2)
+  rubocop (~> 0.51.0)
 
 BUNDLED WITH
-   1.14.5
+   1.16.0

-- 
To view, visit https://gerrit.wikimedia.org/r/395022
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifd2b37d7136e7e3f5ff414b6a1c8964f48ce3d07
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GettingStarted
Gerrit-Branch: master
Gerrit-Owner: Zfilipin 
Gerrit-Reviewer: Mattflaschen 
Gerrit-Reviewer: Phuedx 
Gerrit-Reviewer: Swalling 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...GettingStarted[master]: Update RuboCop Ruby gem

2017-12-04 Thread Zfilipin (Code Review)
Zfilipin has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/395022 )

Change subject: Update RuboCop Ruby gem
..

Update RuboCop Ruby gem

Bug: T180878
Change-Id: Ifd2b37d7136e7e3f5ff414b6a1c8964f48ce3d07
---
M .rubocop.yml
A .rubocop_todo.yml
M Gemfile
M Gemfile.lock
4 files changed, 33 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GettingStarted 
refs/changes/22/395022/1

diff --git a/.rubocop.yml b/.rubocop.yml
index 84567a5..3c8a650 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,3 +1,5 @@
+inherit_from: .rubocop_todo.yml
+
 AllCops:
   StyleGuideCopsOnly: true
 
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
new file mode 100644
index 000..3ff5102
--- /dev/null
+++ b/.rubocop_todo.yml
@@ -0,0 +1,14 @@
+# This configuration was generated by
+# `rubocop --auto-gen-config`
+# on 2017-12-04 16:43:08 +0100 using RuboCop version 0.51.0.
+# The point is for the user to remove these configuration records
+# one by one as the offenses are removed from the code base.
+# Note that changes in the inspected code, or installation of new
+# versions of RuboCop, may require this file to be generated again.
+
+# Offense count: 1
+# Configuration parameters: Blacklist.
+# Blacklist: END, (?-mix:EO[A-Z]{1})
+Naming/HeredocDelimiterNaming:
+  Exclude:
+- 'tests/browser/features/support/pages/registration_page.rb'
diff --git a/Gemfile b/Gemfile
index f3acc08..591fd6b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,4 +2,4 @@
 
 gem 'mediawiki_selenium', '~> 1.8'
 gem 'rake', '~> 11.1', '>= 11.1.1'
-gem 'rubocop', '~> 0.34.2', require: false
+gem 'rubocop', '~> 0.51.0', require: false
diff --git a/Gemfile.lock b/Gemfile.lock
index 8fcd52c..1b16d93 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,9 +1,7 @@
 GEM
   remote: https://rubygems.org/
   specs:
-ast (2.1.0)
-astrolabe (1.3.1)
-  parser (~> 2.2)
+ast (2.3.0)
 builder (3.2.3)
 childprocess (0.6.2)
   ffi (~> 1.0, >= 1.0.11)
@@ -65,10 +63,12 @@
   watir (~> 6.0)
 page_navigation (0.10)
   data_magic (>= 0.22)
-parser (2.2.2.6)
-  ast (>= 1.1, < 3.0)
+parallel (1.12.0)
+parser (2.4.0.2)
+  ast (~> 2.3)
 powerpack (0.1.1)
-rainbow (2.0.0)
+rainbow (2.2.2)
+  rake
 rake (11.1.1)
 rest-client (1.8.0)
   http-cookie (>= 1.0.2, < 2.0)
@@ -77,13 +77,14 @@
 rspec-core (2.99.2)
 rspec-expectations (2.99.2)
   diff-lcs (>= 1.1.3, < 2.0)
-rubocop (0.34.2)
-  astrolabe (~> 1.3)
-  parser (>= 2.2.2.5, < 3.0)
+rubocop (0.51.0)
+  parallel (~> 1.10)
+  parser (>= 2.3.3.1, < 3.0)
   powerpack (~> 0.1)
-  rainbow (>= 1.99.1, < 3.0)
-  ruby-progressbar (~> 1.4)
-ruby-progressbar (1.7.5)
+  rainbow (>= 2.2.2, < 3.0)
+  ruby-progressbar (~> 1.7)
+  unicode-display_width (~> 1.0, >= 1.0.1)
+ruby-progressbar (1.9.0)
 rubyzip (1.2.1)
 selenium-webdriver (3.1.0)
   childprocess (~> 0.5)
@@ -94,6 +95,7 @@
 unf (0.1.4)
   unf_ext
 unf_ext (0.0.7.2)
+unicode-display_width (1.3.0)
 watir (6.2.0)
   selenium-webdriver (~> 3.0)
 websocket (1.2.4)
@@ -105,7 +107,7 @@
 DEPENDENCIES
   mediawiki_selenium (~> 1.8)
   rake (~> 11.1, >= 11.1.1)
-  rubocop (~> 0.34.2)
+  rubocop (~> 0.51.0)
 
 BUNDLED WITH
-   1.14.5
+   1.16.0

-- 
To view, visit https://gerrit.wikimedia.org/r/395022
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifd2b37d7136e7e3f5ff414b6a1c8964f48ce3d07
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GettingStarted
Gerrit-Branch: master
Gerrit-Owner: Zfilipin 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits