Skip to content

Commit f521fac

Browse files
committed
Another place we need to address sqlite3
1 parent 88adf10 commit f521fac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sites/en/intro-to-rails/_deploying_to_heroku.step

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ step "Edit the Gemfile" do
1111
message "Open the file called `Gemfile` in Atom, or your preferred editor, and find the line containing:"
1212

1313
source_code :ruby, <<-RUBY
14-
gem 'sqlite3'
14+
gem 'sqlite3', '~>1.3.6'
1515
RUBY
1616

1717
message "**Remove that line** and replace it with:"
1818

1919
source_code :ruby, <<-RUBY
2020
group :development, :test do
21-
gem 'sqlite3'
21+
gem 'sqlite3', '~>1.3.6'
2222
end
2323

2424
group :production do
25-
gem 'pg', '~> 0.18'
25+
gem 'pg', '~> 1.1.4'
2626
end
2727
RUBY
2828
end

0 commit comments

Comments
 (0)