Skip to content

Commit b16ab77

Browse files
authored
Merge pull request #132 from maxmind/wstorey/eng-2273-gemfilelock-file-is-added-for-ruby-repos
Add Gemfile.lock
2 parents c09b251 + f0fac8c commit b16ab77

File tree

3 files changed

+73
-3
lines changed

3 files changed

+73
-3
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
*.swp
22
/doc
33
/.yardoc
4-
Gemfile.lock
5-

Gemfile.lock

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
PATH
2+
remote: .
3+
specs:
4+
maxmind-db (1.4.0)
5+
6+
GEM
7+
remote: https://rubygems.org/
8+
specs:
9+
ast (2.4.3)
10+
json (2.16.0)
11+
language_server-protocol (3.17.0.5)
12+
lint_roller (1.1.0)
13+
minitest (5.26.2)
14+
parallel (1.27.0)
15+
parser (3.3.10.0)
16+
ast (~> 2.4.1)
17+
racc
18+
prism (1.6.0)
19+
racc (1.8.1)
20+
rainbow (3.1.1)
21+
rake (13.3.1)
22+
regexp_parser (2.11.3)
23+
rubocop (1.81.7)
24+
json (~> 2.3)
25+
language_server-protocol (~> 3.17.0.2)
26+
lint_roller (~> 1.1.0)
27+
parallel (~> 1.10)
28+
parser (>= 3.3.0.2)
29+
rainbow (>= 2.2.2, < 4.0)
30+
regexp_parser (>= 2.9.3, < 3.0)
31+
rubocop-ast (>= 1.47.1, < 2.0)
32+
ruby-progressbar (~> 1.7)
33+
unicode-display_width (>= 2.4.0, < 4.0)
34+
rubocop-ast (1.48.0)
35+
parser (>= 3.3.7.2)
36+
prism (~> 1.4)
37+
rubocop-minitest (0.38.2)
38+
lint_roller (~> 1.1)
39+
rubocop (>= 1.75.0, < 2.0)
40+
rubocop-ast (>= 1.38.0, < 2.0)
41+
rubocop-performance (1.26.1)
42+
lint_roller (~> 1.1)
43+
rubocop (>= 1.75.0, < 2.0)
44+
rubocop-ast (>= 1.47.1, < 2.0)
45+
rubocop-rake (0.7.1)
46+
lint_roller (~> 1.1)
47+
rubocop (>= 1.72.1)
48+
rubocop-thread_safety (0.7.3)
49+
lint_roller (~> 1.1)
50+
rubocop (~> 1.72, >= 1.72.1)
51+
rubocop-ast (>= 1.44.0, < 2.0)
52+
ruby-progressbar (1.13.0)
53+
unicode-display_width (3.2.0)
54+
unicode-emoji (~> 4.1)
55+
unicode-emoji (4.1.0)
56+
57+
PLATFORMS
58+
ruby
59+
x86_64-linux
60+
61+
DEPENDENCIES
62+
maxmind-db!
63+
minitest
64+
rake
65+
rubocop
66+
rubocop-minitest
67+
rubocop-performance
68+
rubocop-rake
69+
rubocop-thread_safety
70+
71+
BUNDLED WITH
72+
2.6.9

maxmind-db.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |s|
44
s.authors = ['William Storey']
5-
s.files = Dir['**/*'].difference(Dir['.github/**/*', 'dev-bin/**/*', 'test/**/*'])
5+
s.files = Dir['**/*'].difference(Dir['.github/**/*', 'dev-bin/**/*', 'Gemfile*', 'test/**/*'])
66
s.name = 'maxmind-db'
77
s.summary = 'A gem for reading MaxMind DB files.'
88
s.version = '1.4.0'

0 commit comments

Comments
 (0)