forked from waka/webistrano
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (35 loc) · 738 Bytes
/
Gemfile
File metadata and controls
45 lines (35 loc) · 738 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
source "https://rubygems.org"
gem "rails", git: "git://github.com/rails/rails.git", branch: "3-2-stable"
gem "exception_notification"
gem "capistrano"
gem "open4"
gem "syntax"
gem "version_fu", :github => "jmckible/version_fu"
gem "devise"
gem "devise-encryptable"
group :development do
gem "thin"
gem "pry"
gem "pry-rails"
end
group :test do
gem "test-unit"
gem "mocha", :require => false
gem "factory_girl_rails"
gem "database_cleaner"
end
group :development, :test do
gem "sqlite3"
end
group :production do
gem "mysql2"
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