Skip to content

Commit

Permalink
Feature: Upgrade to Rails 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
benubois committed Dec 23, 2019
1 parent fcb9fdc commit dd402d8
Show file tree
Hide file tree
Showing 58 changed files with 448 additions and 331 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -22,4 +22,5 @@
.env.development
public
coverage
.byebug_history
.byebug_history
/node_modules
13 changes: 5 additions & 8 deletions Gemfile
@@ -1,13 +1,11 @@
source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }

gem "rails", "= 5.1.7"
gem "rails", github: "rails/rails", branch: "6-0-stable"

gem "rails-deprecated_sanitizer"
gem "rails-controller-testing"
gem "rails_autolink"

gem "nokogumbo", "= 1.4.9"
gem "responders"

group :development do
gem "capistrano"
Expand Down Expand Up @@ -37,7 +35,7 @@ group :development, :test do
gem "standard"
end

gem "pg", "< 1.0"
gem "pg"
gem "unicorn"

gem "feedjira", github: "feedbin/feedjira", ref: "e6b7b11"
Expand All @@ -49,8 +47,8 @@ gem "grocer-pushpackager", github: "feedbin/grocer-pushpackager", ref: "6b01b4e"
gem "html_diff", github: "feedbin/html_diff", ref: "c7c15ce"
gem "carrierwave_direct", github: "feedbin/carrierwave_direct", ref: "a0bc323"

gem "sass-rails"
gem "mini_racer"
gem "sassc-rails"
gem "coffee-rails"
gem "uglifier", "= 4.1.11"
gem "autoprefixer-rails"
Expand Down Expand Up @@ -82,7 +80,6 @@ gem "evernote_oauth"
gem "rmagick", require: false
gem "reverse_markdown"
gem "htmlentities"
gem "responders", "~> 2.0"
gem "dotenv-rails"
gem "kramdown"
gem "premailer-rails"
Expand All @@ -100,5 +97,5 @@ gem "unicode-emoji"
gem "rack-attack"

# Stripe
gem "stripe"
gem "stripe", "~> 4.24.0"
gem "stripe_event"

0 comments on commit dd402d8

Please sign in to comment.