-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
89 lines (77 loc) · 1.65 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
source 'http://rubygems.org'
gem 'rails', '3.2.3'
# gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'gravatar_image_tag', '1.0.0'
gem "ckeditor", "3.7.0.rc2"
gem "mini_magick"
gem 'carrierwave'
gem 'carrierwave-meta'
gem 'mysql2'
gem 'coderay'
gem 'cancan'
gem 'faye'
gem 'roadie' # send HTML mail
gem 'acts_as_commentable'
gem 'jcrop-rails'
gem 'rmagick'
gem 'twitter-bootstrap-rails'
#gem 'compass_twitter_bootstrap'
gem 'best_in_place'
gem "simple_form"
gem 'acts-as-taggable-on'
gem 'haml'
gem 'haml-rails'
gem 'cancan'
gem "plupload-rails"
gem "rufus-scheduler"
gem 'event-calendar', :require => 'event_calendar'
gem 'rdiscount'
gem 'fullcalendar-rails'
gem 'acts-as-messageable'
gem 'acts_as_audited'
gem 'mailboxer'
gem 'ruport'
group :development, :test do
gem 'rspec-rails'
gem 'annotate'
gem 'faker'
gem 'capybara'
gem 'launchy'
gem 'rspec'
#gem 'webrat'
gem 'spork'
gem 'autotest'
gem 'autotest-rails-pure'
if RUBY_PLATFORM.downcase.include?("darwin") # I'm on Mac
gem 'autotest-fsevent'
gem 'autotest-growl'
end
gem 'factory_girl_rails', '1.0'
gem 'capybara'
gem 'database_cleaner'
gem 'capybara-webkit'
gem 'launchy'
gem 'simplecov-rcov'
end
gem 'will_paginate'
gem 'json'
gem 'jquery-rails'
gem 'devise'
gem 'therubyracer'
gem 'execjs'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'compass-rails'
gem 'uglifier'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'