-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
55 lines (48 loc) · 1.22 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
source 'https://rubygems.org'
gem 'rails', '~>3.2.22.2'
gem 'rails_12factor'
gem 'haml-rails'
gem 'selenium-webdriver'
gem 'poltergeist'
gem 'authlogic'
gem 'twilio-ruby'
gem 'jquery-rails'
gem 'rubocop'
gem 'simplecov'
gem 'masonry-rails'
gem 'table_print'
# Normalize.css is a customisable CSS file that makes browsers render all
# elements more consistently and in line with modern standards.
gem 'normalize-rails'
# In order to avoid the json 1.8.1 bug
# (https://travis-ci.org/CSC322-Grinnell/notifications/jobs/110022386), force
# an unbroken version
gem 'json', '~>1.8.2'
group :development, :test do
gem 'sqlite3'
gem 'pry-byebug'
gem 'database_cleaner'
gem 'launchy'
gem 'capybara'
gem 'rspec-rails'
gem 'test-unit'
end
group :test do
gem 'cucumber-rails'
gem 'cucumber-rails-training-wheels'
# CodeClimate reports test coverage and scores the DRYness and readibility of
# the project.
gem 'codeclimate-test-reporter'
end
group :production do
gem 'pg'
gem 'heroku'
gem 'rails_12factor'
end
# 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