-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
88 lines (64 loc) · 1.48 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
source 'http://rubygems.org'
gem 'rails', '4.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'rvm-capistrano'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
end
gem "ransack"
gem 'jquery-rails'
gem 'devise'
gem "seo_helper", "~> 1.0"
gem "open_graph_helper"
gem "mini_magick"
gem "carrierwave"
gem "carrierwave-meta"
gem "settingslogic"
gem "anjlab-bootstrap-rails", ">= 2.1", :require => "bootstrap-rails"
gem "bootstrap_helper", ">= 2.1.2"
gem "simple_form", "3.0.0.rc"
gem "will_paginate", "3.0.4"
gem "high_voltage"
gem "airbrake"
gem 'yajl-ruby', :require => 'yajl/json_gem'
gem 'jbuilder'
group :assets do
gem "compass-rails"
end
group :test do
gem "spork"
end
group :development do
gem "capistrano"
gem "capistrano-ext"
gem "cape"
gem "pry"
gem 'pry-rails'
# for commnet and document
gem "rails-erd"
gem "magic_encoding"
# for autoreload spork
gem 'guard-spork'
gem "rb-inotify"
gem "powder"
gem "pry-nav"
gem "pry-remote"
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end