PageRenderTime 54ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/Gemfile

https://gitlab.com/benmezger/gitlab-ce
Gemfile | 267 lines | 144 code | 67 blank | 56 comment | 0 complexity | f40ed68da5cecfc936f868b8b4cc48b3 MD5 | raw file
  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'
  25. gem 'doorkeeper', '2.1.0'
  26. gem "rack-oauth2", "~> 1.0.5"
  27. # Browser detection
  28. gem "browser"
  29. # Extracting information from a git repository
  30. # Provide access to Gitlab::Git library
  31. gem "gitlab_git", '7.0.0.rc14'
  32. # Ruby/Rack Git Smart-HTTP Server Handler
  33. gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack'
  34. # LDAP Auth
  35. gem 'gitlab_omniauth-ldap', '1.2.0', require: "omniauth-ldap"
  36. # Git Wiki
  37. gem 'gollum-lib', '~> 3.0.0'
  38. # Language detection
  39. gem "gitlab-linguist", "~> 3.0.0", require: "linguist"
  40. # API
  41. gem "grape", "~> 0.6.1"
  42. gem "grape-entity", "~> 0.4.2"
  43. gem 'rack-cors', require: 'rack/cors'
  44. # Format dates and times
  45. # based on human-friendly examples
  46. gem "stamp"
  47. # Enumeration fields
  48. gem 'enumerize'
  49. # Pagination
  50. gem "kaminari", "~> 0.15.1"
  51. # HAML
  52. gem "haml-rails"
  53. # Files attachments
  54. gem "carrierwave"
  55. # Drag and Drop UI
  56. gem 'dropzonejs-rails'
  57. # for aws storage
  58. gem "fog", "~> 1.14"
  59. gem "unf"
  60. # Authorization
  61. gem "six"
  62. # Seed data
  63. gem "seed-fu"
  64. # Markup pipeline for GitLab
  65. gem 'html-pipeline-gitlab', '~> 0.1.0'
  66. # Markdown to HTML
  67. gem "github-markup"
  68. # Required markup gems by github-markdown
  69. gem 'redcarpet', '~> 3.1.2'
  70. gem 'RedCloth'
  71. gem 'rdoc', '~>3.6'
  72. gem 'org-ruby', '= 0.9.12'
  73. gem 'creole', '~>0.3.6'
  74. gem 'wikicloth', '=0.8.1'
  75. gem 'asciidoctor', '= 0.1.4'
  76. # Diffs
  77. gem 'diffy', '~> 3.0.3'
  78. # Application server
  79. group :unicorn do
  80. gem "unicorn", '~> 4.6.3'
  81. gem 'unicorn-worker-killer'
  82. end
  83. # State machine
  84. gem "state_machine"
  85. # Issue tags
  86. gem "acts-as-taggable-on"
  87. # Background jobs
  88. gem 'slim'
  89. gem 'sinatra', require: nil
  90. gem 'sidekiq', '2.17.8'
  91. # HTTP requests
  92. gem "httparty"
  93. # Colored output to console
  94. gem "colored"
  95. # GitLab settings
  96. gem 'settingslogic'
  97. # Misc
  98. gem "foreman"
  99. gem 'version_sorter'
  100. # Cache
  101. gem "redis-rails"
  102. # Campfire integration
  103. gem 'tinder', '~> 1.9.2'
  104. # HipChat integration
  105. gem "hipchat", "~> 1.4.0"
  106. # Flowdock integration
  107. gem "gitlab-flowdock-git-hook", "~> 0.4.2"
  108. # Gemnasium integration
  109. gem "gemnasium-gitlab-service", "~> 0.2"
  110. # Slack integration
  111. gem "slack-notifier", "~> 1.0.0"
  112. # d3
  113. gem "d3_rails", "~> 3.1.4"
  114. # underscore-rails
  115. gem "underscore-rails", "~> 1.4.4"
  116. # Sanitize user input
  117. gem "sanitize", '~> 2.0'
  118. # Protect against bruteforcing
  119. gem "rack-attack"
  120. # Ace editor
  121. gem 'ace-rails-ap'
  122. # Keyboard shortcuts
  123. gem 'mousetrap-rails'
  124. # Semantic UI Sass for Sidebar
  125. gem 'semantic-ui-sass', '~> 0.16.1.0'
  126. gem "sass-rails", '~> 4.0.2'
  127. gem "coffee-rails"
  128. gem "uglifier"
  129. gem 'turbolinks'
  130. gem 'jquery-turbolinks'
  131. gem 'select2-rails'
  132. gem 'jquery-atwho-rails', "~> 0.3.3"
  133. gem "jquery-rails"
  134. gem "jquery-ui-rails"
  135. gem "jquery-scrollto-rails"
  136. gem "raphael-rails", "~> 2.1.2"
  137. gem 'bootstrap-sass', '~> 3.0'
  138. gem "font-awesome-rails", '~> 4.2'
  139. gem "gitlab_emoji", "~> 0.0.1.1"
  140. gem "gon", '~> 5.0.0'
  141. gem 'nprogress-rails'
  142. gem 'request_store'
  143. gem "virtus"
  144. gem 'addressable'
  145. group :development do
  146. gem "annotate", "~> 2.6.0.beta2"
  147. gem "letter_opener"
  148. gem 'quiet_assets', '~> 1.0.1'
  149. gem 'rack-mini-profiler', require: false
  150. # Better errors handler
  151. gem 'better_errors'
  152. gem 'binding_of_caller'
  153. gem 'rails_best_practices'
  154. # Docs generator
  155. gem "sdoc"
  156. # thin instead webrick
  157. gem 'thin'
  158. end
  159. group :development, :test do
  160. gem 'coveralls', require: false
  161. # gem 'rails-dev-tweaks'
  162. gem 'spinach-rails'
  163. gem "rspec-rails"
  164. gem "capybara", '~> 2.2.1'
  165. gem "pry"
  166. gem "awesome_print"
  167. gem "database_cleaner"
  168. gem "launchy"
  169. gem 'factory_girl_rails'
  170. # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
  171. gem 'minitest', '~> 5.3.0'
  172. # Generate Fake data
  173. gem "ffaker"
  174. # Guard
  175. gem 'guard-rspec'
  176. gem 'guard-spinach'
  177. # Notification
  178. gem 'rb-fsevent', require: darwin_only('rb-fsevent')
  179. gem 'growl', require: darwin_only('growl')
  180. gem 'rb-inotify', require: linux_only('rb-inotify')
  181. # PhantomJS driver for Capybara
  182. gem 'poltergeist', '~> 1.5.1'
  183. gem 'jasmine', '2.0.2'
  184. gem "spring", '1.1.3'
  185. gem "spring-commands-rspec", '1.0.1'
  186. gem "spring-commands-spinach", '1.0.0'
  187. end
  188. group :test do
  189. gem "simplecov", require: false
  190. gem "shoulda-matchers", "~> 2.1.0"
  191. gem 'email_spec'
  192. gem "webmock"
  193. gem 'test_after_commit'
  194. end
  195. group :production do
  196. gem "gitlab_meta", '7.0'
  197. gem "therubyracer"
  198. end
  199. gem "newrelic_rpm"
  200. gem 'octokit', '3.7.0'