PageRenderTime 45ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/Gemfile

https://gitlab.com/jk/gitlab-ce
Gemfile | 280 lines | 156 code | 68 blank | 56 comment | 0 complexity | 7cf2513edd323d9664f76efb92bea5b0 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.0"
  9. # Make links from text
  10. gem 'rails_autolink', '~> 1.1'
  11. # Default values for AR models
  12. gem "default_value_for", "~> 3.0.0"
  13. # Supported DBs
  14. gem "mysql2", group: :mysql
  15. gem "pg", group: :postgres
  16. # Auth
  17. gem "devise", '3.2.4'
  18. gem "devise-async", '0.9.0'
  19. gem 'omniauth', "~> 1.1.3"
  20. gem 'omniauth-google-oauth2'
  21. gem 'omniauth-twitter'
  22. gem 'omniauth-github'
  23. gem 'omniauth-shibboleth'
  24. gem 'omniauth-kerberos', group: :kerberos
  25. gem 'omniauth-gitlab'
  26. gem 'omniauth-bitbucket'
  27. gem 'doorkeeper', '2.1.3'
  28. gem "rack-oauth2", "~> 1.0.5"
  29. # Two-factor authentication
  30. gem 'devise-two-factor'
  31. gem 'rqrcode-rails3'
  32. gem 'attr_encrypted', '1.3.4'
  33. # Browser detection
  34. gem "browser"
  35. # Extracting information from a git repository
  36. # Provide access to Gitlab::Git library
  37. gem "gitlab_git", '~> 7.1.11'
  38. # Ruby/Rack Git Smart-HTTP Server Handler
  39. gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
  40. # LDAP Auth
  41. gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
  42. # Git Wiki
  43. gem 'gollum-lib', '~> 4.0.2'
  44. # Language detection
  45. gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
  46. # API
  47. gem "grape", "~> 0.6.1"
  48. gem "grape-entity", "~> 0.4.2"
  49. gem 'rack-cors', require: 'rack/cors'
  50. # Format dates and times
  51. # based on human-friendly examples
  52. gem "stamp"
  53. # Enumeration fields
  54. gem 'enumerize'
  55. # Pagination
  56. gem "kaminari", "~> 0.15.1"
  57. # HAML
  58. gem "haml-rails"
  59. # Files attachments
  60. gem "carrierwave"
  61. # Drag and Drop UI
  62. gem 'dropzonejs-rails'
  63. # for aws storage
  64. gem "fog", "~> 1.14"
  65. gem "unf"
  66. # Authorization
  67. gem "six"
  68. # Seed data
  69. gem "seed-fu"
  70. # Markdown and HTML processing
  71. gem 'html-pipeline', '~> 1.11.0'
  72. gem 'task_list', '~> 1.0.0', require: 'task_list/railtie'
  73. gem 'github-markup'
  74. gem 'redcarpet', '~> 3.2.3'
  75. gem 'RedCloth'
  76. gem 'rdoc', '~>3.6'
  77. gem 'org-ruby', '= 0.9.12'
  78. gem 'creole', '~>0.3.6'
  79. gem 'wikicloth', '=0.8.1'
  80. gem 'asciidoctor', '= 0.1.4'
  81. # Diffs
  82. gem 'diffy', '~> 3.0.3'
  83. # Application server
  84. group :unicorn do
  85. gem "unicorn", '~> 4.6.3'
  86. gem 'unicorn-worker-killer'
  87. end
  88. # State machine
  89. gem "state_machine"
  90. # Issue tags
  91. gem 'acts-as-taggable-on', '~> 3.4'
  92. # Background jobs
  93. gem 'slim'
  94. gem 'sinatra', require: nil
  95. gem 'sidekiq', '~> 3.3'
  96. gem 'sidetiq', '0.6.3'
  97. # HTTP requests
  98. gem "httparty"
  99. # Colored output to console
  100. gem "colored"
  101. # GitLab settings
  102. gem 'settingslogic'
  103. # Misc
  104. gem "foreman"
  105. gem 'version_sorter'
  106. # Cache
  107. gem "redis-rails"
  108. # Campfire integration
  109. gem 'tinder', '~> 1.9.2'
  110. # HipChat integration
  111. gem 'hipchat', '~> 1.5.0'
  112. # Flowdock integration
  113. gem "gitlab-flowdock-git-hook", "~> 0.4.2"
  114. # Gemnasium integration
  115. gem "gemnasium-gitlab-service", "~> 0.2"
  116. # Slack integration
  117. gem "slack-notifier", "~> 1.0.0"
  118. # Asana integration
  119. gem 'asana', '~> 0.0.6'
  120. # d3
  121. gem 'd3_rails', '~> 3.5.5'
  122. #cal-heatmap
  123. gem "cal-heatmap-rails", "~> 0.0.1"
  124. # underscore-rails
  125. gem "underscore-rails", "~> 1.4.4"
  126. # Sanitize user input
  127. gem "sanitize", '~> 2.0'
  128. # Protect against bruteforcing
  129. gem "rack-attack"
  130. # Ace editor
  131. gem 'ace-rails-ap'
  132. # Keyboard shortcuts
  133. gem 'mousetrap-rails'
  134. # Detect and convert string character encoding
  135. gem 'charlock_holmes'
  136. gem "sass-rails", '~> 4.0.2'
  137. gem "coffee-rails"
  138. gem "uglifier"
  139. gem 'turbolinks'
  140. gem 'jquery-turbolinks'
  141. gem 'select2-rails'
  142. gem 'jquery-atwho-rails', '~> 1.0.0'
  143. gem "jquery-rails"
  144. gem "jquery-ui-rails"
  145. gem "jquery-scrollto-rails"
  146. gem "raphael-rails", "~> 2.1.2"
  147. gem 'bootstrap-sass', '~> 3.0'
  148. gem "font-awesome-rails", '~> 4.2'
  149. gem "gitlab_emoji", "~> 0.1"
  150. gem "gon", '~> 5.0.0'
  151. gem 'nprogress-rails'
  152. gem 'request_store'
  153. gem "virtus"
  154. gem 'addressable'
  155. group :development do
  156. gem 'brakeman', require: false
  157. gem "annotate", "~> 2.6.0.beta2"
  158. gem "letter_opener"
  159. gem 'quiet_assets', '~> 1.0.1'
  160. gem 'rack-mini-profiler', require: false
  161. gem 'rerun', '~> 0.10.0'
  162. # Better errors handler
  163. gem 'better_errors'
  164. gem 'binding_of_caller'
  165. # Docs generator
  166. gem "sdoc"
  167. # thin instead webrick
  168. gem 'thin'
  169. end
  170. group :development, :test do
  171. gem 'coveralls', require: false
  172. gem 'rubocop', '0.28.0', require: false
  173. gem 'spinach-rails'
  174. gem "rspec-rails", '2.99'
  175. gem 'capybara', '~> 2.2.1'
  176. gem 'capybara-screenshot', '~> 1.0.0'
  177. gem "pry-rails"
  178. gem "awesome_print"
  179. gem "database_cleaner"
  180. gem 'factory_girl_rails'
  181. # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  182. gem 'minitest', '~> 5.3.0'
  183. # Generate Fake data
  184. gem "ffaker"
  185. # Guard
  186. gem 'guard-rspec'
  187. gem 'guard-spinach'
  188. # Notification
  189. gem 'rb-fsevent', require: darwin_only('rb-fsevent')
  190. gem 'growl', require: darwin_only('growl')
  191. gem 'rb-inotify', require: linux_only('rb-inotify')
  192. # PhantomJS driver for Capybara
  193. gem 'poltergeist', '~> 1.5.1'
  194. gem 'jasmine-rails'
  195. gem "spring", '~> 1.3.1'
  196. gem "spring-commands-rspec", '1.0.4'
  197. gem "spring-commands-spinach", '1.0.0'
  198. gem "byebug"
  199. end
  200. group :test do
  201. gem "simplecov", require: false
  202. gem "shoulda-matchers", "~> 2.7.0"
  203. gem 'email_spec'
  204. gem "webmock"
  205. gem 'test_after_commit'
  206. end
  207. group :production do
  208. gem "gitlab_meta", '7.0'
  209. end
  210. gem "newrelic_rpm"
  211. gem 'octokit', '3.7.0'
  212. gem "rugments"