-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
91 lines (69 loc) · 1.96 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
source 'http://rubygems.org'
gem 'rails', '3.2.12'
gem 'rake', '0.9.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'json', '~> 1.7.7'
# For Authentication
gem 'devise', '~> 2.2.3'
# For Authorization
gem 'cancan'
# Twitter Bootstrap Dependency
gem 'less-rails', '~> 2.2.6'
# Exception notification
gem 'airbrake'
# Let's administrate!
gem 'activeadmin'
# For search
gem 'meta_search'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.6'
gem 'coffee-rails', '~> 3.2.2'
gem 'jquery-rails', '~> 2.2.1'
gem 'coffee-script-source', '~> 1.4.0' # ADD THIS LINE, 1.5.0 doesn't compile ActiveAdmin JavaScript files
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '~> 0.10.2', :platforms => :ruby
# TODO: Why is this 1.0.3 when the latest is 1.3.0?
gem 'uglifier', '>= 1.0.3'
gem 'twitter-bootstrap-rails', '2.2.4'
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'
# Your the data now dog! Datadog integrations here.
gem 'dogapi'
# Pagination for easier search
gem 'will_paginate', '~> 3.0'
gem 'bootstrap-will_paginate'
# Search with elasticsearch (backend) and tire (gem)
# To use debugger
# gem 'ruby-debug'
group :development, :test do
gem 'sqlite3', '~> 1.3.6'
gem 'rspec-rails', '~> 2.12.1'
gem 'capybara'
gem 'factory_girl_rails', '~> 4.1.0'
gem 'shoulda-matchers', '~> 1.4.2'
gem 'guard'
gem 'guard-rspec'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
gem 'pry'
gem 'pry-nav'
gem 'awesome_print'
gem 'letter_opener_web', '1.0.0.rc3'
gem 'foreman'
gem 'meta_request', '0.2.1'
gem 'thin'
gem 'rails-erd'
gem 'git-smart'
end
group :production do
gem 'pg', '~> 0.14.1'
end