-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathGemfile
More file actions
103 lines (94 loc) · 1.93 KB
/
Gemfile
File metadata and controls
103 lines (94 loc) · 1.93 KB
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
source 'https://rubygems.org'
def require_false_unless(gem_name, condition)
if condition
gem gem_name
else
gem gem_name, :require => false
end
gem gem_name
end
gem 'rails', '~> 3.2.0'
# image uploads
gem 'carrierwave'
gem 'fog'
# image manipulation
gem 'mini_magick'
# view templating
gem 'haml-rails'
# javascript
gem 'jquery-rails'
# pagination
gem 'kaminari'
# web server
gem 'thin'
# tweet_engine
gem 'tweet_engine', path: 'tweet_engine'
# cron jobs
gem 'whenever', require: false
group :assets do
# twitter boostrap converted to sass files
gem 'bootstrap-sass', '~> 2.1.0.0'
# javascript
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.3'
# fluid grids
gem 'susy'
# compressor
gem 'uglifier', '>= 1.0.3'
end
group :production do
# diagnostics
require_false_unless('newrelic_rpm', !!ENV['NEW_RELIC_APP_NAME'])
# gem 'newrelic_rpm', require: false
# memcached
require_false_unless('memcachier', !!ENV['MEMCACHIER_USERNAME'])
gem 'dalli'
# db
gem 'pg'
# heroku addon
# gem 'carrierwave' # must come first
require_false_unless('cloudinary', !!ENV['CLOUDINARY_URL'])
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
# 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