Skip to content

Commit 72cce52

Browse files
committed
rbenv gemsets setup
1 parent e37bec9 commit 72cce52

File tree

4 files changed

+61
-8
lines changed

4 files changed

+61
-8
lines changed

.gitignore

+58-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,63 @@
1-
/.bundle/
2-
/vendor/
3-
/.yardoc
4-
/_yardoc/
1+
# gem sets
2+
/gems/
3+
4+
# rspec failure tracking
5+
.rspec_status
6+
7+
# Ruby.gitignore
8+
*.gem
9+
*.rbc
10+
/.config
511
/coverage/
6-
/doc/
12+
/InstalledFiles
713
/pkg/
814
/spec/reports/
15+
/spec/examples.txt
16+
/test/tmp/
17+
/test/version_tmp/
918
/tmp/
10-
/*.gem
1119

12-
# rspec failure tracking
13-
.rspec_status
20+
# Used by dotenv library to load environment variables.
21+
# .env
22+
23+
# Ignore Byebug command history file.
24+
.byebug_history
25+
26+
## Specific to RubyMotion:
27+
.dat*
28+
.repl_history
29+
build/
30+
*.bridgesupport
31+
build-iPhoneOS/
32+
build-iPhoneSimulator/
33+
34+
## Specific to RubyMotion (use of CocoaPods):
35+
#
36+
# We recommend against adding the Pods directory to your .gitignore. However
37+
# you should judge for yourself, the pros and cons are mentioned at:
38+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
39+
#
40+
# vendor/Pods/
41+
42+
## Documentation cache and generated files:
43+
/.yardoc/
44+
/_yardoc/
45+
/doc/
46+
/rdoc/
47+
48+
## Environment normalization:
49+
/.bundle/
50+
/vendor/bundle
51+
/lib/bundler/man/
52+
53+
# for a library or gem, you might want to ignore these files since the code is
54+
# intended to run in multiple environments; otherwise, check them in:
55+
# Gemfile.lock
56+
# .ruby-version
57+
# .ruby-gemset
58+
59+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
60+
.rvmrc
61+
62+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
63+
# .rubocop-https?--*

.rbenv-gemsets

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./gems

.ruby-gemset

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
augury

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.7.2

0 commit comments

Comments
 (0)