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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
!/log/.keep
/tmp
.byebug_history

.coverage/

# OSX files
.DS_Store
Expand Down
3 changes: 3 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--require spec_helper
--color
--format documentation
Comment thread
Odeane marked this conversation as resolved.
16 changes: 16 additions & 0 deletions .solargraph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
include:
- "**/*.rb"
exclude:
- spec/**/*
- test/**/*
- vendor/**/*
- ".bundle/**/*"
require: []
domains: []
reporters:
- rubocop
- require_not_found
require_paths: []
plugins: []
max_files: 5000
13 changes: 11 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.4.3'
ruby '2.5.1'

Comment thread
Odeane marked this conversation as resolved.
gem 'rails', '5.1.5'

Expand All @@ -17,9 +17,18 @@ gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'

group :development do
gem 'pry-byebug'
gem 'spring'
gem 'web-console', '~> 2.0'
gem 'solargraph'
end

group :development, :test do
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'capybara'
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'coveralls', require: false
end

group :production do
Expand Down
Loading