This repository has been archived by the owner on Mar 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
76 lines (63 loc) · 1.46 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
69
70
71
72
73
74
75
76
source 'http://rubygems.org'
gem "rails", "~> 4.0"
gem 'mail'
gem 'pg'
# search
gem 'pg_search'
# Bundle the extra gems:
gem 'mechanize'
gem 'simple_form'
gem 'tvdb_party', github: 'jewilmeer/tvdb_party'
# paperclip validations suck bigtime: https://github.com/thoughtbot/paperclip#security-validations is not working
gem 'paperclip'
gem 'carrierwave'
gem 'fog'
gem "aws-sdk"
gem 'airbrake'
gem 'user-agent'
gem 'haml'
gem 'will_paginate'
# strong params doesn't like me in production
gem 'devise'
gem 'friendly_id'
# background
gem 'sidekiq'
gem 'slim'
gem 'sinatra'
# assets
gem 'jquery-rails'
gem 'coffee-rails'
gem 'sass-rails'
gem 'uglifier'
gem 'bootstrap-sass', '~> 2.0'
gem 'bootswatch-rails', '~> 3.1.0'
gem 'font-awesome-sass-rails'
gem 'sprockets', '2.11.0' # because of undefined method `environment' for nil:NilClass error
gem 'dotenv-rails'
group :production do
gem 'newrelic_rpm'
gem 'dalli'
end
group :development, :test do
gem 'thin'
gem 'letter_opener'
# test stuff
gem 'rspec-rails'
gem "factory_girl_rails"
# help test stuff
gem 'timecop'
gem 'pry-rails'
end
group :development do
gem 'annotate', github: 'ctran/annotate_models'
gem 'capistrano', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-passenger', require: false
gem 'capistrano-sidekiq', require: false
end
group :test do
gem 'fakeweb'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
end