forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (30 loc) · 668 Bytes
/
Gemfile
File metadata and controls
35 lines (30 loc) · 668 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
source 'http://rubygems.org'
gem 'rails', '3.0.5'
gem 'nokogiri'
gem 'mongoid', '2.0.0.rc.8'
gem 'haml'
gem 'will_paginate'
gem 'devise', '~> 1.1.8'
gem 'lighthouse-api'
#gem 'redmine_client', :git => "git://github.com/oruen/redmine_client.git"
gem 'mongoid_rails_migrations'
gem 'useragent', '~> 0.3.1'
gem 'pivotal-tracker'
#gem 'SystemTimer'
gem 'json'
platform :ruby do
gem 'bson_ext', '~> 1.2'
end
group :development, :test do
gem 'rspec-rails', '~> 2.5'
gem 'webmock', :require => false
end
group :test do
gem 'rspec', '~> 2.5'
gem 'database_cleaner', '~> 0.6.0'
gem 'factory_girl_rails'
gem 'email_spec'
end
group :heroku do
gem 'thin'
end