-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (41 loc) · 884 Bytes
/
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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.1.5'
gem 'railties', '4.1.5'
gem 'jquery-rails', '3.1.2'
gem 'activesupport', '4.1.5'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'bootstrap-switch-rails'
gem 'bcrypt-ruby', '3.1.5'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'jquery-ui-rails'
gem 'jquery-ui-themes'
gem 'jquery-ui-form'
gem 'jquery-tablesorter'
gem 'prawn'
gem 'prawn-table'
gem 'prawn-grouping'
gem 'words_counted'
gem 'jquery-countdown-rails'
gem 'time_diff'
group :development, :test do
gem 'sqlite3', '1.3.8'
gem 'rspec-rails', '2.13.1'
end
group :test do
gem 'selenium-webdriver', '2.35.1'
gem 'capybara', '2.1.0'
end
gem 'sass-rails', '~>4.0.2'
gem 'uglifier', '2.1.1'
gem 'coffee-rails'
gem 'turbolinks'
gem 'jbuilder'
group :doc do
gem 'sdoc', '0.3.20'
end
group :production do
gem 'mysql2'
gem 'rails_12factor', '0.0.2'
end