forked from manno/frab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
65 lines (58 loc) · 1.64 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
source 'http://rubygems.org'
gem 'rails', '~> 3.2.16'
gem 'mysql2'
gem 'pg'
gem 'sqlite3'
gem 'acts_as_commentable'
gem 'acts_as_indexed'
gem 'barista'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'cancan'
gem 'cocoon'
gem 'formtastic', '~> 2.1.0'
gem 'formtastic-bootstrap', :git => "git://github.com/frab/formtastic-bootstrap.git"
gem 'gravatar-ultimate'
gem 'haml'
gem 'jquery-rails', '~> 1.0.19'
gem 'json'
gem 'jbuilder'
gem 'localized_language_select', '0.2.0', :git => "git://github.com/frab/localized_language_select.git"
gem 'nokogiri'
gem 'paperclip', '< 3.0'
gem 'paper_trail', '2.3.3'
gem 'prawn', '< 1.0'
gem 'prawn_rails'
gem 'ransack'
gem 'ri_cal'
gem 'sucker_punch', '~> 1.0'
gem 'settingslogic'
gem 'transitions', :require => ["transitions", "active_record/transitions"]
gem 'twitter-bootstrap-rails', :git => "git://github.com/frab/twitter-bootstrap-rails.git", :ref => "5e62b21c8f258010af7f5bc858b89a24f16936a9"
gem 'will_paginate'
gem 'bluecloth', '>= 2.0.0'
group :development, :test do
gem 'bullet'
gem 'ruby-debug', :platforms => :mri_18
gem 'ruby-debug19', :platforms => :mri_19
end
group :test do
gem 'factory_girl_rails', '~> 4.0'
gem 'minitest'
gem 'turn', :require => false
end
group :development do
gem 'quiet_assets' # silence asset requests
gem 'shotgun'
gem 'yaml_db'
gem 'pry-rails'
gem 'redcarpet' # documentation
gem 'github-markdown' # documentation
gem 'yard' # documentation
#gem 'rails-erd' # graph
#gem 'ruby-graphviz', :require => 'graphviz' # Optional: only required for graphing
end
group :assets do
gem 'coffee-rails', " ~> 3.2.0"
gem 'sass-rails', " ~> 3.2.0"
gem 'uglifier'
end