forked from hotsh/rstat.us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (54 loc) · 1.7 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
source 'http://rubygems.org'
gem 'rails', '3.1.6'
# Asset template engines
gem 'compass', :git => "git://github.com/chriseppstein/compass.git", :branch => "rails31"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier', "~> 1.0.0"
end
gem "haml-rails", "~> 0.3.4"
gem 'jquery-rails', "~> 1.0.12"
gem 'airbrake', "~> 3.0.9"
gem 'bcrypt-ruby', "~> 3.0.0"
gem 'unicorn', "~> 4.0.1"
gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git'
gem "mongo_mapper", "~> 0.9.2"
gem "bson_ext", "~> 1.3.1"
gem "i18n", "~> 0.6.0"
gem "twitter", "~> 1.6.2"
gem "pony", "~> 1.3"
gem "rdiscount", "~> 1.6.8"
gem "ostatus", "~> 0.0.9"
gem "osub", "~> 0.0.6"
gem "opub", "~> 0.0.1"
gem "redfinger", "~> 0.1.0"
gem "nokogiri", "~> 1.5.0"
gem "tzinfo", "~> 0.3.29"
gem "rsa", "~> 0.1.4"
gem "exceptional", "~> 2.0.32"
gem "newrelic_rpm", "~> 3.3.1"
gem "draper", "~> 0.11.1"
# background job queue
gem "delayed_job", :git => "git://github.com/collectiveidea/delayed_job.git", :tag => "v2.1.4"
gem "delayed_job_mongo_mapper", :git => "git://github.com/earbits/delayed_job_mongo_mapper.git"
gem "whenever", "~> 0.6.8"
group :development, :test do
gem "database_cleaner", "~> 0.6.7"
gem "fabrication", "~> 1.2.0"
gem "capybara", "~> 1.0.1"
gem "show_me_the_cookies", "~> 1.1.0"
gem "rocco", :git => "git://github.com/rtomayko/rocco.git"
gem "pygmentize", "~> 0.0.3"
gem "mocha", "~> 0.11.0"
gem "vcr", "~> 1.10.3"
gem "simplecov", "~> 0.4.0", :require => false
gem "launchy", "~> 2.0.5"
gem "minitest", "~> 2.12.1"
gem "quiet_assets", "~> 1.0.0"
end
group :test do
gem "webmock", "~> 1.6.4"
end