-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
56 lines (37 loc) · 1.29 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'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.3.13', '< 0.5'
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use Nokogiri gem for using mechanize
gem 'nokogiri', '~> 1.6.7.2'
# Use Mechanize gem for follow/unfollow in Inbound
gem 'mechanize', '~> 2.7.5'
# Jquery Datatable.
gem 'jquery-datatables-rails', '~> 3.4'
# For pagination
gem 'will_paginate', '~> 3.1'
gem 'will_paginate-bootstrap', '~> 1.0', '>= 1.0.1'
# Adds a Redis::Namespace class which can be used to namespace calls to Redis. This is useful when using a single instance of Redis with multiple, different applications.
gem 'redis-namespace'
# Rails Cron
gem 'whenever', '~> 0.9.4', require: false
# Convert Non Char to Ascii
gem 'unidecoder'
group :production do
# To enable html compression
gem 'htmlcompressor'
# For Apache Rails engine
gem 'passenger'
end
group :development do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end