PageRenderTime 48ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 1ms

/Gemfile

https://gitlab.com/jtthackery/gitlab-ce
Gemfile | 347 lines | 196 code | 84 blank | 67 comment | 0 complexity | 70a21cc897dd2f927a8a2e3b05327389 MD5 | raw file
  1. source 'https://rubygems.org'
  2. gem 'rails', '4.2.7.1'
  3. gem 'rails-deprecated_sanitizer', '~> 1.0.3'
  4. # Responders respond_to and respond_with
  5. gem 'responders', '~> 2.0'
  6. gem 'sprockets', '~> 3.7.0'
  7. gem 'sprockets-es6', '~> 0.9.2'
  8. # Default values for AR models
  9. gem 'default_value_for', '~> 3.0.0'
  10. # Supported DBs
  11. gem 'mysql2', '~> 0.3.16', group: :mysql
  12. gem 'pg', '~> 0.18.2', group: :postgres
  13. # Authentication libraries
  14. gem 'devise', '~> 4.2'
  15. gem 'doorkeeper', '~> 4.2.0'
  16. gem 'omniauth', '~> 1.3.1'
  17. gem 'omniauth-auth0', '~> 1.4.1'
  18. gem 'omniauth-azure-oauth2', '~> 0.0.6'
  19. gem 'omniauth-bitbucket', '~> 0.0.2'
  20. gem 'omniauth-cas3', '~> 1.1.2'
  21. gem 'omniauth-facebook', '~> 4.0.0'
  22. gem 'omniauth-github', '~> 1.1.1'
  23. gem 'omniauth-gitlab', '~> 1.0.0'
  24. gem 'omniauth-google-oauth2', '~> 0.4.1'
  25. gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos
  26. gem 'omniauth-saml', '~> 1.6.0'
  27. gem 'omniauth-shibboleth', '~> 1.2.0'
  28. gem 'omniauth-twitter', '~> 1.2.0'
  29. gem 'omniauth_crowd', '~> 2.2.0'
  30. gem 'rack-oauth2', '~> 1.2.1'
  31. gem 'jwt'
  32. # Spam and anti-bot protection
  33. gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails'
  34. gem 'akismet', '~> 2.0'
  35. # Two-factor authentication
  36. gem 'devise-two-factor', '~> 3.0.0'
  37. gem 'rqrcode-rails3', '~> 0.1.7'
  38. gem 'attr_encrypted', '~> 3.0.0'
  39. gem 'u2f', '~> 0.2.1'
  40. # Browser detection
  41. gem 'browser', '~> 2.2'
  42. # Extracting information from a git repository
  43. # Provide access to Gitlab::Git library
  44. gem 'gitlab_git', '~> 10.6.7'
  45. # LDAP Auth
  46. # GitLab fork with several improvements to original library. For full list of changes
  47. # see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
  48. gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: 'omniauth-ldap'
  49. # Git Wiki
  50. # Required manually in config/initializers/gollum.rb to control load order
  51. gem 'gollum-lib', '~> 4.2', require: false
  52. gem 'gollum-rugged_adapter', '~> 0.4.2', require: false
  53. # Language detection
  54. gem 'github-linguist', '~> 4.7.0', require: 'linguist'
  55. # API
  56. gem 'grape', '~> 0.15.0'
  57. gem 'grape-entity', '~> 0.4.2'
  58. gem 'rack-cors', '~> 0.4.0', require: 'rack/cors'
  59. # Pagination
  60. gem 'kaminari', '~> 0.17.0'
  61. # HAML
  62. gem 'hamlit', '~> 2.6.1'
  63. # Files attachments
  64. gem 'carrierwave', '~> 0.10.0'
  65. # Drag and Drop UI
  66. gem 'dropzonejs-rails', '~> 0.7.1'
  67. # for backups
  68. gem 'fog-aws', '~> 0.9'
  69. gem 'fog-azure', '~> 0.0'
  70. gem 'fog-core', '~> 1.40'
  71. gem 'fog-local', '~> 0.3'
  72. gem 'fog-google', '~> 0.3'
  73. gem 'fog-openstack', '~> 0.1'
  74. gem 'fog-rackspace', '~> 0.1.1'
  75. # for aws storage
  76. gem 'unf', '~> 0.1.4'
  77. # Seed data
  78. gem 'seed-fu', '~> 2.3.5'
  79. # Markdown and HTML processing
  80. gem 'html-pipeline', '~> 1.11.0'
  81. gem 'task_list', '~> 1.0.2', require: 'task_list/railtie'
  82. gem 'github-markup', '~> 1.4'
  83. gem 'redcarpet', '~> 3.3.3'
  84. gem 'RedCloth', '~> 4.3.2'
  85. gem 'rdoc', '~>3.6'
  86. gem 'org-ruby', '~> 0.9.12'
  87. gem 'creole', '~> 0.5.0'
  88. gem 'wikicloth', '0.8.1'
  89. gem 'asciidoctor', '~> 1.5.2'
  90. gem 'rouge', '~> 2.0'
  91. # See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
  92. # and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
  93. gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
  94. # Diffs
  95. gem 'diffy', '~> 3.0.3'
  96. # Application server
  97. group :unicorn do
  98. gem 'unicorn', '~> 5.1.0'
  99. gem 'unicorn-worker-killer', '~> 0.4.4'
  100. end
  101. # State machine
  102. gem 'state_machines-activerecord', '~> 0.4.0'
  103. # Run events after state machine commits
  104. gem 'after_commit_queue', '~> 1.3.0'
  105. # Issue tags
  106. gem 'acts-as-taggable-on', '~> 3.4'
  107. # Background jobs
  108. gem 'sidekiq', '~> 4.2'
  109. gem 'sidekiq-cron', '~> 0.4.0'
  110. gem 'redis-namespace', '~> 1.5.2'
  111. # HTTP requests
  112. gem 'httparty', '~> 0.13.3'
  113. # Colored output to console
  114. gem 'rainbow', '~> 2.1.0'
  115. # GitLab settings
  116. gem 'settingslogic', '~> 2.0.9'
  117. # Misc
  118. gem 'version_sorter', '~> 2.1.0'
  119. # Cache
  120. gem 'redis-rails', '~> 4.0.0'
  121. # Redis
  122. gem 'redis', '~> 3.2'
  123. gem 'connection_pool', '~> 2.0'
  124. # HipChat integration
  125. gem 'hipchat', '~> 1.5.0'
  126. # Flowdock integration
  127. gem 'gitlab-flowdock-git-hook', '~> 1.0.1'
  128. # Gemnasium integration
  129. gem 'gemnasium-gitlab-service', '~> 0.2'
  130. # Slack integration
  131. gem 'slack-notifier', '~> 1.2.0'
  132. # Asana integration
  133. gem 'asana', '~> 0.4.0'
  134. # FogBugz integration
  135. gem 'ruby-fogbugz', '~> 0.2.1'
  136. # d3
  137. gem 'd3_rails', '~> 3.5.0'
  138. # underscore-rails
  139. gem 'underscore-rails', '~> 1.8.0'
  140. # Sanitize user input
  141. gem 'sanitize', '~> 2.0'
  142. gem 'babosa', '~> 1.0.2'
  143. # Sanitizes SVG input
  144. gem 'loofah', '~> 2.0.3'
  145. # Working with license
  146. gem 'licensee', '~> 8.0.0'
  147. # Protect against bruteforcing
  148. gem 'rack-attack', '~> 4.3.1'
  149. # Ace editor
  150. gem 'ace-rails-ap', '~> 4.1.0'
  151. # Keyboard shortcuts
  152. gem 'mousetrap-rails', '~> 1.4.6'
  153. # Detect and convert string character encoding
  154. gem 'charlock_holmes', '~> 0.7.3'
  155. # Faster JSON
  156. gem 'oj', '~> 2.17.4'
  157. # Parse time & duration
  158. gem 'chronic', '~> 0.10.2'
  159. gem 'chronic_duration', '~> 0.10.6'
  160. gem 'sass-rails', '~> 5.0.6'
  161. gem 'coffee-rails', '~> 4.1.0'
  162. gem 'uglifier', '~> 2.7.2'
  163. gem 'turbolinks', '~> 2.5.0'
  164. gem 'jquery-turbolinks', '~> 2.1.0'
  165. gem 'addressable', '~> 2.3.8'
  166. gem 'bootstrap-sass', '~> 3.3.0'
  167. gem 'font-awesome-rails', '~> 4.6.1'
  168. gem 'gemojione', '~> 3.0'
  169. gem 'gon', '~> 6.1.0'
  170. gem 'jquery-atwho-rails', '~> 1.3.2'
  171. gem 'jquery-rails', '~> 4.1.0'
  172. gem 'jquery-ui-rails', '~> 5.0.0'
  173. gem 'request_store', '~> 1.3.0'
  174. gem 'select2-rails', '~> 3.5.9'
  175. gem 'virtus', '~> 1.0.1'
  176. gem 'net-ssh', '~> 3.0.1'
  177. gem 'base32', '~> 0.3.0'
  178. # Sentry integration
  179. gem 'sentry-raven', '~> 1.1.0'
  180. gem 'premailer-rails', '~> 1.9.0'
  181. # Metrics
  182. group :metrics do
  183. gem 'allocations', '~> 1.0', require: false, platform: :mri
  184. gem 'method_source', '~> 0.8', require: false
  185. gem 'influxdb', '~> 0.2', require: false
  186. end
  187. group :development do
  188. gem 'foreman', '~> 0.78.0'
  189. gem 'brakeman', '~> 3.3.0', require: false
  190. gem 'letter_opener_web', '~> 1.3.0'
  191. gem 'rerun', '~> 0.11.0'
  192. gem 'bullet', '~> 5.2.0', require: false
  193. gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
  194. gem 'web-console', '~> 2.0'
  195. # Better errors handler
  196. gem 'better_errors', '~> 1.0.1'
  197. gem 'binding_of_caller', '~> 0.7.2'
  198. # Docs generator
  199. gem 'sdoc', '~> 0.3.20'
  200. # thin instead webrick
  201. gem 'thin', '~> 1.7.0'
  202. end
  203. group :development, :test do
  204. gem 'byebug', '~> 8.2.1', platform: :mri
  205. gem 'pry-rails', '~> 0.3.4'
  206. gem 'awesome_print', '~> 1.2.0', require: false
  207. gem 'fuubar', '~> 2.0.0'
  208. gem 'database_cleaner', '~> 1.5.0'
  209. gem 'factory_girl_rails', '~> 4.6.0'
  210. gem 'rspec-rails', '~> 3.5.0'
  211. gem 'rspec-retry', '~> 0.4.5'
  212. gem 'spinach-rails', '~> 0.2.1'
  213. gem 'spinach-rerun-reporter', '~> 0.0.2'
  214. # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  215. gem 'minitest', '~> 5.7.0'
  216. # Generate Fake data
  217. gem 'ffaker', '~> 2.0.0'
  218. gem 'capybara', '~> 2.6.2'
  219. gem 'capybara-screenshot', '~> 1.0.0'
  220. gem 'poltergeist', '~> 1.9.0'
  221. gem 'teaspoon', '~> 1.1.0'
  222. gem 'teaspoon-jasmine', '~> 2.2.0'
  223. gem 'spring', '~> 1.7.0'
  224. gem 'spring-commands-rspec', '~> 1.0.4'
  225. gem 'spring-commands-spinach', '~> 1.1.0'
  226. gem 'spring-commands-teaspoon', '~> 0.0.2'
  227. gem 'rubocop', '~> 0.42.0', require: false
  228. gem 'rubocop-rspec', '~> 1.5.0', require: false
  229. gem 'scss_lint', '~> 0.47.0', require: false
  230. gem 'haml_lint', '~> 0.18.2', require: false
  231. gem 'simplecov', '0.12.0', require: false
  232. gem 'flay', '~> 2.6.1', require: false
  233. gem 'bundler-audit', '~> 0.5.0', require: false
  234. gem 'benchmark-ips', '~> 2.3.0', require: false
  235. gem 'license_finder', '~> 2.1.0', require: false
  236. gem 'knapsack', '~> 1.11.0'
  237. end
  238. group :test do
  239. gem 'shoulda-matchers', '~> 2.8.0', require: false
  240. gem 'email_spec', '~> 1.6.0'
  241. gem 'json-schema', '~> 2.6.2'
  242. gem 'webmock', '~> 1.21.0'
  243. gem 'test_after_commit', '~> 0.4.2'
  244. gem 'sham_rack', '~> 1.3.6'
  245. gem 'timecop', '~> 0.8.0'
  246. end
  247. gem 'newrelic_rpm', '~> 3.16'
  248. gem 'octokit', '~> 4.3.0'
  249. gem 'mail_room', '~> 0.8'
  250. gem 'email_reply_parser', '~> 0.5.8'
  251. gem 'ruby-prof', '~> 0.16.2'
  252. ## CI
  253. gem 'activerecord-session_store', '~> 1.0.0'
  254. gem 'nested_form', '~> 0.3.2'
  255. # OAuth
  256. gem 'oauth2', '~> 1.2.0'
  257. # Soft deletion
  258. gem 'paranoia', '~> 2.0'
  259. # Health check
  260. gem 'health_check', '~> 2.1.0'
  261. # System information
  262. gem 'vmstat', '~> 2.2'
  263. gem 'sys-filesystem', '~> 1.1.6'