Skip to content

Commit b82c4b8

Browse files
Merge pull request #93 from github/version-constraints
Remove version constraints for rubocop libraries
2 parents 20e1ffc + bff2dc3 commit b82c4b8

File tree

3 files changed

+87
-5
lines changed

3 files changed

+87
-5
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ test/tmp
1212
test/version_tmp
1313
tmp
1414

15-
Gemfile.lock
16-
1715
# YARD artifacts
1816
.yardoc
1917
_yardoc

Gemfile.lock

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
PATH
2+
remote: .
3+
specs:
4+
rubocop-github (0.16.2)
5+
rubocop
6+
rubocop-performance
7+
rubocop-rails
8+
9+
GEM
10+
remote: https://rubygems.org/
11+
specs:
12+
actionview (5.2.6)
13+
activesupport (= 5.2.6)
14+
builder (~> 3.1)
15+
erubi (~> 1.4)
16+
rails-dom-testing (~> 2.0)
17+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
18+
activesupport (5.2.6)
19+
concurrent-ruby (~> 1.0, >= 1.0.2)
20+
i18n (>= 0.7, < 2)
21+
minitest (~> 5.1)
22+
tzinfo (~> 1.1)
23+
ast (2.4.2)
24+
builder (3.2.4)
25+
concurrent-ruby (1.1.9)
26+
crass (1.0.6)
27+
erubi (1.10.0)
28+
i18n (1.8.11)
29+
concurrent-ruby (~> 1.0)
30+
loofah (2.13.0)
31+
crass (~> 1.0.2)
32+
nokogiri (>= 1.5.9)
33+
minitest (5.15.0)
34+
nokogiri (1.13.1-x86_64-darwin)
35+
racc (~> 1.4)
36+
parallel (1.21.0)
37+
parser (3.1.0.0)
38+
ast (~> 2.4.1)
39+
racc (1.6.0)
40+
rack (2.2.3)
41+
rails-dom-testing (2.0.3)
42+
activesupport (>= 4.2.0)
43+
nokogiri (>= 1.6)
44+
rails-html-sanitizer (1.4.2)
45+
loofah (~> 2.3)
46+
rainbow (3.1.1)
47+
rake (12.3.3)
48+
regexp_parser (2.2.0)
49+
rexml (3.2.5)
50+
rubocop (1.24.1)
51+
parallel (~> 1.10)
52+
parser (>= 3.0.0.0)
53+
rainbow (>= 2.2.2, < 4.0)
54+
regexp_parser (>= 1.8, < 3.0)
55+
rexml
56+
rubocop-ast (>= 1.15.1, < 2.0)
57+
ruby-progressbar (~> 1.7)
58+
unicode-display_width (>= 1.4.0, < 3.0)
59+
rubocop-ast (1.15.1)
60+
parser (>= 3.0.1.1)
61+
rubocop-performance (1.13.1)
62+
rubocop (>= 1.7.0, < 2.0)
63+
rubocop-ast (>= 0.4.0)
64+
rubocop-rails (2.13.1)
65+
activesupport (>= 4.2.0)
66+
rack (>= 1.1)
67+
rubocop (>= 1.7.0, < 2.0)
68+
ruby-progressbar (1.11.0)
69+
thread_safe (0.3.6)
70+
tzinfo (1.2.9)
71+
thread_safe (~> 0.1)
72+
unicode-display_width (2.1.0)
73+
74+
PLATFORMS
75+
x86_64-darwin-20
76+
77+
DEPENDENCIES
78+
actionview (~> 5.0)
79+
minitest (~> 5.14)
80+
rake (~> 12.0)
81+
rubocop-github!
82+
83+
BUNDLED WITH
84+
2.2.33

rubocop-github.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Gem::Specification.new do |s|
1010

1111
s.files = Dir["README.md", "STYLEGUIDE.md", "LICENSE", "config/*.yml", "lib/**/*.rb", "guides/*.md"]
1212

13-
s.add_dependency "rubocop", "<= 1.13.0"
14-
s.add_dependency "rubocop-performance", "<= 1.11.0"
15-
s.add_dependency "rubocop-rails", "<= 2.7.1"
13+
s.add_dependency "rubocop"
14+
s.add_dependency "rubocop-performance"
15+
s.add_dependency "rubocop-rails"
1616

1717
s.add_development_dependency "actionview", "~> 5.0"
1818
s.add_development_dependency "minitest", "~> 5.14"

0 commit comments

Comments
 (0)