Skip to content

Commit 6d29520

Browse files
committed
🎨 modernize dotfiles
- .gitignore - .rspec Signed-off-by: Peter H. Boling <[email protected]>
1 parent 76c388f commit 6d29520

File tree

2 files changed

+58
-4
lines changed

2 files changed

+58
-4
lines changed

.gitignore

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,50 @@
1-
.idea
2-
/Gemfile.lock
3-
/tmp/aruba
4-
/coverage
1+
# Build Artifacts
2+
/pkg/
3+
/tmp/
4+
*.gem
5+
6+
# Bundler
7+
/vendor/bundle/
8+
/.bundle/
9+
/gemfiles/*.lock
10+
/gemfiles/.bundle/
11+
/gemfiles/.bundle/config
12+
/gemfiles/vendor/
13+
Appraisal.*.gemfile.lock
14+
15+
# Specs
16+
.rspec_status
17+
/coverage/
18+
/spec/reports/
19+
/results/
20+
.output.txt
21+
22+
# Documentation
23+
/.yardoc/
24+
/_yardoc/
25+
/rdoc/
26+
/doc/
27+
28+
# Ruby Version Managers (RVM, rbenv, etc)
29+
.rvmrc
30+
.ruby-version
31+
.ruby-gemset
32+
.tool-versions
33+
34+
# Benchmarking
35+
/measurement/
36+
37+
# Debugger detritus
38+
.byebug_history
39+
40+
# direnv - brew install direnv
41+
.env.local
42+
43+
# OS Detritus
44+
.DS_Store
45+
46+
# Editors
47+
*~
48+
49+
# vendor
50+
/vendor/

.rspec

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
--format documentation
2+
--color
3+
--require spec_helper
4+
--color
5+
--order random
6+
--warnings
7+
--format html
8+
--out results/test_results.html

0 commit comments

Comments
 (0)