PageRenderTime 49ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Gemfile

https://gitlab.com/Venator/gitlab-ce
Gemfile | 274 lines | 150 code | 65 blank | 59 comment | 0 complexity | 22c4c97aaee01e5f791e4845d92748cb MD5 | raw file
Possible License(s): CC-BY-3.0
  1. source "https://rubygems.org"
  2. gem 'rails', '4.1.11'
  3. # Specify a sprockets version due to security issue
  4. # See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY
  5. gem 'sprockets', '~> 2.12.3'
  6. # Default values for AR models
  7. gem "default_value_for", "~> 3.0.0"
  8. # Supported DBs
  9. gem "mysql2", group: :mysql
  10. gem "pg", group: :postgres
  11. # Authentication libraries
  12. gem "devise", '3.2.4'
  13. gem "devise-async", '0.9.0'
  14. gem 'omniauth', "~> 1.2.2"
  15. gem 'omniauth-google-oauth2'
  16. gem 'omniauth-twitter'
  17. gem 'omniauth-github'
  18. gem 'omniauth-shibboleth'
  19. gem 'omniauth-kerberos', group: :kerberos
  20. gem 'omniauth-gitlab'
  21. gem 'omniauth-bitbucket'
  22. gem 'omniauth-saml', '~> 1.4.0'
  23. gem 'omniauth_crowd'
  24. gem 'doorkeeper', '2.1.3'
  25. gem "rack-oauth2", "~> 1.0.5"
  26. # Two-factor authentication
  27. gem 'devise-two-factor'
  28. gem 'rqrcode-rails3'
  29. gem 'attr_encrypted', '1.3.4'
  30. # Browser detection
  31. gem "browser", '~> 1.0.0'
  32. # Extracting information from a git repository
  33. # Provide access to Gitlab::Git library
  34. gem "gitlab_git", '~> 7.2.15'
  35. # LDAP Auth
  36. # GitLab fork with several improvements to original library. For full list of changes
  37. # see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
  38. gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
  39. # Git Wiki
  40. gem 'gollum-lib', '~> 4.0.2'
  41. # Language detection
  42. # GitLab fork of linguist does not require pygments/python dependency.
  43. # New version of original gem also dropped pygments support but it has strict
  44. # dependency to unstable rugged version. We have internal issue for replacing
  45. # fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052.
  46. gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
  47. # API
  48. gem "grape", "~> 0.6.1"
  49. gem "grape-entity", "~> 0.4.2"
  50. gem 'rack-cors', require: 'rack/cors'
  51. # Format dates and times
  52. # based on human-friendly examples
  53. gem "stamp"
  54. # Enumeration fields
  55. gem 'enumerize'
  56. # Pagination
  57. gem "kaminari", "~> 0.15.1"
  58. # HAML
  59. gem "haml-rails"
  60. # Files attachments
  61. gem "carrierwave"
  62. # Drag and Drop UI
  63. gem 'dropzonejs-rails'
  64. # for aws storage
  65. gem "fog", "~> 1.25.0"
  66. gem "unf"
  67. # Authorization
  68. gem "six"
  69. # Seed data
  70. gem "seed-fu"
  71. # Markdown and HTML processing
  72. gem 'html-pipeline', '~> 1.11.0'
  73. gem 'task_list', '1.0.2', require: 'task_list/railtie'
  74. gem 'github-markup'
  75. gem 'redcarpet', '~> 3.3.2'
  76. gem 'RedCloth'
  77. gem 'rdoc', '~>3.6'
  78. gem 'org-ruby', '= 0.9.12'
  79. gem 'creole', '~>0.3.6'
  80. gem 'wikicloth', '=0.8.1'
  81. gem 'asciidoctor', '~> 1.5.2'
  82. # Diffs
  83. gem 'diffy', '~> 3.0.3'
  84. # Application server
  85. group :unicorn do
  86. gem "unicorn", '~> 4.6.3'
  87. gem 'unicorn-worker-killer'
  88. end
  89. # State machine
  90. gem "state_machine"
  91. # Issue tags
  92. gem 'acts-as-taggable-on', '~> 3.4'
  93. # Background jobs
  94. gem 'slim'
  95. gem 'sinatra', require: nil
  96. gem 'sidekiq', '~> 3.3'
  97. gem 'sidetiq', '0.6.3'
  98. # HTTP requests
  99. gem "httparty"
  100. # Colored output to console
  101. gem "colored"
  102. # GitLab settings
  103. gem 'settingslogic'
  104. # Misc
  105. gem "foreman"
  106. gem 'version_sorter'
  107. # Cache
  108. gem "redis-rails"
  109. # Campfire integration
  110. gem 'tinder', '~> 1.9.2'
  111. # HipChat integration
  112. gem 'hipchat', '~> 1.5.0'
  113. # Flowdock integration
  114. gem "gitlab-flowdock-git-hook", "~> 1.0.1"
  115. # Gemnasium integration
  116. gem "gemnasium-gitlab-service", "~> 0.2"
  117. # Slack integration
  118. gem "slack-notifier", "~> 1.0.0"
  119. # Asana integration
  120. gem 'asana', '~> 0.0.6'
  121. # d3
  122. gem 'd3_rails', '~> 3.5.5'
  123. #cal-heatmap
  124. gem "cal-heatmap-rails", "~> 0.0.1"
  125. # underscore-rails
  126. gem "underscore-rails", "~> 1.4.4"
  127. # Sanitize user input
  128. gem "sanitize", '~> 2.0'
  129. # Protect against bruteforcing
  130. gem "rack-attack", '~> 4.3.0'
  131. # Ace editor
  132. gem 'ace-rails-ap'
  133. # Keyboard shortcuts
  134. gem 'mousetrap-rails'
  135. # Detect and convert string character encoding
  136. gem 'charlock_holmes'
  137. gem "sass-rails", '~> 4.0.5'
  138. gem "coffee-rails"
  139. gem "uglifier"
  140. gem 'turbolinks', '~> 2.5.0'
  141. gem 'jquery-turbolinks'
  142. gem 'addressable'
  143. gem 'bootstrap-sass', '~> 3.0'
  144. gem 'font-awesome-rails', '~> 4.2'
  145. gem 'gitlab_emoji', '~> 0.1'
  146. gem 'gon', '~> 5.0.0'
  147. gem 'jquery-atwho-rails', '~> 1.0.0'
  148. gem 'jquery-rails', '3.1.3'
  149. gem 'jquery-scrollto-rails'
  150. gem 'jquery-ui-rails'
  151. gem 'nprogress-rails'
  152. gem 'raphael-rails', '~> 2.1.2'
  153. gem 'request_store'
  154. gem 'select2-rails', '~> 3.5.9'
  155. gem 'virtus'
  156. group :development do
  157. gem 'brakeman', require: false
  158. gem "annotate", "~> 2.6.0.beta2"
  159. gem "letter_opener"
  160. gem 'quiet_assets', '~> 1.0.1'
  161. gem 'rack-mini-profiler', require: false
  162. gem 'rerun', '~> 0.10.0'
  163. # Better errors handler
  164. gem 'better_errors'
  165. gem 'binding_of_caller'
  166. # Docs generator
  167. gem "sdoc"
  168. # thin instead webrick
  169. gem 'thin'
  170. end
  171. group :development, :test do
  172. gem 'awesome_print'
  173. gem 'byebug', platform: :mri
  174. gem 'fuubar', '~> 2.0.0'
  175. gem 'pry-rails'
  176. gem 'coveralls', '~> 0.8.2', require: false
  177. gem 'database_cleaner', '~> 1.4.0'
  178. gem 'factory_girl_rails'
  179. gem 'rspec-rails', '~> 3.3.0'
  180. gem 'rubocop', '0.28.0', require: false
  181. gem 'spinach-rails'
  182. # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  183. gem 'minitest', '~> 5.3.0'
  184. # Generate Fake data
  185. gem 'ffaker', '~> 2.0.0'
  186. gem 'capybara', '~> 2.4.0'
  187. gem 'capybara-screenshot', '~> 1.0.0'
  188. gem 'poltergeist', '~> 1.6.0'
  189. gem 'teaspoon', '~> 1.0.0'
  190. gem 'teaspoon-jasmine'
  191. gem 'spring', '~> 1.3.1'
  192. gem 'spring-commands-rspec', '~> 1.0.0'
  193. gem 'spring-commands-spinach', '~> 1.0.0'
  194. gem 'spring-commands-teaspoon', '~> 0.0.2'
  195. end
  196. group :test do
  197. gem 'simplecov', require: false
  198. gem 'shoulda-matchers', '~> 2.8.0', require: false
  199. gem 'email_spec', '~> 1.6.0'
  200. gem 'webmock', '~> 1.21.0'
  201. gem 'test_after_commit'
  202. end
  203. group :production do
  204. gem "gitlab_meta", '7.0'
  205. end
  206. gem "newrelic_rpm"
  207. gem 'octokit', '3.7.0'
  208. gem "mail_room", "~> 0.4.2"
  209. gem 'email_reply_parser'