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
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,11 @@
/spec/test_uploads

.ruby-version
# Ignore uploaded files in development
/storage/*
!/storage/.keep

/public/assets

# Ignore master key for decrypting credentials and more.
/config/master.key
1 change: 0 additions & 1 deletion .rspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
--require spec_helper
--format documentation
--warnings
34 changes: 16 additions & 18 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '2.6.5'

gem 'rails', '~> 5.1.1'
gem 'sqlite3'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'rails', '6.0.0'
gem 'sqlite3', '~> 1.4'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'coffee-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.2', require: false

group :development, :test do
gem 'rspec-rails', '~> 3.8.0'
gem 'factory_bot_rails', '~> 4.10.0'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'factory_bot_rails'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

Expand All @@ -27,18 +26,17 @@ group :development do
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'faker', require: false # for sample data in development
gem 'spring-commands-rspec'
gem 'bundle_outdated_formatter'
end

group :test do
gem 'capybara', '~> 2.15.4'
gem 'capybara'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'webdrivers'
# Or use poltergeist and PhantomJS as an alternative to Selenium/Chrome
# gem 'poltergeist', '~> 1.15.0'
gem 'launchy', '~> 2.4.3'
gem 'shoulda-matchers',
git: 'https://github.com/thoughtbot/shoulda-matchers.git',
branch: 'rails-5'
gem 'launchy'
gem 'shoulda-matchers'
gem 'vcr'
gem 'webmock'
end
Expand Down
Loading