-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
69 lines (52 loc) · 1.57 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
source 'https://rubygems.org'
ruby '3.1.2'
gem 'rails', '>= 6.0.0'
gem 'rack-rewrite'# Needed to rewrite data in query string values due to retarded BitTorrent /announce and /scrape behavior.
gem 'devise'
gem 'devise-bootstrap-views'
gem 'cancancan'
# gem 'therubyracer' # Google v8 JavaScript runtime.
# AngularJS
# http://www.intridea.com/blog/2014/9/25/how-to-set-up-angular-with-rails
gem 'angular-rails-templates'
gem 'bower-rails'
# General jQuery.
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'chosen-rails'
gem 'bootstrap-sass'
gem 'autoprefixer-rails'
gem 'jbuilder' # JSON output customization
gem 'slim-rails' # Better templating.
gem 'geoip' # Local IP address -> coordinate geocoding.
gem 'bencode' # BitTorrent data serialation format support.
gem 'formtastic'
gem 'geocoder'
gem 'gravatar_image_tag'
gem 'puma' # Better web server.
gem 'net-smtp'
# Use SCSS for stylesheets
gem 'sass-rails' #, '~> 4.0.5'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier' #, '>= 2.5.3'
gem 'pg'
group :test, :development do
gem 'simplecov', require: false
gem 'guard'
gem 'guard-minitest', '>= 2.4.5'
end
group :development do
gem 'railroady'
gem 'byebug' # CLI debugging.
gem 'web-console' # Access an IRB console on exception pages or by using <%= console %> in views
gem 'binding_of_caller'
gem 'spring'
gem 'yaml_db' # For dumping production data.
gem 'bullet' # N+1 and detector of other smells.
end
group :production do
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end