PageRenderTime 26ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/Gemfile

https://gitlab.com/gervasio/gitlab-ce
Gemfile | 223 lines | 120 code | 56 blank | 47 comment | 0 complexity | 542489b74ee33a1277d7f092b5fbe9f7 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.0.0"
  9. gem "protected_attributes"
  10. gem 'rails-observers'
  11. gem 'actionpack-page_caching'
  12. gem 'actionpack-action_caching'
  13. # Supported DBs
  14. gem "mysql2", group: :mysql
  15. gem "pg", group: :postgres
  16. # Auth
  17. gem "devise", '3.0.4'
  18. gem "devise-async", '0.8.0'
  19. gem 'omniauth', "~> 1.1.3"
  20. gem 'omniauth-google-oauth2'
  21. gem 'omniauth-twitter'
  22. gem 'omniauth-github'
  23. # Extracting information from a git repository
  24. # Provide access to Gitlab::Git library
  25. gem "gitlab_git", '~> 5.3.0'
  26. # Ruby/Rack Git Smart-HTTP Server Handler
  27. gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack'
  28. # LDAP Auth
  29. gem 'gitlab_omniauth-ldap', '1.0.4', require: "omniauth-ldap"
  30. # Git Wiki
  31. gem "gitlab-gollum-lib", "~> 1.1.0", require: 'gollum-lib'
  32. # Language detection
  33. gem "gitlab-linguist", "~> 3.0.0", require: "linguist"
  34. # API
  35. gem "grape", "~> 0.6.1"
  36. gem "grape-entity", "~> 0.3.0"
  37. gem 'rack-cors', require: 'rack/cors'
  38. # Email validation
  39. gem "email_validator", "~> 1.4.0", :require => 'email_validator/strict'
  40. # Format dates and times
  41. # based on human-friendly examples
  42. gem "stamp"
  43. # Enumeration fields
  44. gem 'enumerize'
  45. # Pagination
  46. gem "kaminari", "~> 0.15.1"
  47. # HAML
  48. gem "haml-rails"
  49. # Files attachments
  50. gem "carrierwave"
  51. # for aws storage
  52. gem "fog", "~> 1.3.1", group: :aws
  53. # Authorization
  54. gem "six"
  55. # Seed data
  56. gem "seed-fu"
  57. # Markdown to HTML
  58. gem "redcarpet", "~> 2.2.2"
  59. gem "github-markup", "~> 0.7.4", require: 'github/markup', git: 'https://github.com/gitlabhq/markup.git', ref: '61ade389c1e1c159359338f570d18464a44ddbc4'
  60. # Asciidoc to HTML
  61. gem "asciidoctor"
  62. # Application server
  63. group :unicorn do
  64. gem "unicorn", '~> 4.6.3'
  65. gem 'unicorn-worker-killer'
  66. end
  67. # State machine
  68. gem "state_machine"
  69. # Issue tags
  70. gem "acts-as-taggable-on"
  71. # Background jobs
  72. gem 'slim'
  73. gem 'sinatra', require: nil
  74. gem 'sidekiq'
  75. # HTTP requests
  76. gem "httparty"
  77. # Colored output to console
  78. gem "colored"
  79. # GitLab settings
  80. gem 'settingslogic'
  81. # Misc
  82. gem "foreman"
  83. # Cache
  84. gem "redis-rails"
  85. # Campfire integration
  86. gem 'tinder', '~> 1.9.2'
  87. # HipChat integration
  88. gem "hipchat", "~> 0.14.0"
  89. # Flowdock integration
  90. gem "gitlab-flowdock-git-hook", "~> 0.4.2"
  91. # d3
  92. gem "d3_rails", "~> 3.1.4"
  93. # underscore-rails
  94. gem "underscore-rails", "~> 1.4.4"
  95. # Sanitize user input
  96. gem "sanitize"
  97. # Protect against bruteforcing
  98. gem "rack-attack"
  99. # Ace editor
  100. gem 'ace-rails-ap'
  101. gem "sass-rails"
  102. gem "coffee-rails"
  103. gem "uglifier"
  104. gem "therubyracer"
  105. gem 'turbolinks'
  106. gem 'jquery-turbolinks'
  107. gem 'select2-rails'
  108. gem 'jquery-atwho-rails', "~> 0.3.3"
  109. gem "jquery-rails", "2.1.3"
  110. gem "jquery-ui-rails", "2.0.2"
  111. gem "modernizr", "2.6.2"
  112. gem "raphael-rails", "~> 2.1.2"
  113. gem 'bootstrap-sass', '~> 3.0'
  114. gem "font-awesome-rails", '~> 3.2'
  115. gem "gemoji", "~> 1.3.0"
  116. gem "gon", '~> 5.0.0'
  117. group :development do
  118. gem "annotate", "~> 2.6.0.beta2"
  119. gem "letter_opener"
  120. gem 'quiet_assets', '~> 1.0.1'
  121. gem 'rack-mini-profiler'
  122. # Better errors handler
  123. gem 'better_errors'
  124. gem 'binding_of_caller'
  125. gem 'rails_best_practices'
  126. # Docs generator
  127. gem "sdoc"
  128. # thin instead webrick
  129. gem 'thin'
  130. end
  131. group :development, :test do
  132. gem 'coveralls', require: false
  133. # gem 'rails-dev-tweaks'
  134. gem 'spinach-rails'
  135. gem "rspec-rails"
  136. gem "capybara"
  137. gem "pry"
  138. gem "awesome_print"
  139. gem "database_cleaner"
  140. gem "launchy"
  141. gem 'factory_girl_rails'
  142. # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  143. gem 'minitest', '~> 4.7.0'
  144. # Generate Fake data
  145. gem "ffaker"
  146. # Guard
  147. gem 'guard-rspec'
  148. gem 'guard-spinach'
  149. # Notification
  150. gem 'rb-fsevent', require: darwin_only('rb-fsevent')
  151. gem 'growl', require: darwin_only('growl')
  152. gem 'rb-inotify', require: linux_only('rb-inotify')
  153. # PhantomJS driver for Capybara
  154. gem 'poltergeist', '~> 1.4.1'
  155. gem 'spork', '~> 1.0rc'
  156. gem 'jasmine', '2.0.0.rc5'
  157. end
  158. group :test do
  159. gem "simplecov", require: false
  160. gem "shoulda-matchers", "~> 2.1.0"
  161. gem 'email_spec'
  162. gem "webmock"
  163. gem 'test_after_commit'
  164. end
  165. group :production do
  166. gem "gitlab_meta", '6.0'
  167. end