This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
76 lines (58 loc) · 1.36 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
source 'https://rubygems.org'
# source 'http://ruby.taobao.org'
ruby '2.1.0'
gem 'rails', '4.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'slim'
gem 'thin'
gem 'will_paginate'
gem 'nokogiri'
gem 'unicorn'
gem 'devise'
gem 'activesupport', '4.1.0'
gem 'jquery-rails'
gem 'rest-client'
# 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 CapistranoCapistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
# Cache
gem 'rack-cache'
gem 'dalli'
gem 'kgio'
gem 'memcachier'
gem 'protected_attributes'
gem 'newrelic_rpm'
gem 'gis-distance'
gem 'acts_as_commentable_with_threading'
gem 'gravatar-ultimate'
gem 'sidekiq'
# gem 'awesome_nested_set'
gem 'awesome_nested_set', '3.0.0.rc.3'
#admin interface
gem 'activeadmin', github: 'gregbell/active_admin'
#lock version
gem 'sass-rails', github: 'rails/sass-rails'
gem 'bourbon', '< 4'
gem 'activeresource', require: 'active_resource'
gem 'active-resource-pagination'
group :development, :test do
gem 'rspec-rails'
gem 'tddium'
gem "flay"
gem 'simplecov'
gem 'machinist'
gem 'cucumber-rails', :require => false
gem 'capybara'
gem 'database_cleaner'
gem 'selenium-webdriver'
gem 'rails_best_practices'
end