1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
!.gitignore
# Gem structure
junit
acceptance-tests
pkg
Gemfile.lock
# Beaker-generated & local testing
test.cfg
options.rb
merged_options.rb
tmp/
log/
sut-files.tgz
# YARD
.yardoc
yard_docs
doc
# Dependencies
# NOTE: For consistency, please use `vendor/bundle` for Bundler-installed dependencies
.bundle
.vendor
_vendor
vendor
# Byebug
.byebugrc
.byebug_history
# SimpleCov
coverage
#
# Editor/IDE Clutter
#
# (TODO: consider removing these; use local personal .gitignore instead)
# Vim
*.swp
# JetBrains IDEA
*.iml
.idea/
# rbenv file
.ruby-version
.ruby-gemset
# Vagrant folder
.vagrant/
.vagrant_files/
|