forked from manno/frab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (50 loc) · 1.22 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
source 'http://rubygems.org'
ruby "1.9.3"
gem 'rails', '~> 3.2.5'
gem 'sqlite3'
gem 'pg'
gem 'mysql2'
gem 'bcrypt-ruby'
gem 'cancan'
gem 'haml'
gem 'acts_as_commentable'
gem 'will_paginate'
gem 'paperclip', '< 3.0'
gem 'gravatar-ultimate'
gem 'formtastic', '~> 2.1.0'
gem 'jquery-rails', '~> 1.0.19'
gem 'acts_as_indexed'
gem 'cocoon'
gem 'paper_trail', '2.3.3'
gem 'localized_language_select', '0.2.0', :git => "git://github.com/oneiros/localized_language_select.git"
gem 'ransack'
gem 'transitions', :require => ["transitions", "active_record/transitions"]
gem 'json'
gem 'therubyracer', '~> 0.9.2'
gem 'barista'
gem 'ri_cal'
gem 'nokogiri'
gem 'settingslogic'
gem 'twitter-bootstrap-rails', '~> 1.4.1'
gem 'formtastic-bootstrap', :git => "git://github.com/katastrophie/formtastic-bootstrap.git"
gem 'prawn'
gem 'prawn_rails'
group :development, :test do
gem 'ruby-debug', :platforms => :mri_18
gem 'ruby-debug19', :platforms => :mri_19
end
group :test do
gem 'minitest'
gem 'factory_girl_rails', '~> 1.2.0'
gem 'turn', :require => false
end
group :development do
gem 'hpricot'
gem 'yaml_db'
gem 'shotgun'
end
group :assets do
gem 'sass-rails', " ~> 3.2.0"
gem 'coffee-rails', " ~> 3.2.0"
gem 'uglifier'
end