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

/Gemfile

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