-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
68 lines (51 loc) · 1.44 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
source "http://rubygems.org"
gem "rails", "3.2.11"
gem "jquery-rails"
gem "jquery_datepicker"
# replaces WebRick to get rid of the content length warnings. See
# http://stackoverflow.com/questions/9612618/
# Also required for multithreaded Rails. See
# http://www.wordchuck.com/en/website/blogs/4
gem "thin"
# rails plugin that allows stripping attributes easily
gem "strip_attributes"
gem "work_queue", ">=2.0"
gem "open4"
gem "fastimage", "1.2.13"
# Proper unicode downcase and the like
gem "unicode_utils"
group :production do
end
# Gems used only for assets and not required in production environments
# by default.
group :assets do
gem "sass-rails", "~> 3.2.5"
gem "coffee-rails", "~> 3.2.2"
gem "uglifier", ">= 1.0.3"
gem "therubyracer"
gem "yui-compressor"
end
group :test do
gem "shoulda"
end
# Databases ############################################################
# See http://stackoverflow.com/questions/5769352/ why rails-dbi is
# required
gem "rails-dbi", :require => "dbi"
gem "mysql2"
gem "dbd-mysql"
gem "pg"
gem "dbd-pg"
# intended for debugging, but allow for production as well
gem "sqlite3"
gem "dbd-sqlite3"
# Gems only required in Rakefile and/or rakefiles/*
group :rakefiles do
gem "mechanize" # only used in rakefiles/import.rb
gem "text" # only used in rakefiles/import.rb via lib/friends.rb
end
# gems required for OMR
group :pest do
gem "gtk2", "~> 1.1.5"
gem "rmagick", :require => "RMagick"
end