forked from privly/privly-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (45 loc) · 1.17 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
source 'http://rubygems.org'
# Core System
gem 'rails', '~> 3.2.0'
gem 'json'
gem 'jquery-rails'
# Database gem
gem 'mysql2' # Comment out this line to use another Database type
# gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "~> 3.2.3"
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier', '>=1.0.3'
end
group :test do
gem 'selenium-webdriver'
end
# Records test coverage
gem "codeclimate-test-reporter", group: :test, require: nil
group :test, :development do
# These are the target gems of this tutorial
gem 'sauce', '~> 3.1.1'
gem 'sauce-connect'
gem 'capybara', '~> 2.4.4'
end
# Deploy with Capistrano
gem 'capistrano', '~> 2.15.5'
# To use debugger
# gem 'ruby-debug'
#Javascript runtime
gem 'execjs'
gem 'therubyracer'
# Authentication
gem 'devise' #https://github.com/plataformatec/devise
# This version is currently required for Devise 3+ on Rails 3.2
gem 'devise_invitable', '= 1.2.1'
# Administration interface
gem "activeadmin"
# Markdown lightweight markup language gem
gem 'rdiscount'
# Useragent inspection
gem 'useragent'
# Error reporting service
gem "airbrake"