This repository was archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
83 lines (71 loc) · 1.56 KB
/
Gemfile
File metadata and controls
83 lines (71 loc) · 1.56 KB
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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'mysql2', '0.3.13'
gem 'pg'
gem 'sass-rails', '>= 3.2.3'
gem 'coffee-rails', '>= 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails'
gem 'select2-rails'
gem 'bootstrap-sass', '>= 3.0.2.0'
gem 'haml-rails', '>= 0.3.4'
gem 'haml'
gem 'simple_form', '>= 3.0.0.rc'
gem 'koala', "~> 1.7.0rc1"
gem 'omniauth'
gem 'omniauth-facebook'
gem 'figaro'
gem 'therubyracer', :platforms => :ruby
gem 'json'
gem 'turbolinks'
gem 'jbuilder'
gem 'sidekiq'
gem 'sinatra', require: false
gem 'slim'
gem 'kaminari'
gem 'chartkick'
gem 'sanitize'
gem 'watir-webdriver', '>= 0.6.4'
gem 'selenium-webdriver', '>= 2.37.0'
gem 'headless', :platform => :ruby
gem 'exception_notification'
group :development, :test do
gem 'byebug'
gem 'sqlite3'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'guard-spork'
gem 'childprocess'
end
group :test do
# gem 'capybara', '2.1.0'
# Uncomment this line on OS X.
# gem 'growl', '1.0.3'
# Uncomment these lines on Linux.
gem 'libnotify', '0.8.0', :platform => :ruby
# Uncomment these lines on Windows.
# gem 'rb-notifu', '0.0.4'
# gem 'win32console', '1.3.2'
gem 'factory_girl_rails'
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem 'bullet'
gem 'flay'
gem 'hirb'
gem 'localtunnel'
gem 'lol_dba'
gem 'mailcatcher'
gem 'quiet_assets'
gem 'rack-mini-profiler'
gem 'rails_best_practices'
gem 'reek', '>= 1.3'
gem 'request-log-analyzer'
gem 'smusher'
gem 'ruby-prof'
end
group :doc do
gem 'sdoc', '0.3.20', require: false
end