-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
71 lines (57 loc) · 2.55 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
source 'http://rubygems.org'
gem 'rails', '3.2.8'
#gem 'rake', '0.8.7'
#gem 'will_paginate', '~> 3.0.0'
#gem 'sqlite3'
gem 'mysql'
gem 'yard'
group :development do
# set to 0.43 due to problem with .45 see https://github.com/rails/rails/pull/1671
gem 'quiet_assets'
end
gem "maruku"
#temp workaround for hash_secret issue see https://groups.google.com/forum/#!topic/hobousers/dS4VT_lyVIY
gem "paperclip", "~> 2.7"
# gem 'paperclip', :git => "git://github.com/jeanmartin/paperclip.git", :branch => "master"
#required by paperclip
gem "cocaine"
gem "hobo_support", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_fields", :git => "git://github.com/Hobo/hobo.git"
gem "dryml", :git => "git://github.com/Hobo/hobo.git"
gem "hobo", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_rapid", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_clean", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_clean_sidemenu", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_clean_admin", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_jquery", :git => "git://github.com/Hobo/hobo.git"
gem "hobo_jquery_ui", :git => "git://github.com/Hobo/hobo.git"
gem "doc", :git => "git://github.com/Hobo/hobo.git"
gem "jquery-rails"
gem "jquery-ui-themes"
group :development do
gem "vlad", :require => false
gem "vlad-git", :git => "git://github.com/bryanlarsen/vlad-git.git", :require => false
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'execjs'
gem 'therubyracer', '~> 0.10.2'
end
# Hobo plugins included solely for documentation
gem "hobo_bootstrap", :git => "git://github.com/Hobo/hobo_bootstrap.git"
gem "hobo_bootstrap_ui", :git => "git://github.com/Hobo/hobo_bootstrap_ui.git"
gem "hobo_tree_table", :git => "git://github.com/Hobo/hobo_tree_table.git"
gem "select_one_or_new_dialog", :git => "git://github.com/Hobo/select_one_or_new_dialog.git"
gem "hobo_simple_color", :git => "git://github.com/Hobo/hobo_simple_color.git"
gem "hobo_tokeninput", :git => "git://github.com/Hobo/hobo_tokeninput.git"
gem "hobo_data_tables", :git => "git://github.com/Hobo/hobo_data_tables.git"
gem "hobo_mapstraction", :git => "git://github.com/Hobo/hobo_mapstraction.git"
gem "hobo_paperclip", :git => "git://github.com/Hobo/hobo_paperclip.git"
gem "hobo_omniauth", :git => "git://github.com/Hobo/hobo_omniauth.git"
gem "awesome_print"
gem "recaptcha", :require => "recaptcha/rails"
gem "will_paginate", :git => "git://github.com/Hobo/will_paginate.git"