-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
60 lines (44 loc) · 1.31 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
source 'https://rubygems.org'
# core
gem 'rails', '~> 4.2'
# load env
gem 'figaro', '~> 1.1.1'
# html-xml
gem 'haml-rails', '~> 0.9.0' # haml for views
# style
gem 'sass-rails', '~> 5.0.4' # sass style
gem 'bootstrap-sass', '~> 3.3.4.1' # bootstrap style
# js
gem 'uglifier', '~> 2.7.2' # minifies js
gem 'coffee-rails', '~> 4.1.1' # coffeescript support
gem 'jquery-rails', '~> 4.1.0' # jquery
gem 'turbolinks', '~> 2.5.3'
gem 'therubyracer', '~> 0.12.2', platforms: :ruby
gem 'epp', '1.5.0', github: 'internetee/epp'
gem 'epp-xml', '1.1.0', github: 'internetee/epp-xml'
gem 'uuidtools', '~> 2.1.4' # For unique IDs (used by the epp gem)
gem 'nokogiri'
gem 'countries', '~> 1.2.5'
gem 'coderay', '~> 1.1.1' # xml console visualize
gem 'kaminari', '~> 0.16.3' # pagination
# monitors
gem 'newrelic_rpm', '~> 3.9.9.275'
group :development do
# dev tools
gem 'spring'
gem 'unicorn'
gem 'rubocop'
gem 'guard-rubocop', '~> 1.1.0'
# better errors
gem 'better_errors', '~> 2.1.1'
gem 'binding_of_caller', '~> 0.7.2'
# fast sass development
gem 'guard-livereload', '2.5.2', require: false
gem 'rack-livereload', '0.3.16'
# deploy
gem 'mina', '~> 0.3.8' # for fast deployment
end
group :development, :test do
gem 'pry', '~> 0.10.1'
gem 'sdoc', '~> 0.4.0'
end