forked from pepabo/webistrano
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (37 loc) · 882 Bytes
/
Gemfile
File metadata and controls
47 lines (37 loc) · 882 Bytes
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
source "https://rubygems.org"
gem "rails", '3.2.13'
gem "exception_notification"
gem "capistrano", "2.15.4"
gem "open4"
gem "coderay"
gem "version_fu", :git => "https://github.com/jmckible/version_fu.git"
gem "devise", "3.0.3"
gem "devise-encryptable"
gem "pg"
gem 'rvm-capistrano'
gem 'capistrano-rbenv'
gem 'capistrano-unicorn', :require => false, :git => 'https://github.com/sosedoff/capistrano-unicorn.git'
gem 'whenever', :require => false
group :development do
gem "thin"
gem "pry"
gem "pry-rails"
gem 'pry-byebug'
end
group :test do
gem "mocha", :require => false
gem "factory_girl_rails"
gem "database_cleaner"
gem 'minitest-reporters'
end
group :production do
gem "unicorn"
end
group :assets do
gem "jquery-rails"
gem "uglifier"
gem 'therubyracer'
end
if File.exists?('config/Gemfile.extras')
eval File.read('config/Gemfile.extras')
end