forked from chaosdorf/mete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (43 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
source 'https://rubygems.org'
gem 'rails', '~> 5'
# https://github.com/rails/sprockets-rails/issues/131
#gem 'sprockets-rails', :require => 'sprockets/rails/version'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
gem 'sass-rails'
gem 'coffee-rails'
gem 'bootstrap-sass', :github => 'thomas-mcdonald/bootstrap-sass'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails'
gem 'haml-rails'
gem 'gravatar_image_tag'
gem 'paperclip'
gem 'formtastic'
gem 'formtastic-bootstrap', :github => 'nickl-/formtastic-bootstrap3', :branch => 'bootstrap3'
gem 'bootswatch-rails', :github => 'log0ymxm/bootswatch-rails'
gem 'favicon_maker'
gem 'mini_magick', :github => 'minimagick/minimagick'
gem 'unicorn'
gem 'autoprefixer-rails'
gem 'rails-controller-testing'
gem "codeclimate-test-reporter", group: :test, require: nil
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# To use debugger
# gem 'debugger'
#
#
group :development do
gem 'faker'
gem 'rails-perftest', :github => 'rails/rails-perftest'
gem 'ruby-prof'
end
group :production do
gem 'SyslogLogger'
gem 'sentry-raven'
end