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

/Gemfile

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