-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (52 loc) · 1.3 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'https://rubygems.org'
ruby "2.5.0"
# bundle edge rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~>4.2.10'
# use postgresql as the database for active record
gem 'pg', '~> 0.18'
# slim
gem 'slim-rails'
# sessions for heroku spin down
gem 'activerecord-session_store'
# use scss for stylesheets
gem 'sass-rails'
# use uglifier as compressor for javascript assets
gem 'uglifier'
# use coffeescript for .js.coffee assets and views
gem 'coffee-rails'
# zurb stuff for responsive framework
gem 'compass-rails'
gem 'zurb-foundation'
# see https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# time ago for tweet dates
gem 'rails-timeago'
# link helpers
gem 'rails_autolink'
gem 'sanitize'
# avatar uploads
gem 'carrierwave'
gem 'fog'
gem 'mini_magick'
# pagination
gem 'kaminari'
# use jquery as the javascript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# for heroku assets
gem 'rails_12factor', group: :production
# for ios push notifications
gem 'houston'
# soft deletes for undo
gem 'paranoia'
group :doc do
# bundle exec rake doc:rails generates the api under doc/api.
gem 'sdoc', require: false
end
group :development do
gem 'pry-rails'
gem 'pry'
gem 'zeus'
end
# use activemodel has_secure_password
gem 'bcrypt-ruby'