Skip to content
Draft
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
10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby ">= 2.4.10", "< 2.5"

gem "rails", "~> 4.2"
gem "rails", "~> 5.0.7.2"

gem "devise", "~> 4.0"
gem "psych", "~> 2.0.2" # part of stdlib, need newer version for safe_load
Expand All @@ -24,10 +24,10 @@ gem "loofah", "<= 2.20.0"
gem "whenever", require: false # for cron jobs
gem "tilt"
gem "simple-navigation", "3.11.0"
gem "simple_form", "3.2.1"
gem "simple_form", "3.3.1"
gem "render_anywhere"
gem "pygments.rb", "~> 2.0"
gem "ranked-model", "< 0.4.3" # pinned because 0.4.3-0.4.4 are broken (see https://github.com/brendon/ranked-model/issues/139; we also need the fix in https://github.com/brendon/ranked-model/pull/152); we can't update to 0.4.5 yet because it requires activerecord >= 4.2
gem "ranked-model"
gem "pdf-reader"
gem "mechanize"
gem "prawn"
Expand All @@ -43,6 +43,8 @@ gem "ruby-duration"
gem "pg"
gem "backup"

gem "activemodel-serializers-xml"

# Redis and Background Processing
gem "redis"
gem "qless", github: "Shopify/qless"
Expand Down Expand Up @@ -79,7 +81,7 @@ group :development, :test do

gem "standard"

gem "test_after_commit", "~> 1.2"
gem "rails-controller-testing", "~> 1.0"
end

# Gems used only for assets and not required
Expand Down
Loading
Loading