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 @@ -2,25 +2,25 @@

source 'https://rubygems.org'

gem 'coffee-rails', '~> 4.1.0'
gem 'coffee-rails', '~> 4.2.2'
gem 'pg'
gem 'rails'
gem 'sass-rails', '~> 5.0'
gem 'rails', '>= 7.0.8.1'
gem 'sass-rails', '~> 5.0', '>= 5.0.8'
gem 'uglifier', '>= 1.3.0'

# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby

gem 'jquery-rails'
gem 'jquery-rails', '>= 4.3.4'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'sdoc', '~> 1.0.0', group: :doc

gem 'dotenv-rails', groups: %i[development test]
gem 'dragonfly', '~> 1.0.12'
gem 'dotenv-rails', '>= 2.7.6', groups: %i[development test]
gem 'dragonfly', '~> 1.1.0'
gem 'dragonfly-s3_data_store'
gem 'image_size'
gem 'rails_admin'
gem 'rails_admin', '>= 3.0.0'
gem 'sequenced'

# Use ActiveModel has_secure_password
Expand All @@ -38,24 +38,24 @@ group :development, :test do
gem 'factory_girl_rails', '~> 4.0'
gem 'pry-rails'
gem 'rest-client'
gem 'rspec-rails'
gem 'rspec-rails', '>= 3.8.3'
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'web-console', '~> 3.0', '>= 3.0.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end

group :test do
gem 'cucumber-rails', require: false
gem 'cucumber-rails', '>= 2.1.0', require: false
gem 'database_cleaner'
gem 'poltergeist'
end

group :demo_test_run do
gem 'capybara'
gem 'capybara', '>= 3.19.0'
gem 'poltergeist'
gem 'rmagick'
gem 'rspec'
Expand Down
Loading