-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
68 lines (55 loc) · 1.23 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
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '4.1.8'
gem 'devise'
gem 'paperclip'
gem 'therubyracer'
gem 'less-rails' #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem 'twitter-bootstrap-rails', git: 'git://github.com/seyhunak/twitter-bootstrap-rails.git', branch: 'bootstrap3'
gem 'bootstrap_form'
gem 'rails_email_validator'
gem 'cancan'
gem 'haml-rails'
gem 'aws-sdk'
gem 'puma'
gem 'jquery-rails'
gem 'jquery-ui-rails'
# dafuq?
gem 'ransack', github: 'activerecord-hackery/ransack', branch: 'rails-4.1'
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
gem 'by_star'
gem 'morrisjs-rails'
gem 'raphael-rails'
# /dafuq?
gem 'will_paginate-bootstrap'
group :production do
# HEROKU stuff
gem 'rails_12factor'
gem 'pg'
end
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development do
gem 'quiet_assets'
gem 'letter_opener'
gem 'rails-erd'
gem 'binding_of_caller'
gem 'better_errors'
gem 'annotate'
gem 'rubocop'
end
group :test do
gem 'shoulda-matchers'
gem 'poltergeist'
gem 'capybara'
gem 'capybara-screenshot'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'launchy'
end
group :development, :test do
gem 'rspec-rails'
end