-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
55 lines (39 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
source 'http://rubygems.org'
gem 'rails', '3.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql'
# Deploy with Capistrano
gem 'capistrano'
# Add gems for authentication/authorization
gem "devise", '1.1.3'
gem "acl9"
# Date selecter UI
gem 'calendar_date_select', :git => 'http://github.com/paneq/calendar_date_select.git', :branch => 'rails3test'
# For mail_style (css in emails)
gem 'nokogiri', '>=1.4.1'
gem 'css_parser', '>=1.0.0'
gem 'mail_style', '>= 0.1.6'
# For google calendar
gem 'gcal4ruby'
# For Rooster
gem 'daemons', '1.1.0'
gem 'eventmachine', '>=0.12.10'
gem 'chronic', '>=0.2.3', :require=> 'chronic'
# For encrypting model attributes
gem 'encryptor', '~>1.1.1', :require=> 'encryptor'
gem 'attr_encrypted', '>=1.1.2', :require=> 'attr_encrypted'
# For background tasks
gem 'rufus-scheduler', :require=> "rufus/scheduler"
# For Markdown text processing
gem 'rdiscount'
gem 'formatize'
gem 'acts_as_markdown'
# For Hoptoadapp error monitoring
gem 'hoptoad_notifier', '>=2.2.0'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'mongrel'
end