-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
95 lines (55 loc) · 1.84 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
89
90
91
92
93
94
95
source "https://rubygems.org"
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "4.0.0"
gem "sqlite3"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "sass-rails", "~> 4.0.0.rc1"
gem "coffee-rails", "~> 4.0.0.rc1"
gem "uglifier", ">= 1.0.3"
end
group :development, :test do
gem "factory_girl", require: "factory_girl"
end
group :test do
gem "rspec-rails", git: "git@github.com:rspec/rspec-rails.git"
gem "database_cleaner"
end
gem "haml-rails"
gem "pg"
gem "dalli"
gem "jquery-rails"
gem "jquery-ui-rails"
gem "jquery-turbolinks"
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem "turbolinks"
gem "figaro"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 1.0.1"
gem "devise", "~> 3.0.0.rc"
gem "breadcrumbs_on_rails", git: "git@github.com:nzaillian/breadcrumbs_on_rails.git"
gem "tabs_on_rails"
gem "handles_sortable_columns"
gem "sprockets-rails"
gem "cancan"
gem "therubyracer"
gem "font-awesome-rails"
gem "better_errors"
gem "exception_notification", git: "git@github.com:nzaillian/exception_notification.git", require: "exception_notifier"
gem "formtastic", git: "https://github.com/justinfrench/formtastic.git"
gem "formtastic-bootstrap", path: "./vendor/gems/formtastic-bootstrap"
gem "bootstrap-sass"
gem "codemirror-rails"
gem "redcarpet"
gem "mailman"
gem "kaminari"
gem "carrierwave"
gem "rmagick"
gem "uuidtools", require: "uuidtools"
gem "mail_view"
gem "nokogiri"
gem "friendly_id", git: "https://github.com/FriendlyId/friendly_id.git"
gem "delayed_job", git: "git@github.com:collectiveidea/delayed_job.git"
gem "daemons"
gem "delayed_job_active_record", git: "git@github.com:collectiveidea/delayed_job_active_record.git"