-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (27 loc) · 895 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
source 'https://rubygems.org'
gem 'rails', '4.2.0'
gem 'sinatra', require: 'sinatra/base'
###########################
### pluto machinery
gem 'pluto-models'
gem 'pluto-update'
gem 'pluto-tasks'
###########################
### mount sinatra apps
gem 'pluto-admin'
gem 'about' # mountable app - about - sys info pages
gem 'dbbrowser' # mountable app
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'uglifier' ## add for heroku - required for assets:precompile
group :production do
gem 'pg'
gem 'thin' # use faster multiplexed (w/ eventmachine) web server - use unicorn?? why? why not?
gem 'rails_12factor' ## add for heroku install
end
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end