diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..7b66fcf --- /dev/null +++ b/Gemfile @@ -0,0 +1,223 @@ +source "https://rubygems.org" + +def darwin_only(require_as) + RUBY_PLATFORM.include?('darwin') && require_as +end + +def linux_only(require_as) + RUBY_PLATFORM.include?('linux') && require_as +end + +gem "rails", "~> 4.0.0" + +gem "protected_attributes" +gem 'rails-observers' +gem 'actionpack-page_caching' +gem 'actionpack-action_caching' +gem 'activerecord-deprecated_finders' + +# Supported DBs +gem "mysql2", group: :mysql +gem "pg", group: :postgres + +# Auth +gem "devise", '3.0.4' +gem "devise-async", '0.8.0' +gem 'omniauth', "~> 1.1.3" +gem 'omniauth-google-oauth2' +gem 'omniauth-twitter' +gem 'omniauth-github' + +# Extracting information from a git repository +# Provide access to Gitlab::Git library +gem "gitlab_git", "~> 4.0.0.pre" + +# Ruby/Rack Git Smart-HTTP Server Handler +gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' + +# LDAP Auth +gem 'gitlab_omniauth-ldap', '1.0.3', require: "omniauth-ldap" + +# Syntax highlighter +gem "gitlab-pygments.rb", '~> 0.5.4', require: 'pygments.rb' + +# Git Wiki +gem "gitlab-gollum-lib", "~> 1.0.2", require: 'gollum-lib' + +# Language detection +gem "gitlab-linguist", "~> 2.9.6", require: "linguist" + +# API +gem "grape", "~> 0.6.1" +gem "grape-entity", "~> 0.3.0" +gem 'rack-cors', require: 'rack/cors' + +# Format dates and times +# based on human-friendly examples +gem "stamp" + +# Enumeration fields +gem 'enumerize' + +# Pagination +gem "kaminari", "~> 0.14.1" + +# HAML +gem "haml-rails" + +# Files attachments +gem "carrierwave" + +# for aws storage +gem "fog", "~> 1.3.1", group: :aws + +# Authorization +gem "six" + +# Seed data +gem "seed-fu" + +# Markdown to HTML +gem "redcarpet", "~> 2.2.2" +gem "github-markup", "~> 0.7.4", require: 'github/markup' + +# Asciidoc to HTML +gem "asciidoctor" + +# Application server +group :unicorn do + gem "unicorn", '~> 4.6.3' + gem 'unicorn-worker-killer' +end + +# State machine +gem "state_machine" + +# Issue tags +gem "acts-as-taggable-on" + +# Background jobs +gem 'slim' +gem 'sinatra', require: nil +gem 'sidekiq' + +# HTTP requests +gem "httparty" + +# Colored output to console +gem "colored" + +# GitLab settings +gem 'settingslogic' + +# Misc +gem "foreman" + +# Cache +gem "redis-rails" + +# Campfire integration +gem 'tinder', '~> 1.9.2' + +# HipChat integration +gem "hipchat", "~> 0.9.0" + +# Flowdock integration +gem "gitlab-flowdock-git-hook", "~> 0.4.2" + +# d3 +gem "d3_rails", "~> 3.1.4" + +# underscore-rails +gem "underscore-rails", "~> 1.4.4" + +# Sanitize user input +gem "sanitize" +gem "omniauth-env", git: "https://github.com/colab-community/omniauth-env.git" + +# Protect against bruteforcing +gem "rack-attack" + +gem "sass-rails" +gem "coffee-rails" +gem "uglifier" +gem "therubyracer" +gem 'turbolinks' +gem 'jquery-turbolinks' + +gem 'chosen-rails', "1.0.1" +gem 'select2-rails' +gem 'jquery-atwho-rails', "~> 0.3.3" +gem "jquery-rails", "2.1.3" +gem "jquery-ui-rails", "2.0.2" +gem "modernizr", "2.6.2" +gem "raphael-rails", "~> 2.1.2" +gem 'bootstrap-sass', '~> 2.3' +gem "font-awesome-rails", '~> 3.2' +gem "gemoji", "~> 1.3.0" +gem "gon", "~> 5.0.0" + +group :development do + gem "annotate", "~> 2.6.0.beta2" + gem "letter_opener" + gem 'quiet_assets', '~> 1.0.1' + gem 'rack-mini-profiler' + + # Better errors handler + gem 'better_errors' + gem 'binding_of_caller' + + gem 'rails_best_practices' + + # Docs generator + gem "sdoc" + + # thin instead webrick + gem 'thin' +end + +group :development, :test do + gem 'coveralls', require: false + # gem 'rails-dev-tweaks' + gem 'spinach-rails' + gem "rspec-rails" + gem "capybara" + gem "pry" + gem "awesome_print" + gem "database_cleaner" + gem "launchy" + gem 'factory_girl_rails' + + # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) + gem 'minitest', '~> 4.7.0' + + # Generate Fake data + gem "ffaker" + + # Guard + gem 'guard-rspec' + gem 'guard-spinach' + + # Notification + gem 'rb-fsevent', require: darwin_only('rb-fsevent') + gem 'growl', require: darwin_only('growl') + gem 'rb-inotify', require: linux_only('rb-inotify') + + # PhantomJS driver for Capybara + gem 'poltergeist', '~> 1.4.1' + + gem 'spork', '~> 1.0rc' + gem 'jasmine', '2.0.0.rc5' +end + +group :test do + gem "simplecov", require: false + gem "shoulda-matchers", "~> 2.1.0" + gem 'email_spec' + gem "webmock" + gem 'test_after_commit' +end + +group :production do + gem "gitlab_meta", '6.0' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..84d5f9a --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,684 @@ +GIT + remote: https://github.com/colab-community/omniauth-env.git + revision: 3bdf3750a81f260063c3470ccc0d86070d01c552 + specs: + omniauth-env (0.0.1) + gitlab_omniauth-ldap (~> 1.0.3) + omniauth (~> 1.0) + +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.0.4) + actionpack (= 4.0.4) + mail (~> 2.5.4) + actionpack (4.0.4) + activesupport (= 4.0.4) + builder (~> 3.1.0) + erubis (~> 2.7.0) + rack (~> 1.5.2) + rack-test (~> 0.6.2) + actionpack-action_caching (1.1.1) + actionpack (>= 4.0.0, < 5.0) + actionpack-page_caching (1.0.2) + actionpack (>= 4.0.0, < 5) + activemodel (4.0.4) + activesupport (= 4.0.4) + builder (~> 3.1.0) + activerecord (4.0.4) + activemodel (= 4.0.4) + activerecord-deprecated_finders (~> 1.0.2) + activesupport (= 4.0.4) + arel (~> 4.0.0) + activerecord-deprecated_finders (1.0.3) + activesupport (4.0.4) + i18n (~> 0.6, >= 0.6.9) + minitest (~> 4.2) + multi_json (~> 1.3) + thread_safe (~> 0.1) + tzinfo (~> 0.3.37) + acts-as-taggable-on (3.1.0) + actionpack (>= 3, < 5) + activerecord (>= 3, < 5) + activesupport (>= 3, < 5) + addressable (2.3.6) + annotate (2.6.2) + activerecord (>= 2.3.0) + rake (>= 0.8.7) + arel (4.0.2) + asciidoctor (0.1.4) + atomic (1.1.16) + awesome_print (1.2.0) + axiom-types (0.1.1) + descendants_tracker (~> 0.0.4) + ice_nine (~> 0.11.0) + thread_safe (~> 0.3, >= 0.3.1) + bcrypt (3.1.7) + bcrypt-ruby (3.1.5) + bcrypt (>= 3.1.3) + better_errors (1.1.0) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + bootstrap-sass (2.3.2.2) + sass (~> 3.2) + builder (3.1.4) + capybara (2.1.0) + mime-types (>= 1.16) + nokogiri (>= 1.3.3) + rack (>= 1.0.0) + rack-test (>= 0.5.4) + xpath (~> 2.0) + carrierwave (0.10.0) + activemodel (>= 3.2.0) + activesupport (>= 3.2.0) + json (>= 1.7) + mime-types (>= 1.16) + celluloid (0.15.2) + timers (~> 1.1.0) + celluloid-io (0.15.0) + celluloid (>= 0.15.0) + nio4r (>= 0.5.0) + charlock_holmes (0.6.9.4) + chosen-rails (1.0.1) + coffee-rails (>= 3.2) + compass-rails (>= 1.0) + railties (>= 3.0) + sass-rails (>= 3.2) + chunky_png (1.3.0) + cliver (0.2.2) + code_analyzer (0.4.5) + sexp_processor + coderay (1.1.0) + coercible (1.0.0) + descendants_tracker (~> 0.0.1) + coffee-rails (4.0.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.0) + coffee-script (2.2.0) + coffee-script-source + execjs + coffee-script-source (1.7.0) + colored (1.2) + colorize (0.5.8) + compass (0.12.4) + chunky_png (~> 1.2) + fssm (>= 0.2.7) + sass (~> 3.2.17) + compass-rails (1.1.7) + compass (>= 0.12.2) + sprockets (<= 2.11.0) + connection_pool (2.0.0) + coveralls (0.7.0) + multi_json (~> 1.3) + rest-client + simplecov (>= 0.7) + term-ansicolor + thor + crack (0.4.2) + safe_yaml (~> 1.0.0) + d3_rails (3.1.10) + railties (>= 3.1.0) + daemons (1.1.9) + database_cleaner (1.2.0) + debug_inspector (0.0.2) + descendants_tracker (0.0.4) + thread_safe (~> 0.3, >= 0.3.1) + devise (3.0.4) + bcrypt-ruby (~> 3.0) + orm_adapter (~> 0.1) + railties (>= 3.2.6, < 5) + warden (~> 1.2.3) + devise-async (0.8.0) + devise (>= 2.2, < 3.2) + diff-lcs (1.2.5) + docile (1.1.3) + dotenv (0.10.0) + email_spec (1.5.0) + launchy (~> 2.1) + mail (~> 2.2) + enumerize (0.8.0) + activesupport (>= 3.2) + equalizer (0.0.9) + erubis (2.7.0) + escape_utils (0.2.4) + eventmachine (1.0.3) + excon (0.13.4) + execjs (2.0.2) + factory_girl (4.4.0) + activesupport (>= 3.0.0) + factory_girl_rails (4.4.1) + factory_girl (~> 4.4.0) + railties (>= 3.0.0) + faraday (0.8.9) + multipart-post (~> 1.2.0) + faraday_middleware (0.9.0) + faraday (>= 0.7.4, < 0.9) + ffaker (1.23.0) + ffi (1.9.3) + fog (1.3.1) + builder + excon (~> 0.13.0) + formatador (~> 0.2.0) + mime-types + multi_json (~> 1.0) + net-scp (~> 1.0.4) + net-ssh (>= 2.1.3) + nokogiri (~> 1.5.0) + ruby-hmac + font-awesome-rails (3.2.1.3) + railties (>= 3.2, < 5.0) + foreman (0.63.0) + dotenv (>= 0.7) + thor (>= 0.13.6) + formatador (0.2.4) + fssm (0.2.10) + gemoji (1.3.1) + gherkin-ruby (0.3.1) + racc + github-markdown (0.5.5) + github-markup (0.7.5) + gitlab-flowdock-git-hook (0.4.2.2) + gitlab-grit (>= 2.4.1) + multi_json + gitlab-gollum-lib (1.0.2) + github-markdown (~> 0.5.3) + github-markup (>= 0.7.5, < 1.0.0) + gitlab-grit (~> 2.6.1) + gitlab-pygments.rb (~> 0.5.4) + nokogiri (~> 1.5.9) + sanitize (~> 2.0.3) + stringex (~> 1.5.1) + gitlab-grack (2.0.0.pre) + rack (~> 1.5.1) + gitlab-grit (2.6.4) + charlock_holmes (~> 0.6.9) + diff-lcs (~> 1.1) + mime-types (~> 1.15) + posix-spawn (~> 0.3.6) + gitlab-linguist (2.9.6) + charlock_holmes (~> 0.6.6) + escape_utils (~> 0.2.4) + gitlab-pygments.rb (~> 0.5.4) + mime-types (~> 1.19) + gitlab-pygments.rb (0.5.4) + posix-spawn (~> 0.3.6) + yajl-ruby (~> 1.1.0) + gitlab_git (4.0.0) + activesupport (~> 4.0.0) + gitlab-grit (~> 2.6.1) + gitlab-linguist (~> 2.9.5) + gitlab-pygments.rb (~> 0.5.4) + gitlab_meta (6.0) + gitlab_omniauth-ldap (1.0.3) + net-ldap (~> 0.3.1) + omniauth (~> 1.0) + pyu-ruby-sasl (~> 0.0.3.1) + rubyntlm (~> 0.1.1) + gon (5.0.4) + actionpack (>= 2.3.0) + json + grape (0.6.1) + activesupport + builder + hashie (>= 1.2.0) + multi_json (>= 1.3.2) + multi_xml (>= 0.5.2) + rack (>= 1.3.0) + rack-accept + rack-mount + virtus (>= 1.0.0) + grape-entity (0.3.0) + activesupport + multi_json (>= 1.3.2) + growl (1.0.3) + guard (2.6.0) + formatador (>= 0.2.4) + listen (~> 2.7) + lumberjack (~> 1.0) + pry (>= 0.9.12) + thor (>= 0.18.1) + guard-rspec (4.2.8) + guard (~> 2.1) + rspec (>= 2.14, < 4.0) + guard-spinach (0.0.3) + guard (>= 1.1) + spinach + haml (4.0.5) + tilt + haml-rails (0.5.3) + actionpack (>= 4.0.1) + activesupport (>= 4.0.1) + haml (>= 3.1, < 5.0) + railties (>= 4.0.1) + hashie (2.0.5) + hike (1.2.3) + hipchat (0.9.0) + httparty + httparty + http_parser.rb (0.5.3) + httparty (0.13.0) + json (~> 1.8) + multi_xml (>= 0.5.2) + httpauth (0.2.1) + i18n (0.6.9) + ice_nine (0.11.0) + jasmine (2.0.0.rc5) + jasmine-core (~> 2.0.0.rc5) + phantomjs + rack (>= 1.2.1) + rake + jasmine-core (2.0.0) + jquery-atwho-rails (0.3.3) + jquery-rails (2.1.3) + railties (>= 3.1.0, < 5.0) + thor (~> 0.14) + jquery-turbolinks (2.0.2) + railties (>= 3.1.0) + turbolinks + jquery-ui-rails (2.0.2) + jquery-rails + railties (>= 3.1.0) + json (1.8.1) + jwt (0.1.11) + multi_json (>= 1.5) + kaminari (0.14.1) + actionpack (>= 3.0.0) + activesupport (>= 3.0.0) + kgio (2.9.2) + launchy (2.4.2) + addressable (~> 2.3) + letter_opener (1.2.0) + launchy (~> 2.2) + libv8 (3.16.14.3) + listen (2.7.1) + celluloid (>= 0.15.2) + celluloid-io (>= 0.15.0) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9) + lumberjack (1.0.5) + mail (2.5.4) + mime-types (~> 1.16) + treetop (~> 1.4.8) + method_source (0.8.2) + mime-types (1.25.1) + minitest (4.7.5) + modernizr (2.6.2) + sprockets (~> 2.0) + multi_json (1.9.2) + multi_xml (0.5.5) + multipart-post (1.2.0) + mysql2 (0.3.15) + net-ldap (0.3.1) + net-scp (1.0.4) + net-ssh (>= 1.99.1) + net-ssh (2.8.0) + nio4r (1.0.0) + nokogiri (1.5.11) + oauth (0.4.7) + oauth2 (0.8.1) + faraday (~> 0.8) + httpauth (~> 0.1) + jwt (~> 0.1.4) + multi_json (~> 1.0) + rack (~> 1.2) + omniauth (1.1.4) + hashie (>= 1.2, < 3) + rack + omniauth-github (1.1.1) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.1) + omniauth-google-oauth2 (0.2.2) + omniauth (~> 1.0) + omniauth-oauth2 + omniauth-oauth (1.0.1) + oauth + omniauth (~> 1.0) + omniauth-oauth2 (1.1.1) + oauth2 (~> 0.8.0) + omniauth (~> 1.0) + omniauth-twitter (1.0.1) + multi_json (~> 1.3) + omniauth-oauth (~> 1.0) + orm_adapter (0.5.0) + pg (0.17.1) + phantomjs (1.9.7.0) + poltergeist (1.4.1) + capybara (~> 2.1.0) + cliver (~> 0.2.1) + multi_json (~> 1.0) + websocket-driver (>= 0.2.0) + polyglot (0.3.4) + posix-spawn (0.3.8) + protected_attributes (1.0.7) + activemodel (>= 4.0.1, < 5.0) + pry (0.9.12.6) + coderay (~> 1.0) + method_source (~> 0.8) + slop (~> 3.4) + pyu-ruby-sasl (0.0.3.3) + quiet_assets (1.0.2) + railties (>= 3.1, < 5.0) + racc (1.4.11) + rack (1.5.2) + rack-accept (0.4.5) + rack (>= 0.4) + rack-attack (3.0.0) + rack + rack-cors (0.2.9) + rack-mini-profiler (0.9.1) + rack (>= 1.1.3) + rack-mount (0.8.3) + rack (>= 1.0.0) + rack-protection (1.5.2) + rack + rack-test (0.6.2) + rack (>= 1.0) + rails (4.0.4) + actionmailer (= 4.0.4) + actionpack (= 4.0.4) + activerecord (= 4.0.4) + activesupport (= 4.0.4) + bundler (>= 1.3.0, < 2.0) + railties (= 4.0.4) + sprockets-rails (~> 2.0.0) + rails-observers (0.1.2) + activemodel (~> 4.0) + rails_best_practices (1.15.2) + activesupport + awesome_print + code_analyzer (>= 0.4.3) + colored + erubis + i18n + require_all + ruby-progressbar + railties (4.0.4) + actionpack (= 4.0.4) + activesupport (= 4.0.4) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + raindrops (0.13.0) + rake (10.2.2) + raphael-rails (2.1.2) + rb-fsevent (0.9.4) + rb-inotify (0.9.3) + ffi (>= 0.5.0) + rdoc (4.1.1) + json (~> 1.4) + redcarpet (2.2.2) + redis (3.0.7) + redis-actionpack (4.0.0) + actionpack (~> 4) + redis-rack (~> 1.5.0) + redis-store (~> 1.1.0) + redis-activesupport (4.0.0) + activesupport (~> 4) + redis-store (~> 1.1.0) + redis-namespace (1.4.1) + redis (~> 3.0.4) + redis-rack (1.5.0) + rack (~> 1.5) + redis-store (~> 1.1.0) + redis-rails (4.0.0) + redis-actionpack (~> 4) + redis-activesupport (~> 4) + redis-store (~> 1.1.0) + redis-store (1.1.4) + redis (>= 2.2) + ref (1.0.5) + require_all (1.3.2) + rest-client (1.6.7) + mime-types (>= 1.16) + rspec (2.14.1) + rspec-core (~> 2.14.0) + rspec-expectations (~> 2.14.0) + rspec-mocks (~> 2.14.0) + rspec-core (2.14.8) + rspec-expectations (2.14.5) + diff-lcs (>= 1.1.3, < 2.0) + rspec-mocks (2.14.6) + rspec-rails (2.14.2) + actionpack (>= 3.0) + activemodel (>= 3.0) + activesupport (>= 3.0) + railties (>= 3.0) + rspec-core (~> 2.14.0) + rspec-expectations (~> 2.14.0) + rspec-mocks (~> 2.14.0) + ruby-hmac (0.4.0) + ruby-progressbar (1.4.2) + rubyntlm (0.1.1) + safe_yaml (1.0.1) + sanitize (2.0.6) + nokogiri (>= 1.4.4) + sass (3.2.18) + sass-rails (4.0.2) + railties (>= 4.0.0, < 5.0) + sass (~> 3.2.0) + sprockets (~> 2.8, <= 2.11.0) + sprockets-rails (~> 2.0.0) + sdoc (0.4.0) + json (~> 1.8) + rdoc (~> 4.0, < 5.0) + seed-fu (2.3.0) + activerecord (>= 3.1, < 4.1) + activesupport (>= 3.1, < 4.1) + select2-rails (3.5.4) + thor (~> 0.14) + settingslogic (2.0.9) + sexp_processor (4.4.3) + shoulda-matchers (2.1.0) + activesupport (>= 3.0.0) + sidekiq (3.0.0) + celluloid (>= 0.15.2) + connection_pool (>= 2.0.0) + json + redis (>= 3.0.6) + redis-namespace (>= 1.3.1) + simple_oauth (0.1.9) + simplecov (0.8.2) + docile (~> 1.1.0) + multi_json + simplecov-html (~> 0.8.0) + simplecov-html (0.8.0) + sinatra (1.4.4) + rack (~> 1.4) + rack-protection (~> 1.4) + tilt (~> 1.3, >= 1.3.4) + six (0.2.0) + slim (2.0.2) + temple (~> 0.6.6) + tilt (>= 1.3.3, < 2.1) + slop (3.5.0) + spinach (0.8.7) + colorize (= 0.5.8) + gherkin-ruby (>= 0.3.1) + spinach-rails (0.2.1) + capybara (>= 2.0.0) + railties (>= 3) + spinach (>= 0.4) + spork (1.0.0rc4) + sprockets (2.11.0) + hike (~> 1.2) + multi_json (~> 1.0) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + sprockets-rails (2.0.1) + actionpack (>= 3.0) + activesupport (>= 3.0) + sprockets (~> 2.8) + stamp (0.5.0) + state_machine (1.2.0) + stringex (1.5.1) + temple (0.6.7) + term-ansicolor (1.3.0) + tins (~> 1.0) + test_after_commit (0.2.3) + therubyracer (0.12.1) + libv8 (~> 3.16.14.0) + ref + thin (1.6.2) + daemons (>= 1.0.9) + eventmachine (>= 1.0.0) + rack (>= 1.0.0) + thor (0.19.1) + thread_safe (0.3.1) + atomic (>= 1.1.7, < 2) + tilt (1.4.1) + timers (1.1.0) + tinder (1.9.4) + eventmachine (~> 1.0) + faraday (~> 0.8.9) + faraday_middleware (~> 0.9) + hashie (>= 1.0, < 3) + json (~> 1.8.0) + mime-types (~> 1.19) + multi_json (~> 1.7) + twitter-stream (~> 0.1) + tins (1.0.1) + treetop (1.4.15) + polyglot + polyglot (>= 0.3.1) + turbolinks (2.2.1) + coffee-rails + twitter-stream (0.1.16) + eventmachine (>= 0.12.8) + http_parser.rb (~> 0.5.1) + simple_oauth (~> 0.1.4) + tzinfo (0.3.39) + uglifier (2.5.0) + execjs (>= 0.3.0) + json (>= 1.8.0) + underscore-rails (1.4.4) + unicorn (4.6.3) + kgio (~> 2.6) + rack + raindrops (~> 0.7) + unicorn-worker-killer (0.4.2) + unicorn (~> 4) + virtus (1.0.2) + axiom-types (~> 0.1) + coercible (~> 1.0) + descendants_tracker (~> 0.0.3) + equalizer (~> 0.0.9) + warden (1.2.3) + rack (>= 1.0) + webmock (1.17.4) + addressable (>= 2.2.7) + crack (>= 0.3.2) + websocket-driver (0.3.2) + xpath (2.0.0) + nokogiri (~> 1.3) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack-action_caching + actionpack-page_caching + activerecord-deprecated_finders + acts-as-taggable-on + annotate (~> 2.6.0.beta2) + asciidoctor + awesome_print + better_errors + binding_of_caller + bootstrap-sass (~> 2.3) + capybara + carrierwave + chosen-rails (= 1.0.1) + coffee-rails + colored + coveralls + d3_rails (~> 3.1.4) + database_cleaner + devise (= 3.0.4) + devise-async (= 0.8.0) + email_spec + enumerize + factory_girl_rails + ffaker + fog (~> 1.3.1) + font-awesome-rails (~> 3.2) + foreman + gemoji (~> 1.3.0) + github-markup (~> 0.7.4) + gitlab-flowdock-git-hook (~> 0.4.2) + gitlab-gollum-lib (~> 1.0.2) + gitlab-grack (~> 2.0.0.pre) + gitlab-linguist (~> 2.9.6) + gitlab-pygments.rb (~> 0.5.4) + gitlab_git (~> 4.0.0.pre) + gitlab_meta (= 6.0) + gitlab_omniauth-ldap (= 1.0.3) + gon (~> 5.0.0) + grape (~> 0.6.1) + grape-entity (~> 0.3.0) + growl + guard-rspec + guard-spinach + haml-rails + hipchat (~> 0.9.0) + httparty + jasmine (= 2.0.0.rc5) + jquery-atwho-rails (~> 0.3.3) + jquery-rails (= 2.1.3) + jquery-turbolinks + jquery-ui-rails (= 2.0.2) + kaminari (~> 0.14.1) + launchy + letter_opener + minitest (~> 4.7.0) + modernizr (= 2.6.2) + mysql2 + omniauth (~> 1.1.3) + omniauth-env! + omniauth-github + omniauth-google-oauth2 + omniauth-twitter + pg + poltergeist (~> 1.4.1) + protected_attributes + pry + quiet_assets (~> 1.0.1) + rack-attack + rack-cors + rack-mini-profiler + rails (~> 4.0.0) + rails-observers + rails_best_practices + raphael-rails (~> 2.1.2) + rb-fsevent + rb-inotify + redcarpet (~> 2.2.2) + redis-rails + rspec-rails + sanitize + sass-rails + sdoc + seed-fu + select2-rails + settingslogic + shoulda-matchers (~> 2.1.0) + sidekiq + simplecov + sinatra + six + slim + spinach-rails + spork (~> 1.0rc) + stamp + state_machine + test_after_commit + therubyracer + thin + tinder (~> 1.9.2) + turbolinks + uglifier + underscore-rails (~> 1.4.4) + unicorn (~> 4.6.3) + unicorn-worker-killer + webmock -- libgit2 0.21.2