-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
107 lines (76 loc) · 1.74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
source 'https://rubygems.org'
gem 'rails', '4'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem 'pg'
gem 'meta_request'
end
group :test do
gem 'sqlite3'
end
# better server
gem 'thin'
#faster links
gem 'turbolinks'
# Haml > erb
gem 'haml'
#Syntax highligting
gem 'coderay'
#d3
gem 'd3-rails'
gem 'd3-tip-rails'
#google charts
gem 'google_visualr'
#jquery mousewheel
gem "jquery-mousewheel-rails"
#jquery ui
gem 'jquery-ui-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
end
gem 'uglifier', '>= 1.0.3'
group :production do
gem 'mysql2'
gem 'unicorn'
end
# gem 'therubyracer'
# gem 'less-rails' #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
# gem 'twitter-bootstrap-rails'
gem 'grit'
gem 'rugged', git: 'git://github.com/libgit2/rugged.git', branch: 'development', submodules: true
# metrics!
gem 'simplecov', :require => false, :group => :test
gem 'rails_best_practices'
gem 'flog'
gem 'flay'
gem 'rubocop'
gem 'syntax'
# background process job jandling
gem 'resque'
gem 'jquery-rails'
gem 'mustache-js-rails'
# protection
gem 'guard'
#live reload gem
gem 'guard-livereload'
gem 'google-analytics-rails'
gem 'analytics-ruby', '~>1.0'
gem 'newrelic_rpm'
# erd
gem 'rails-erd'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'