Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Docker related files
Dockerfile
docker-compose.yml
entrypoint.sh

### RubyMine Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

Expand All @@ -64,4 +69,4 @@
# .idea/misc.xml
# *.ipr

# End of https://www.gitignore.io/api/ruby,rails,rubymine
# End of https://www.gitignore.io/api/ruby,rails,rubymine
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'

gem 'webdrivers', '~> 4.0'

# Uses HAML templates
gem 'haml'
Expand Down Expand Up @@ -56,6 +55,8 @@ gem 'nokogiri'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rubycritic'
gem 'rdoc'
end
# Uses railroady gem
group :development, :test do
Expand Down
Loading