forked from fatfreecrm/fat_free_crm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (41 loc) · 1.78 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
source 'http://rubygems.org'
gem 'rails', '3.1.3'
gem 'rake', '0.8.7'
# Uncomment the database that you have configured in config/database.yml
# ----------------------------------------------------------------------
# gem "mysql2", "0.2.7"
# gem "sqlite3"
gem "pg", ">= 0.9.0"
gem 'authlogic', '~> 3.0.3'
gem 'acts_as_commentable', '>= 3.0.1'
gem 'acts-as-taggable-on', '>= 2.0.6'
gem 'haml', '>= 3.1.1'
gem 'sass', '>= 3.1.1'
gem 'paperclip', '~> 2.3.6'
gem 'will_paginate', '>= 3.0.pre2'
gem 'acts_as_list', '~> 0.1.4'
gem 'simple_form', '~> 1.5.2'
gem 'prototype-rails', '>= 3.1.0'
gem 'ffaker', '>= 1.5.0' # For demo data
group :development, :test do
gem 'ruby-debug', :platform => :mri_18
gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug'
gem 'annotate', '>= 2.4.0'
gem 'awesome_print', '>= 0.3.1'
gem 'test-unit', '1.2.3', :platform => :mri_19
gem 'rspec-rails', '>= 2.5.0'
gem 'ffaker', '>= 1.5.0'
gem 'factory_girl', '>= 1.3.3'
end
group :test do
gem 'factory_girl_rails', '~> 1.0.1'
end
# Rails3 plugins that we use and their source repositories:
#---------------------------------------------------------------------
# gravatar_image_tag, git://github.com/mdeering/gravatar_image_tag.git
# calendar_date_select, git://github.com/timcharper/calendar_date_select.git
# country_select, git://github.com/rails/country_select.git
# dynamic_form, git://github.com/rails/dynamic_form.git
# is_paranoid, git://github.com/theshortcut/is_paranoid.git
# prototype_legacy_helper, git://github.com/rails/prototype_legacy_helper.git
# responds_to_parent, git://github.com/markcatley/responds_to_parent.git