rubocop_lineup 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2a55e094b399226f398dbad21723ff58589c3988
4
- data.tar.gz: 9f56dead4432a8a87c85d070093d311600500e9d
3
+ metadata.gz: 3cfd4c59b07533cbb21f073ebaaa194782bc4aae
4
+ data.tar.gz: 926b2bc3bd42f6d133bb3d45ab5aeff57dad5b06
5
5
  SHA512:
6
- metadata.gz: e75a2f07204d1a6cfeadbcb71051c2f9ecff7194909f32dd5c01ca709e5fd0719f68ad2d0fa3f3f078e9f8b15db894e14068e51ac2c2dbca76fe2ea829745095
7
- data.tar.gz: a01da1538723ff07e023a9549d38d7246a80dab6acb64c5b4a57c1ea5a3557c848a5707255c1cac3dc63c10e2805a1c972f2eb6bea6a82e34239f938361abe33
6
+ metadata.gz: f6224b5c670fed0f153978cafa5e9deb967196a4e00bdf158bf543499480c6d7294490331ddb335b0dec1ef08f19cc2716697d9087800db1c1537b95a512844a
7
+ data.tar.gz: 6e6059f40272f01bbfc9555cfd23ba04bf2bda0c3f833c0849d632cd53b45577104127a1bfac2844b3a95fe6976f77f9c27c756a5f9147ebc64fbe2078b9e836
data/.gitignore CHANGED
@@ -4,6 +4,7 @@
4
4
  /bin/
5
5
  /coverage/
6
6
  /doc/
7
+ /gemfiles/*lock
7
8
  /pkg/
8
9
  /spec/reports/
9
10
  /tmp/
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: "2.1"
2
+ TargetRubyVersion: 2.1
3
3
  Exclude:
4
4
  - "bin/**"
5
5
 
data/.travis.yml CHANGED
@@ -1,5 +1,18 @@
1
- sudo: false
2
1
  language: ruby
2
+
3
3
  rvm:
4
+ - 2.1.10
5
+ - 2.2.10
6
+ - 2.3.7
4
7
  - 2.4.4
5
- before_install: gem install bundler -v 1.16.1
8
+ - 2.5.1
9
+
10
+ gemfile:
11
+ - gemfiles/rubocop_latest.gemfile
12
+ - gemfiles/rubocop_0.56.0.gemfile
13
+ - gemfiles/rubocop_0.52.1.gemfile
14
+ - gemfiles/rubocop_0.46.0.gemfile
15
+ - gemfiles/rubocop_0.35.1.gemfile
16
+
17
+
18
+ before_install: gem install bundler -v 1.16.2
data/Appraisals ADDED
@@ -0,0 +1,19 @@
1
+ appraise "rubocop-latest" do
2
+ gem "rubocop"
3
+ end
4
+
5
+ appraise "rubocop-0.56.0" do
6
+ gem "rubocop", "0.56.0"
7
+ end
8
+
9
+ appraise "rubocop-0.52.1" do
10
+ gem "rubocop", "0.52.1"
11
+ end
12
+
13
+ appraise "rubocop-0.46.0" do
14
+ gem "rubocop", "0.46.0"
15
+ end
16
+
17
+ appraise "rubocop-0.35.1" do
18
+ gem "rubocop", "0.35.1"
19
+ end
data/Gemfile CHANGED
@@ -6,3 +6,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
 
7
7
  # Specify your gem's dependencies in rubocop_lineup.gemspec
8
8
  gemspec
9
+
10
+ group :development do
11
+ gem "appraisal"
12
+ end
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "0.35.1"
6
+
7
+ group :development do
8
+ gem "appraisal"
9
+ end
10
+
11
+ gemspec path: "../"
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "0.46.0"
6
+
7
+ group :development do
8
+ gem "appraisal"
9
+ end
10
+
11
+ gemspec path: "../"
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "0.52.1"
6
+
7
+ group :development do
8
+ gem "appraisal"
9
+ end
10
+
11
+ gemspec path: "../"
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "0.56.0"
6
+
7
+ group :development do
8
+ gem "appraisal"
9
+ end
10
+
11
+ gemspec path: "../"
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop"
6
+
7
+ group :development do
8
+ gem "appraisal"
9
+ end
10
+
11
+ gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubocopLineup
4
- VERSION = "0.2.0".freeze
4
+ VERSION = "0.3.0".freeze
5
5
  end
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.required_ruby_version = "~> 2.1"
25
25
 
26
26
  spec.add_dependency "git", "~> 1.3"
27
- spec.add_dependency "rubocop", "~> 0.55"
27
+ spec.add_dependency "rubocop", "~> 0.35"
28
28
 
29
29
  spec.add_development_dependency "bundler", "~> 1.16"
30
30
  spec.add_development_dependency "pry"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop_lineup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrismo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-16 00:00:00.000000000 Z
11
+ date: 2018-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: git
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.55'
33
+ version: '0.35'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.55'
40
+ version: '0.35'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -106,12 +106,18 @@ files:
106
106
  - ".rubocop.yml"
107
107
  - ".ruby-version"
108
108
  - ".travis.yml"
109
+ - Appraisals
109
110
  - Gemfile
110
111
  - LICENSE.txt
111
112
  - README.md
112
113
  - Rakefile
113
114
  - bin/console
114
115
  - bin/setup
116
+ - gemfiles/rubocop_0.35.1.gemfile
117
+ - gemfiles/rubocop_0.46.0.gemfile
118
+ - gemfiles/rubocop_0.52.1.gemfile
119
+ - gemfiles/rubocop_0.56.0.gemfile
120
+ - gemfiles/rubocop_latest.gemfile
115
121
  - lib/rubocop_lineup.rb
116
122
  - lib/rubocop_lineup/diff_liner.rb
117
123
  - lib/rubocop_lineup/duck_punch_rubocop.rb