This repository was archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
105 lines (88 loc) · 1.82 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
96
97
98
99
100
101
102
103
104
105
source 'https://rubygems.org'
gem 'rails', '4.1.4'
# gem 'rails', github: 'rails/rails', branch: '4-1-stable'
## Platform Specific
platform :jruby do
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl'
gem 'trinidad', require: false
gem 'therubyrhino', group: :assets
end
platform :rbx do
gem 'pg'
gem 'zeus'
gem 'spring'
gem 'rubysl', '~> 2.0'
end
platform :ruby do
gem 'pg'
gem 'zeus'
gem 'spring'
end
## Rails
gem 'sass-rails', '~> 4.0.0.rc2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'tipsy-rails'
gem 'jbuilder', '~> 1.2'
## Assets
gem 'haml'
gem 'haml-rails'
gem 'bootstrap-sass'
gem 'kaminari'
gem 'kaminari-bootstrap'
gem 'simple_form', github: 'plataformatec/simple_form', branch: 'bootstrap-3'
gem 'opal'
gem 'opal-rails'
gem 'opal-jquery'
## Utility
gem 'friendly_id'
gem 'draper'
gem 'turnout'
gem 'high_voltage'
gem 'puma'
gem 'attr_extras'
## Security
gem 'bcrypt'
gem 'devise'
gem 'devise_security_extension'
gem 'easy_captcha'
gem 'pundit'
gem 'paranoia', github: 'liothen/paranoia', branch: 'rails4'
gem 'lumberjack'
gem 'rails_config'
## Forum
## API
gem 'msgpack'
## Content
gem 'kramdown'
gem 'coderay'
gem 'unread'
gem 'public_activity'
gem 'carrierwave'
gem 'acts-as-taggable-on'
gem 'mailboxer'
## Imageing
gem 'mini_magick'
gem 'gravtastic'
## Developer
#gem 'capistrano', '~> 3.0.1', group: :development
# gem 'capistrano-rails', '~> 3.0.1', group: :development
gem 'quiet_assets', group: :development
gem 'better_errors', group: :development
gem 'wirble'
gem 'map_by_method'
gem 'what_methods'
gem 'bullet'
gem 'mina'
## Testing
group :test do
gem 'turn', :require => false
gem 'cucumber-rails', :require => false
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'fabrication'
end
## Documentation
gem 'sdoc', group: :doc, require: false