Skip to content

Commit a8cbeb1

Browse files
committed
added Gemfile.locks to .gitignore
1 parent ee2297c commit a8cbeb1

File tree

13 files changed

+48
-6
lines changed

13 files changed

+48
-6
lines changed

ruby/hyper-component/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ spec/test_app/db
4141
# ignore IDE files
4242
.idea
4343
.vscode
44+
45+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
46+
/spec/test_app/Gemfile.lock
47+
/Gemfile.lock

ruby/hyper-console/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,7 @@ bower.json
4747

4848
# Ignore built gem
4949
*.gem
50+
51+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
52+
/spec/test_app/Gemfile.lock
53+
/Gemfile.lock

ruby/hyper-i18n/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
/spec/reports/
88
/tmp/
99
*.gem
10+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
11+
/spec/test_app/Gemfile.lock
12+
/Gemfile.lock

ruby/hyper-i18n/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ GEM
325325
actionpack (>= 4.0)
326326
activesupport (>= 4.0)
327327
sprockets (>= 3.0.0)
328-
sqlite3 (1.3.13)
328+
sqlite3 (1.4.0)
329329
strings (0.1.4)
330330
strings-ansi (~> 0.1.0)
331331
unicode-display_width (~> 1.4.0)

ruby/hyper-model/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ spec/test_app/tmp/
1111
spec/test_app/db/test.sqlite3
1212
spec/test_app/log/test.log
1313
spec/test_app/log/development.log
14-
spec/test_app/Gemfile.lock
1514
/synchromesh-simple-poller-store
1615
/synchromesh-pusher-channel-store
1716
/examples/action-cable/rails_cache_dir/
@@ -34,3 +33,7 @@ public/assets/*
3433
# ingore Idea
3534
.idea
3635
.vscode
36+
37+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
38+
/spec/test_app/Gemfile.lock
39+
/Gemfile.lock

ruby/hyper-operation/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,7 @@ bower.json
5353
.idea
5454
.vscode
5555
*.iml
56+
57+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
58+
/spec/test_app/Gemfile.lock
59+
/Gemfile.lock

ruby/hyper-router/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/.bundle/
22
/.yardoc
3-
/Gemfile.lock
43
/_yardoc/
54
/coverage/
65
/doc/
@@ -48,3 +47,7 @@ Gemfile.lock
4847

4948
# ignore Idea
5049
.idea
50+
51+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
52+
/spec/test_app/Gemfile.lock
53+
/Gemfile.lock

ruby/hyper-spec/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,7 @@ bower.json
5252

5353
# ignore Idea files
5454
.idea
55+
56+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
57+
/spec/test_app/Gemfile.lock
58+
/Gemfile.lock

ruby/hyper-state/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ capybara-*.html
1111
**.orig
1212
rerun.txt
1313
pickle-email-*.html
14-
Gemfile.lock
1514

1615
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo
1716
config/initializers/secret_token.rb
@@ -51,3 +50,7 @@ bower.json
5150

5251
# ignore IDE files
5352
.idea
53+
54+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
55+
/spec/test_app/Gemfile.lock
56+
/Gemfile.lock

ruby/hyper-store/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ capybara-*.html
1111
**.orig
1212
rerun.txt
1313
pickle-email-*.html
14-
Gemfile.lock
1514

1615
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo
1716
config/initializers/secret_token.rb
@@ -51,3 +50,7 @@ bower.json
5150

5251
# ignore IDE files
5352
.idea
53+
54+
# ignore Gemfile.locks https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
55+
/spec/test_app/Gemfile.lock
56+
/Gemfile.lock

0 commit comments

Comments
 (0)