-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathGemfile
104 lines (95 loc) · 2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
source 'https://rubygems.org'
ruby "2.0.0"
gem 'rails', '~> 4.0.0'
# image uploads
gem 'carrierwave'
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'fog'
# Fog dependency for AWS keys
gem 'unf'
# image manipulation
gem 'mini_magick'
# view templating
gem 'haml-rails'
# javascript
gem 'jquery-rails'
# pagination
gem 'kaminari'
# diagnostics
gem 'newrelic_rpm'
# web server
gem 'thin'
# twitter api
gem 'twitter'
# javascript
gem 'coffee-rails', '~> 4.0.0'
gem "compass-rails", '~> 1.1', '>= 1.1.5'
gem 'sass-rails', '~> 4.0.0'
# twitter boostrap converted to sass files
gem 'bootstrap-sass', '~> 2.1.0.0'
# fluid grids
gem 'susy'
# compressor
gem 'uglifier', '>= 1.3.0'
group :production do
def require_false_unless(gem_name, condition)
if condition
gem gem_name
else
gem gem_name, :require => false
end
end
# memcached
gem 'memcachier'
gem 'dalli'
# db
gem 'pg'
# heroku addon
# gem 'carrierwave' # must come first
require_false_unless('cloudinary', !!ENV['CLOUDINARY_URL'])
# required by heroku
gem 'rails_12factor'
gem 'rails_serve_static_assets'
end
group :development do
gem 'foreman'
end
group :development, :test do
# configuration
gem 'figaro'
# spec testing
gem 'rspec-rails'
# db
gem 'sqlite3'
end
group :test do
# acceptance testing
gem 'cucumber-rails', require: false, github: 'cucumber/cucumber-rails' # see https://github.com/cucumber/cucumber-rails/pull/253#issuecomment-23400508
# clear db
gem 'database_cleaner'
# notifier
gem 'growl'
# autotest
gem 'guard', '1.4.0'
gem 'guard-cucumber'
gem 'guard-livereload'
gem 'guard-rspec'
# platform-agnostic program launcher
gem 'launchy'
# change notifier
gem 'listen'
# better repl
gem 'pry'
gem 'pry-doc'
gem 'pry-rails'
# file system event watcher
gem 'rb-fsevent', '~> 0.9.1'
# test coverage
gem 'simplecov'
# time manipulation for tests
gem 'timecop'
# record and replay test web requests
gem 'vcr'
# mock web requests
gem 'webmock'
end