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
24 changes: 12 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ end


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.4', '>= 6.0.4.6'
gem 'rails', '~> 6.0.4', '>= 6.0.4.7'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 4.3', '>= 4.3.11'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.1', '>= 5.1.0'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'simple_form', '>= 5.1.0'
gem 'simple_form', '>= 5.2.0'

# RedCarpet gem
gem 'redcarpet', '>= 3.5.1'

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
Expand All @@ -35,32 +35,32 @@ gem 'jbuilder', '~> 2.7', '>= 2.7.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

gem 'jquery-rails', '>= 4.4.0'
gem 'jquery-rails', '>= 4.5.0'


# Add the bootstrap
gem 'bootstrap', '~> 4.3.1.0'
gem 'bootstrap', '~> 4.4.1.0'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

gem 'devise', '>= 4.8.1'
gem 'devise', '>= 4.9.0'
gem 'carrierwave', '>= 2.1.1'
gem 'twitter', '>= 6.1.0'
gem 'active_model_serializers', '>= 0.10.12'
gem 'active_model_serializers', '>= 0.10.14'

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]
# Adds support for Capybara system testing and selenium driver
gem 'selenium-webdriver', '>= 3.4.4'
gem 'factory_girl_rails', '>= 4.9.0'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
gem 'rspec-rails', '~> 4.0', '>= 4.0.0'
gem 'rails-controller-testing', '>= 1.0.5'
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 4.2.0'
gem 'web-console', '>= 4.2.1'
gem 'listen', '>= 3.0.5', '< 3.2'

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
Expand All @@ -69,8 +69,8 @@ group :development do
end

group :test do
gem 'capybara', '~> 2.18', '>= 2.18.0'
gem 'cucumber-rails', '>= 2.4.0', require: false
gem 'capybara', '~> 3.0', '>= 3.0.0'
gem 'cucumber-rails', '>= 2.5.0', require: false
gem 'database_cleaner'
gem 'shoulda-matchers', '>= 3.1.2', require: false
gem 'vcr'
Expand Down
Loading