forked from hotsh/rstat.us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (50 loc) · 1.25 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
source 'http://rubygems.org'
gem 'rails', '3.1.0'
# 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'
end
gem "haml-rails"
gem 'jquery-rails'
gem 'unicorn'
gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git'
gem "sinatra", :require => "sinatra/base"
gem "mongo_mapper"
gem "bson_ext"
gem "i18n"
gem "twitter"
gem "pony"
gem "bcrypt-ruby", :require => "bcrypt"
gem "rdiscount"
gem "ostatus", "~>0.0.9"
gem "osub", "~>0.0.6"
gem "opub"
gem "redfinger"
gem "nokogiri"
gem "tzinfo"
gem "rsa"
gem "exceptional"
# 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"
group :development, :test do
gem 'rack-test'
gem "database_cleaner"
gem "factory_girl"
gem "capybara"
gem "rocco"
gem "pygmentize"
gem "mocha"
gem "vcr"
gem "simplecov", "~> 0.4.0", :require => false
gem "launchy"
end
group :test do
gem "webmock"
end