|
@@ -3,8 +3,6 @@ source 'https://rubygems.org'
|
3
|
3
|
|
4
|
4
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
5
|
5
|
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
|
6
|
|
-# Use sqlite3 as the database for Active Record
|
7
|
|
-gem 'sqlite3'
|
8
|
6
|
# Use Puma as the app server
|
9
|
7
|
gem 'puma', '~> 3.0'
|
10
|
8
|
# Use SCSS for stylesheets
|
|
@@ -58,6 +56,9 @@ group :development, :test do
|
58
|
56
|
end
|
59
|
57
|
|
60
|
58
|
group :development do
|
|
59
|
+ # Use sqlite3 as the database for development
|
|
60
|
+ gem 'sqlite3'
|
|
61
|
+
|
61
|
62
|
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
62
|
63
|
gem 'web-console'
|
63
|
64
|
gem 'listen', '~> 3.0.5'
|
|
@@ -66,5 +67,10 @@ group :development do
|
66
|
67
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
67
|
68
|
end
|
68
|
69
|
|
|
70
|
+group :production do
|
|
71
|
+ # Use a real database in production
|
|
72
|
+ gem 'pg'
|
|
73
|
+end
|
|
74
|
+
|
69
|
75
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
70
|
76
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|