pronto-rubocop-patched 0.1.1 → 0.1.3

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
  SHA256:
3
- metadata.gz: d11b19cf88e22ed2e4610022510780c1429cf3209a0f195de06c25da91347e57
4
- data.tar.gz: 7044119f5099471570bc481f0f8ec39746c340b7539bc3b488c6a53a8d270b7f
3
+ metadata.gz: ac1b1131e4dac11b518b4d90d425abb8e2caf21fd232b491313f8e4b434975e3
4
+ data.tar.gz: 14c88cc49d024b7b5cf7feec0e90bbfbc176ecaff74d5c9838c79898b77f0aa8
5
5
  SHA512:
6
- metadata.gz: 7798564a598e51c9e63a72ca09fa23ca8863676b15153ba9a1eeca4015b4e1b101c840365031446f055297bcab8dbe60a25f6aed817af5abd4852a87c3eed711
7
- data.tar.gz: 1732106eb41c8f63cad2c778b1306e6354187ece3f6afb6b0dc5ac78567f55d8bfeccae5137bffc1fd63898cfc8bfdd8f7b4dbba66ec2443e71da92942188941
6
+ metadata.gz: 4da54be77f2e88834aa47c2c4c183ae3e435491bb12d3eb8102841ac8c86ada864a904d1017d7d5432bfdc7ff0c6ccb83257a706565a743a6fd9878426753a55
7
+ data.tar.gz: 12aa66f89628f535bbb78e24d3ea6421fca5f9c0c0e3696246234526fd47f5007655c9407ee89dfe7b13d2cb84919bb899bc7de17ae20fd76e1c8f893c94cc09
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pronto-rubocop-patched (0.1.1)
5
- pronto (~> 0.11.0)
6
- rubocop (~> 1.50, >= 1.50.2)
4
+ pronto-rubocop-patched (0.1.3)
5
+ pronto (= 0.8.2)
6
+ rubocop (= 1.50)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -16,14 +16,12 @@ GEM
16
16
  faraday-net_http (>= 2.0, < 3.1)
17
17
  ruby2_keywords (>= 0.0.4)
18
18
  faraday-net_http (3.0.2)
19
- gitlab (4.19.0)
20
- httparty (~> 0.20)
21
- terminal-table (>= 1.5.1)
22
- httparty (0.21.0)
23
- mini_mime (>= 1.0.0)
19
+ gitlab (3.6.1)
20
+ httparty
21
+ terminal-table
22
+ httparty (0.14.0)
24
23
  multi_xml (>= 0.5.2)
25
24
  json (2.6.3)
26
- mini_mime (1.1.2)
27
25
  multi_xml (0.6.0)
28
26
  octokit (4.25.1)
29
27
  faraday (>= 1, < 3)
@@ -32,17 +30,17 @@ GEM
32
30
  parser (3.2.2.3)
33
31
  ast (~> 2.4.1)
34
32
  racc
35
- pronto (0.11.1)
36
- gitlab (>= 4.4.0, < 5.0)
37
- httparty (>= 0.13.7, < 1.0)
38
- octokit (>= 4.7.0, < 7.0)
39
- rainbow (>= 2.2, < 4.0)
40
- rexml (>= 3.2.5, < 4.0)
41
- rugged (>= 0.23.0, < 2.0)
42
- thor (>= 0.20.3, < 2.0)
33
+ pronto (0.8.2)
34
+ gitlab (~> 3.6, >= 3.4.0)
35
+ httparty (>= 0.13.7, < 0.15)
36
+ octokit (~> 4.3, >= 4.1.0)
37
+ rainbow (~> 2.1)
38
+ rugged (~> 0.24, >= 0.23.0)
39
+ thor (~> 0.19.0)
43
40
  public_suffix (5.0.1)
44
41
  racc (1.7.0)
45
- rainbow (3.1.1)
42
+ rainbow (2.2.2)
43
+ rake
46
44
  rake (10.5.0)
47
45
  regexp_parser (2.8.1)
48
46
  rexml (3.2.5)
@@ -62,7 +60,7 @@ GEM
62
60
  diff-lcs (>= 1.2.0, < 2.0)
63
61
  rspec-support (~> 3.12.0)
64
62
  rspec-support (3.12.0)
65
- rubocop (1.50.2)
63
+ rubocop (1.50.0)
66
64
  json (~> 2.3)
67
65
  parallel (~> 1.10)
68
66
  parser (>= 3.2.0.0)
@@ -76,13 +74,13 @@ GEM
76
74
  parser (>= 3.2.1.0)
77
75
  ruby-progressbar (1.13.0)
78
76
  ruby2_keywords (0.0.5)
79
- rugged (1.6.3)
77
+ rugged (0.99.0)
80
78
  sawyer (0.9.2)
81
79
  addressable (>= 2.3.5)
82
80
  faraday (>= 0.17.3, < 3)
83
81
  terminal-table (3.0.2)
84
82
  unicode-display_width (>= 1.1.1, < 3)
85
- thor (1.2.2)
83
+ thor (0.19.4)
86
84
  unicode-display_width (2.4.2)
87
85
 
88
86
  PLATFORMS
@@ -3,7 +3,7 @@
3
3
  module Pronto
4
4
  module Rubocop
5
5
  module Patched
6
- VERSION = '0.1.1'
6
+ VERSION = '0.1.3'
7
7
  end
8
8
  end
9
9
  end
@@ -56,6 +56,6 @@ Gem::Specification.new do |spec|
56
56
  spec.add_development_dependency('rspec-its', '~> 1.2')
57
57
 
58
58
 
59
- spec.add_runtime_dependency('pronto', '~> 0.11.0')
60
- spec.add_runtime_dependency('rubocop', '~> 1.50', '>= 1.50.2')
59
+ spec.add_runtime_dependency('pronto', '0.8.2')
60
+ spec.add_runtime_dependency('rubocop', '1.50')
61
61
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-rubocop-patched
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - osama-inayat
@@ -70,36 +70,30 @@ dependencies:
70
70
  name: pronto
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: 0.11.0
75
+ version: 0.8.2
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - '='
81
81
  - !ruby/object:Gem::Version
82
- version: 0.11.0
82
+ version: 0.8.2
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - '='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '1.50'
90
- - - ">="
91
- - !ruby/object:Gem::Version
92
- version: 1.50.2
93
90
  type: :runtime
94
91
  prerelease: false
95
92
  version_requirements: !ruby/object:Gem::Requirement
96
93
  requirements:
97
- - - "~>"
94
+ - - '='
98
95
  - !ruby/object:Gem::Version
99
96
  version: '1.50'
100
- - - ">="
101
- - !ruby/object:Gem::Version
102
- version: 1.50.2
103
97
  description: Pronto runner for Rubocop with patched version Ruby 2.6.10
104
98
  email:
105
99
  - rajaosamainayat@gmail.com