This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
94 lines (70 loc) · 1.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
source 'http://rubygems.org'
gem 'rails', '~> 3.1'
# js
gem 'jquery-rails'
# pagination
gem 'kaminari'
# views
gem 'jquery-rails'
gem 'haml'
gem 'haml-rails'
# authentication
gem 'devise'
gem 'oa-oauth'
gem 'oa-openid'
# markdown
gem 'rdiscount'
# mongo
gem 'mongoid'
gem 'mongoid_taggable'
gem 'mongoid_rails_migrations'
gem 'mongo'
gem 'bson_ext'
# authorization
gem 'cancan'
# json
gem 'yajl-ruby', require: 'yajl'
# xero
gem 'xero-min', '>= 0.0.7'
# uploader
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'
# jobs
gem 'resque'
# 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
group :development, :test do
gem 'rails-footnotes', '>= 3.7.5'
gem 'rspec-rails'
# factory (required for scaffold)
gem 'fabrication'
gem 'ruby-debug19', platforms: :mri_19
# js
gem 'jasmine'
end
group :test do
gem 'rspec_tag_matchers'
gem 'mongoid-rspec'
gem 'wrong'
# cucumber
gem 'cucumber-rails'
gem 'database_cleaner'
# spork, drb server
gem 'spork', '>= 0.9.0.rc9'
# capybara
gem 'capybara'
gem 'launchy'
# guard is a dsl, alternate to watchr, which is an alternate to autotest :)
# there is bonus growl feature
gem 'guard-rspec'
gem 'guard-coffeescript'
gem 'growl'
# double
gem 'mocha'
# coverage
gem 'simplecov', platforms: :mri_19, require: false
end