-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
54 lines (39 loc) · 973 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
45
46
47
48
49
50
51
52
53
54
source 'https://rubygems.org'
ruby '2.2.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.0'
# i18n
gem 'rails-i18n', '~> 4.0.0'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails'
gem 'compass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use jquery as the JavaScript library
gem 'jquery-rails'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Bing Translation
gem 'bing_translator', '~> 4.4.0'
# Authentication
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'koala'
# Twitter Bootstrap
gem 'therubyracer'
gem 'less-rails' #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem 'twitter-bootstrap-rails'
gem 'simple_form'
# ActivRecord tree structure
gem 'ancestry'
# Charts
gem "chartkick"
# Puma webserver
gem 'puma'
# Documentation
gem 'yard'