Merge pull request #17489 from mayflower/pkg/gitlab-8-10

gitlab: 8.5.12 -> 8.10.3, update module

Changed files
+1133 -1264
nixos
doc
manual
release-notes
modules
services
pkgs
+6 -1
nixos/doc/manual/release-notes/rl-1609.xml
···
</listitem>
<listitem>
-
<para>Redis now binds to 127.0.0.1 only instead of listening to all network interfaces. This is the default
+
<para>Redis now binds to 127.0.0.1 only instead of listening to all network interfaces. This is the default
behavior of Redis 3.2</para>
+
</listitem>
+
+
<listitem>
+
<para>Gitlab's maintainence script gitlab-runner was removed and split up into the more clearer
+
gitlab-run and gitlab-rake scripts because gitlab-runner is a component of Gitlab CI.</para>
</listitem>
</itemizedlist>
+109 -46
nixos/modules/services/misc/gitlab.nix
···
issues = true;
merge_requests = true;
wiki = true;
-
snippets = false;
+
snippets = true;
builds = true;
+
container_registry = true;
};
};
-
artifacts = {
-
enabled = true;
-
};
-
lfs = {
-
enabled = true;
-
};
-
gravatar = {
-
enabled = true;
-
};
-
cron_jobs = {
-
stuck_ci_builds_worker = {
-
cron = "0 0 * * *";
-
};
-
};
-
gitlab_ci = {
-
builds_path = "${cfg.statePath}/builds";
-
};
-
ldap = {
-
enabled = false;
-
};
-
omniauth = {
-
enabled = false;
-
};
-
shared = {
-
path = "${cfg.statePath}/shared";
-
};
-
backup = {
-
path = "${cfg.backupPath}";
-
};
+
repositories.storages.default = "${cfg.statePath}/repositories";
+
artifacts.enabled = true;
+
lfs.enabled = true;
+
gravatar.enabled = true;
+
cron_jobs = { };
+
gitlab_ci.builds_path = "${cfg.statePath}/builds";
+
ldap.enabled = false;
+
omniauth.enabled = false;
+
shared.path = "${cfg.statePath}/shared";
+
backup.path = "${cfg.backupPath}";
gitlab_shell = {
path = "${cfg.packages.gitlab-shell}";
-
repos_path = "${cfg.statePath}/repositories";
hooks_path = "${cfg.statePath}/shell/hooks";
secret_file = "${cfg.statePath}/config/gitlab_shell_secret";
upload_pack = true;
···
unicornConfig = builtins.readFile ./defaultUnicornConfig.rb;
-
gitlab-runner = pkgs.stdenv.mkDerivation rec {
-
name = "gitlab-runner";
-
buildInputs = [ cfg.packages.gitlab bundler pkgs.makeWrapper ];
+
gitlab-rake = pkgs.stdenv.mkDerivation rec {
+
name = "gitlab-rake";
+
buildInputs = [ cfg.packages.gitlab cfg.packages.gitlab.env pkgs.makeWrapper ];
phases = "installPhase fixupPhase";
buildPhase = "";
installPhase = ''
mkdir -p $out/bin
-
makeWrapper ${bundler}/bin/bundle $out/bin/gitlab-runner \
-
${concatStrings (mapAttrsToList (name: value: "--set ${name} '\"${value}\"' ") gitlabEnv)} \
-
--set GITLAB_CONFIG_PATH '"${cfg.statePath}/config"' \
-
--set PATH '"${pkgs.nodejs}/bin:${pkgs.gzip}/bin:${config.services.postgresql.package}/bin:$PATH"' \
-
--set RAKEOPT '"-f ${cfg.packages.gitlab}/share/gitlab/Rakefile"'
-
'';
+
makeWrapper ${cfg.packages.gitlab.env}/bin/bundle $out/bin/gitlab-bundle \
+
${concatStrings (mapAttrsToList (name: value: "--set ${name} '${value}' ") gitlabEnv)} \
+
--set GITLAB_CONFIG_PATH '${cfg.statePath}/config' \
+
--set PATH '${pkgs.nodejs}/bin:${pkgs.gzip}/bin:${config.services.postgresql.package}/bin:$PATH' \
+
--set RAKEOPT '-f ${cfg.packages.gitlab}/share/gitlab/Rakefile' \
+
--run 'cd ${cfg.packages.gitlab}/share/gitlab'
+
makeWrapper $out/bin/gitlab-bundle $out/bin/gitlab-rake \
+
--add-flags "exec rake"
+
'';
};
+
smtpSettings = pkgs.writeText "gitlab-smtp-settings.rb" ''
+
if Rails.env.production?
+
Rails.application.config.action_mailer.delivery_method = :smtp
+
+
ActionMailer::Base.delivery_method = :smtp
+
ActionMailer::Base.smtp_settings = {
+
address: "${cfg.smtp.address}",
+
port: ${toString cfg.smtp.port},
+
${optionalString (cfg.smtp.username != null) ''user_name: "${cfg.smtp.username}",''}
+
${optionalString (cfg.smtp.password != null) ''password: "${cfg.smtp.password}",''}
+
domain: "${cfg.smtp.domain}",
+
${optionalString (cfg.smtp.authentication != null) "authentication: :${cfg.smtp.authentication},"}
+
enable_starttls_auto: ${toString cfg.smtp.enableStartTLSAuto},
+
openssl_verify_mode: '${cfg.smtp.opensslVerifyMode}'
+
}
+
end
+
'';
+
in {
options = {
···
'';
};
+
smtp = {
+
enable = mkOption {
+
type = types.bool;
+
default = false;
+
description = "Enable gitlab mail delivery over SMTP.";
+
};
+
+
address = mkOption {
+
type = types.str;
+
default = "localhost";
+
description = "Address of the SMTP server for Gitlab.";
+
};
+
+
port = mkOption {
+
type = types.int;
+
default = 465;
+
description = "Port of the SMTP server for Gitlab.";
+
};
+
+
username = mkOption {
+
type = types.nullOr types.str;
+
default = null;
+
description = "Username of the SMTP server for Gitlab.";
+
};
+
+
password = mkOption {
+
type = types.nullOr types.str;
+
default = null;
+
description = "Password of the SMTP server for Gitlab.";
+
};
+
+
domain = mkOption {
+
type = types.str;
+
default = "localhost";
+
description = "HELO domain to use for outgoing mail.";
+
};
+
+
authentication = mkOption {
+
type = types.nullOr types.str;
+
default = null;
+
description = "Authentitcation type to use, see http://api.rubyonrails.org/classes/ActionMailer/Base.html";
+
};
+
+
enableStartTLSAuto = mkOption {
+
type = types.bool;
+
default = true;
+
description = "Whether to try to use StartTLS.";
+
};
+
+
opensslVerifyMode = mkOption {
+
type = types.str;
+
default = "peer";
+
description = "How OpenSSL checks the certificate, see http://api.rubyonrails.org/classes/ActionMailer/Base.html";
+
};
+
};
+
extraConfig = mkOption {
type = types.attrs;
default = {};
···
config = mkIf cfg.enable {
-
environment.systemPackages = [ pkgs.git gitlab-runner cfg.packages.gitlab-shell ];
+
environment.systemPackages = [ pkgs.git gitlab-rake cfg.packages.gitlab-shell ];
assertions = [
{ assertion = cfg.databasePassword != "";
···
systemd.services.gitlab-sidekiq = {
after = [ "network.target" "redis.service" ];
wantedBy = [ "multi-user.target" ];
+
partOf = [ "gitlab.service" ];
environment = gitlabEnv;
path = with pkgs; [
config.services.postgresql.package
···
Group = cfg.group;
TimeoutSec = "300";
WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab";
-
ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailers -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\"";
+
ExecStart="${cfg.packages.gitlab.env}/bin/bundle exec \"sidekiq -q post_receive -q mailers -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\"";
};
};
···
chmod -R u+rwX,go-rwx+X ${gitlabEnv.HOME}/
cp -rf ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config
+
${optionalString cfg.smtp.enable ''
+
ln -sf ${smtpSettings} ${cfg.statePath}/config/initializers/smtp_settings.rb
+
''}
ln -sf ${cfg.statePath}/config /run/gitlab/config
cp ${cfg.packages.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION
···
touch "${cfg.statePath}/db-created"
# The gitlab:setup task is horribly broken somehow, these two tasks will do the same for setting up the initial database
-
${gitlab-runner}/bin/gitlab-runner exec rake db:migrate RAILS_ENV=production
-
${gitlab-runner}/bin/gitlab-runner exec rake db:seed_fu RAILS_ENV=production \
+
${gitlab-rake}/bin/gitlab-rake db:migrate RAILS_ENV=production
+
${gitlab-rake}/bin/gitlab-rake db:seed_fu RAILS_ENV=production \
GITLAB_ROOT_PASSWORD="${cfg.initialRootPassword}" GITLAB_ROOT_EMAIL="${cfg.initialRootEmail}";
fi
fi
# Always do the db migrations just to be sure the database is up-to-date
-
${gitlab-runner}/bin/gitlab-runner exec rake db:migrate RAILS_ENV=production
+
${gitlab-rake}/bin/gitlab-rake db:migrate RAILS_ENV=production
# Change permissions in the last step because some of the
# intermediary scripts like to create directories as root.
···
User = cfg.user;
Group = cfg.group;
TimeoutSec = "300";
+
Restart = "on-failure";
WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab";
-
ExecStart="${bundler}/bin/bundle exec \"unicorn -c ${cfg.statePath}/config/unicorn.rb -E production\"";
+
ExecStart = "${cfg.packages.gitlab.env}/bin/bundle exec \"unicorn -c ${cfg.statePath}/config/unicorn.rb -E production\"";
};
};
+32 -31
nixos/modules/services/misc/gitlab.xml
···
<literal>/run/gitlab/gitlab-workhorse.socket</literal>. You need to configure a
webserver to proxy HTTP requests to the socket.</para>
-
<para>For instance, this could be used for Nginx:
+
<para>For instance, the following configuration could be used to use nginx as
+
frontend proxy:
<programlisting>
-
services.nginx.httpConfig = ''
-
server {
-
server_name git.example.com;
-
listen 443 ssl spdy;
-
listen [::]:443 ssl spdy;
-
-
ssl_certificate /var/lib/acme/git.example.com/fullchain.pem;
-
ssl_certificate_key /var/lib/acme/git.example.com/key.pem;
-
-
location / {
-
proxy_http_version 1.1;
-
proxy_set_header Host $http_host;
-
proxy_set_header X-Real-IP $remote_addr;
-
proxy_set_header X-Forwarded-Ssl on;
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
-
proxy_set_header X-Forwarded-Proto $scheme;
-
-
proxy_pass http://unix:/run/gitlab/gitlab-workhorse.socket;
-
}
-
}
+
services.nginx = {
+
enable = true;
+
recommendedGzipSettings = true;
+
recommendedOptimisation = true;
+
recommendedProxySettings = true;
+
recommendedTlsSettings = true;
+
virtualHosts."git.example.com" = {
+
enableACME = true;
+
forceSSL = true;
+
locations."/".proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket";
+
};
+
};
'';
</programlisting>
</para>
···
both services. In the case of PostgreSQL, a database and a role will be created.
</para>
-
<para>The default state dir is /var/gitlab/state. This is where all data like
-
the repositories and uploads will be stored.</para>
+
<para>The default state dir is <literal>/var/gitlab/state</literal>. This is where
+
all data like the repositories and uploads will be stored.</para>
-
<para>A basic configuration could look like this:
+
<para>A basic configuration with some custom settings could look like this:
<programlisting>
services.gitlab = {
···
port = 443;
user = "git";
group = "git";
+
smtp = {
+
enable = true;
+
address = "localhost";
+
port = 25;
+
};
extraConfig = {
gitlab = {
+
email_from = "gitlab-no-reply@example.com";
+
email_display_name = "Example GitLab";
+
email_reply_to = "gitlab-no-reply@example.com";
default_projects_features = { builds = false; };
};
};
···
<section><title>Maintenance</title>
-
<para>You can run all Gitlab related commands like rake tasks with
-
<literal>gitlab-runner</literal> which will be available on the system
-
when gitlab is enabled. You will have to run the commands as the user that
-
you configured to run gitlab.</para>
+
<para>You can run Gitlab's rake tasks with <literal>gitlab-rake</literal>
+
which will be available on the system when gitlab is enabled. You will
+
have to run the command as the user that you configured to run gitlab
+
with.</para>
-
<para>For instance, to backup a Gitlab instance:
+
<para>For example, to backup a Gitlab instance:
<programlisting>
-
$ sudo -u git -H gitlab-runner exec rake gitlab:backup:create
+
$ sudo -u git -H gitlab-rake gitlab:backup:create
</programlisting>
A list of all availabe rake tasks can be obtained by running:
<programlisting>
-
$ sudo -u git -H gitlab-runner exec rake -T
+
$ sudo -u git -H gitlab-rake -T
</programlisting>
</para>
+2 -2
pkgs/applications/version-management/gitlab-shell/default.nix
···
{ stdenv, ruby, bundler, fetchFromGitLab }:
stdenv.mkDerivation rec {
-
version = "2.6.10";
+
version = "3.2.1";
name = "gitlab-shell-${version}";
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-shell";
rev = "v${version}";
-
sha256 = "1f1ma49xpkan2iksnw9amzjdw6i0bxnzdbsk0329m7if4987vcqd";
+
sha256 = "099w4s606k2mk9xc42jwqym1ycr20824w6nkf3zpiv17slwakw90";
};
buildInputs = [
+3 -3
pkgs/applications/version-management/gitlab-workhorse/default.nix
···
{ stdenv, fetchFromGitLab, git, go }:
stdenv.mkDerivation rec {
-
version = "0.6.4";
+
version = "0.7.8";
name = "gitlab-workhorse-${version}";
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
-
rev = version;
-
sha256 = "09bs3kdmqi6avdak2nqma141y4fhfv050zwqqx7qh9a9hgkgwjxw";
+
rev = "v${version}";
+
sha256 = "03lhgmd8w2ainvgf2q3pgafz2jl5g4x32qyybyijlyxfl07vkg4g";
};
buildInputs = [ git go ];
+128 -100
pkgs/applications/version-management/gitlab/Gemfile
···
-
source "https://rubygems.org"
+
source 'https://rubygems.org'
-
gem 'rails', '4.2.5.2'
+
gem 'rails', '4.2.7'
gem 'rails-deprecated_sanitizer', '~> 1.0.3'
# Responders respond_to and respond_with
gem 'responders', '~> 2.0'
-
# Specify a sprockets version due to security issue
-
# See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY
-
gem 'sprockets', '~> 2.12.3'
+
# Specify a sprockets version due to increased performance
+
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/6069
+
gem 'sprockets', '~> 3.6.0'
# Default values for AR models
-
gem "default_value_for", "~> 3.0.0"
+
gem 'default_value_for', '~> 3.0.0'
# Supported DBs
-
gem "mysql2", '~> 0.3.16', group: :mysql
-
gem "pg", '~> 0.18.2', group: :postgres
+
gem 'mysql2', '~> 0.3.16', group: :mysql
+
gem 'pg', '~> 0.18.2', group: :postgres
# Authentication libraries
-
gem 'devise', '~> 3.5.4'
-
gem 'devise-async', '~> 0.9.0'
-
gem 'doorkeeper', '~> 2.2.0'
+
gem 'devise', '~> 4.0'
+
gem 'doorkeeper', '~> 4.0'
gem 'omniauth', '~> 1.3.1'
+
gem 'omniauth-auth0', '~> 1.4.1'
gem 'omniauth-azure-oauth2', '~> 0.0.6'
gem 'omniauth-bitbucket', '~> 0.0.2'
gem 'omniauth-cas3', '~> 1.1.2'
gem 'omniauth-facebook', '~> 3.0.0'
gem 'omniauth-github', '~> 1.1.1'
gem 'omniauth-gitlab', '~> 1.0.0'
-
gem 'omniauth-google-oauth2', '~> 0.2.0'
+
gem 'omniauth-google-oauth2', '~> 0.4.1'
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos
-
gem 'omniauth-saml', '~> 1.4.2'
+
gem 'omniauth-saml', '~> 1.6.0'
gem 'omniauth-shibboleth', '~> 1.2.0'
gem 'omniauth-twitter', '~> 1.2.0'
gem 'omniauth_crowd', '~> 2.2.0'
gem 'rack-oauth2', '~> 1.2.1'
+
gem 'jwt'
# Spam and anti-bot protection
-
gem 'recaptcha', require: 'recaptcha/rails'
+
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails'
gem 'akismet', '~> 2.0'
# Two-factor authentication
-
gem 'devise-two-factor', '~> 2.0.0'
+
gem 'devise-two-factor', '~> 3.0.0'
gem 'rqrcode-rails3', '~> 0.1.7'
-
gem 'attr_encrypted', '~> 1.3.4'
+
gem 'attr_encrypted', '~> 3.0.0'
+
gem 'u2f', '~> 0.2.1'
# Browser detection
-
gem "browser", '~> 1.0.0'
+
gem 'browser', '~> 2.2'
# Extracting information from a git repository
# Provide access to Gitlab::Git library
-
gem "gitlab_git", '~> 8.2'
+
gem 'gitlab_git', '~> 10.3.2'
# LDAP Auth
# GitLab fork with several improvements to original library. For full list of changes
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
-
gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap"
+
gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: 'omniauth-ldap'
# Git Wiki
-
gem 'gollum-lib', '~> 4.1.0'
+
# Required manually in config/initializers/gollum.rb to control load order
+
gem 'gollum-lib', '~> 4.2', require: false
+
gem 'gollum-rugged_adapter', '~> 0.4.2', require: false
# Language detection
-
gem "github-linguist", "~> 4.7.0", require: "linguist"
+
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
# API
gem 'grape', '~> 0.13.0'
···
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors'
# Pagination
-
gem "kaminari", "~> 0.16.3"
+
gem 'kaminari', '~> 0.17.0'
# HAML
-
gem "haml-rails", '~> 0.9.0'
+
gem 'hamlit', '~> 2.5'
# Files attachments
-
gem "carrierwave", '~> 0.9.0'
+
gem 'carrierwave', '~> 0.10.0'
# Drag and Drop UI
gem 'dropzonejs-rails', '~> 0.7.1'
+
# for backups
+
gem 'fog-aws', '~> 0.9'
+
gem 'fog-azure', '~> 0.0'
+
gem 'fog-core', '~> 1.40'
+
gem 'fog-local', '~> 0.3'
+
gem 'fog-google', '~> 0.3'
+
gem 'fog-openstack', '~> 0.1'
+
gem 'fog-rackspace', '~> 0.1.1'
+
# for aws storage
-
gem "fog", "~> 1.36.0"
-
gem "unf", '~> 0.1.4'
+
gem 'unf', '~> 0.1.4'
# Authorization
-
gem "six", '~> 0.2.0'
+
gem 'six', '~> 0.2.0'
# Seed data
-
gem "seed-fu", '~> 2.3.5'
+
gem 'seed-fu', '~> 2.3.5'
# Markdown and HTML processing
gem 'html-pipeline', '~> 1.11.0'
gem 'task_list', '~> 1.0.2', require: 'task_list/railtie'
-
gem 'github-markup', '~> 1.3.1'
+
gem 'github-markup', '~> 1.4'
gem 'redcarpet', '~> 3.3.3'
-
gem 'RedCloth', '~> 4.2.9'
+
gem 'RedCloth', '~> 4.3.2'
gem 'rdoc', '~>3.6'
gem 'org-ruby', '~> 0.9.12'
gem 'creole', '~> 0.5.0'
gem 'wikicloth', '0.8.1'
gem 'asciidoctor', '~> 1.5.2'
-
gem 'rouge', '~> 1.10.1'
+
gem 'rouge', '~> 2.0'
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
-
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
+
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2', '< 1.6.8'
# Diffs
gem 'diffy', '~> 3.0.3'
# Application server
group :unicorn do
-
gem "unicorn", '~> 4.8.2'
+
gem 'unicorn', '~> 4.9.0'
gem 'unicorn-worker-killer', '~> 0.4.2'
end
# State machine
-
gem "state_machines-activerecord", '~> 0.3.0'
+
gem 'state_machines-activerecord', '~> 0.4.0'
# Run events after state machine commits
-
gem 'after_commit_queue'
+
gem 'after_commit_queue', '~> 1.3.0'
# Issue tags
gem 'acts-as-taggable-on', '~> 3.4'
# Background jobs
-
gem 'sinatra', '~> 1.4.4', require: nil
+
gem 'sinatra', '~> 1.4.4', require: false
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
-
gem 'redis-namespace'
+
gem 'redis-namespace', '~> 1.5.2'
# HTTP requests
-
gem "httparty", '~> 0.13.3'
+
gem 'httparty', '~> 0.13.3'
# Colored output to console
-
gem "colorize", '~> 0.7.0'
+
gem 'rainbow', '~> 2.1.0'
# GitLab settings
gem 'settingslogic', '~> 2.0.9'
···
gem 'version_sorter', '~> 2.0.0'
# Cache
-
gem "redis-rails", '~> 4.0.0'
+
gem 'redis-rails', '~> 4.0.0'
+
+
# Redis
+
gem 'redis', '~> 3.2'
+
gem 'connection_pool', '~> 2.0'
# Campfire integration
gem 'tinder', '~> 1.10.0'
···
gem 'hipchat', '~> 1.5.0'
# Flowdock integration
-
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
+
gem 'gitlab-flowdock-git-hook', '~> 1.0.1'
# Gemnasium integration
-
gem "gemnasium-gitlab-service", "~> 0.2"
+
gem 'gemnasium-gitlab-service', '~> 0.2'
# Slack integration
-
gem "slack-notifier", "~> 1.2.0"
+
gem 'slack-notifier', '~> 1.2.0'
# Asana integration
gem 'asana', '~> 0.4.0'
···
# d3
gem 'd3_rails', '~> 3.5.0'
-
#cal-heatmap
-
gem 'cal-heatmap-rails', '~> 3.5.0'
-
# underscore-rails
-
gem "underscore-rails", "~> 1.8.0"
+
gem 'underscore-rails', '~> 1.8.0'
# Sanitize user input
-
gem "sanitize", '~> 2.0'
+
gem 'sanitize', '~> 2.0'
gem 'babosa', '~> 1.0.2'
# Sanitizes SVG input
-
gem "loofah", "~> 2.0.3"
+
gem 'loofah', '~> 2.0.3'
+
+
# Working with license
+
gem 'licensee', '~> 8.0.0'
# Protect against bruteforcing
-
gem "rack-attack", '~> 4.3.1'
+
gem 'rack-attack', '~> 4.3.1'
# Ace editor
-
gem 'ace-rails-ap', '~> 2.0.1'
+
gem 'ace-rails-ap', '~> 4.0.2'
# Keyboard shortcuts
gem 'mousetrap-rails', '~> 1.4.6'
···
# Detect and convert string character encoding
gem 'charlock_holmes', '~> 0.7.3'
-
gem "sass-rails", '~> 5.0.0'
-
gem "coffee-rails", '~> 4.1.0'
-
gem "uglifier", '~> 2.7.2'
+
# Parse duration
+
gem 'chronic_duration', '~> 0.10.6'
+
+
gem 'sass-rails', '~> 5.0.0'
+
gem 'coffee-rails', '~> 4.1.0'
+
gem 'uglifier', '~> 2.7.2'
gem 'turbolinks', '~> 2.5.0'
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'addressable', '~> 2.3.8'
gem 'bootstrap-sass', '~> 3.3.0'
-
gem 'font-awesome-rails', '~> 4.2'
-
gem 'gitlab_emoji', '~> 0.3.0'
+
gem 'font-awesome-rails', '~> 4.6.1'
+
gem 'gemojione', '~> 3.0'
gem 'gon', '~> 6.0.1'
gem 'jquery-atwho-rails', '~> 1.3.2'
-
gem 'jquery-rails', '~> 4.0.0'
-
gem 'jquery-scrollto-rails', '~> 1.4.3'
+
gem 'jquery-rails', '~> 4.1.0'
gem 'jquery-ui-rails', '~> 5.0.0'
-
gem 'nprogress-rails', '~> 0.1.6.7'
-
gem 'raphael-rails', '~> 2.1.2'
-
gem 'request_store', '~> 1.2.0'
+
gem 'request_store', '~> 1.3.0'
gem 'select2-rails', '~> 3.5.9'
gem 'virtus', '~> 1.0.1'
gem 'net-ssh', '~> 3.0.1'
+
gem 'base32', '~> 0.3.0'
# Sentry integration
-
gem 'sentry-raven', '~> 0.15'
+
gem 'sentry-raven', '~> 1.1.0'
+
+
gem 'premailer-rails', '~> 1.9.0'
# Metrics
group :metrics do
gem 'allocations', '~> 1.0', require: false, platform: :mri
gem 'method_source', '~> 0.8', require: false
gem 'influxdb', '~> 0.2', require: false
-
gem 'connection_pool', '~> 2.0', require: false
end
group :development do
-
gem "foreman"
-
gem 'brakeman', '~> 3.1.0', require: false
+
gem 'foreman', '~> 0.78.0'
+
gem 'brakeman', '~> 3.3.0', require: false
-
gem "annotate", "~> 2.6.0"
-
gem "letter_opener", '~> 1.1.2'
-
gem 'quiet_assets', '~> 1.0.2'
+
gem 'letter_opener_web', '~> 1.3.0'
gem 'rerun', '~> 0.11.0'
-
gem 'bullet', require: false
-
gem 'rblineprof', platform: :mri, require: false
+
gem 'bullet', '~> 5.0.0', require: false
+
gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
gem 'web-console', '~> 2.0'
# Better errors handler
···
gem 'binding_of_caller', '~> 0.7.2'
# Docs generator
-
gem "sdoc", '~> 0.3.20'
+
gem 'sdoc', '~> 0.3.20'
# thin instead webrick
-
gem 'thin', '~> 1.6.1'
+
gem 'thin', '~> 1.7.0'
end
group :development, :test do
-
gem 'byebug', platform: :mri
-
gem 'pry-rails'
+
gem 'byebug', '~> 8.2.1', platform: :mri
+
gem 'pry-rails', '~> 0.3.4'
gem 'awesome_print', '~> 1.2.0', require: false
gem 'fuubar', '~> 2.0.0'
-
gem 'database_cleaner', '~> 1.4.0'
-
gem 'factory_girl_rails', '~> 4.3.0'
-
gem 'rspec-rails', '~> 3.3.0'
-
gem 'spinach-rails', '~> 0.2.1'
+
gem 'database_cleaner', '~> 1.4.0'
+
gem 'factory_girl_rails', '~> 4.6.0'
+
gem 'rspec-rails', '~> 3.5.0'
+
gem 'rspec-retry', '~> 0.4.5'
+
gem 'spinach-rails', '~> 0.2.1'
+
gem 'spinach-rerun-reporter', '~> 0.0.2'
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
gem 'minitest', '~> 5.7.0'
···
# Generate Fake data
gem 'ffaker', '~> 2.0.0'
-
gem 'capybara', '~> 2.4.0'
+
gem 'capybara', '~> 2.6.2'
gem 'capybara-screenshot', '~> 1.0.0'
-
gem 'poltergeist', '~> 1.8.1'
+
gem 'poltergeist', '~> 1.9.0'
-
gem 'teaspoon', '~> 1.0.0'
+
gem 'teaspoon', '~> 1.1.0'
gem 'teaspoon-jasmine', '~> 2.2.0'
-
gem 'spring', '~> 1.3.6'
+
gem 'spring', '~> 1.7.0'
gem 'spring-commands-rspec', '~> 1.0.4'
-
gem 'spring-commands-spinach', '~> 1.0.0'
+
gem 'spring-commands-spinach', '~> 1.1.0'
gem 'spring-commands-teaspoon', '~> 0.0.2'
-
gem 'rubocop', '~> 0.35.0', require: false
-
gem 'coveralls', '~> 0.8.2', require: false
-
gem 'simplecov', '~> 0.10.0', require: false
-
gem 'flog', require: false
-
gem 'flay', require: false
-
gem 'bundler-audit', require: false
+
gem 'rubocop', '~> 0.41.2', require: false
+
gem 'rubocop-rspec', '~> 1.5.0', require: false
+
gem 'scss_lint', '~> 0.47.0', require: false
+
gem 'simplecov', '~> 0.11.0', require: false
+
gem 'flog', '~> 4.3.2', require: false
+
gem 'flay', '~> 2.6.1', require: false
+
gem 'bundler-audit', '~> 0.5.0', require: false
-
gem 'benchmark-ips', require: false
+
gem 'benchmark-ips', '~> 2.3.0', require: false
+
+
gem 'license_finder', '~> 2.1.0', require: false
+
gem 'knapsack', '~> 1.11.0'
end
group :test do
···
gem 'email_spec', '~> 1.6.0'
gem 'webmock', '~> 1.21.0'
gem 'test_after_commit', '~> 0.4.2'
-
gem 'sham_rack'
+
gem 'sham_rack', '~> 1.3.6'
end
group :production do
-
gem "gitlab_meta", '7.0'
+
gem 'gitlab_meta', '7.0'
end
-
gem "newrelic_rpm", '~> 3.14'
+
gem 'newrelic_rpm', '~> 3.14'
-
gem 'octokit', '~> 3.8.0'
+
gem 'octokit', '~> 4.3.0'
-
gem "mail_room", "~> 0.6.1"
+
gem 'mail_room', '~> 0.8'
gem 'email_reply_parser', '~> 0.5.8'
## CI
-
gem 'activerecord-deprecated_finders', '~> 1.0.3'
-
gem 'activerecord-session_store', '~> 0.1.0'
-
gem "nested_form", '~> 0.3.2'
+
gem 'activerecord-session_store', '~> 1.0.0'
+
gem 'nested_form', '~> 0.3.2'
# OAuth
-
gem 'oauth2', '~> 1.0.0'
+
gem 'oauth2', '~> 1.2.0'
# Soft deletion
-
gem "paranoia", "~> 2.0"
+
gem 'paranoia', '~> 2.0'
+
+
# Health check
+
gem 'health_check', '~> 2.1.0'
+
+
# System information
+
gem 'vmstat', '~> 2.1.1'
+
gem 'sys-filesystem', '~> 1.1.6'
gem "activerecord-nulldb-adapter"
+342 -402
pkgs/applications/version-management/gitlab/Gemfile.lock
···
GEM
remote: https://rubygems.org/
specs:
-
CFPropertyList (2.3.2)
-
RedCloth (4.2.9)
-
ace-rails-ap (2.0.1)
-
actionmailer (4.2.5.2)
-
actionpack (= 4.2.5.2)
-
actionview (= 4.2.5.2)
-
activejob (= 4.2.5.2)
+
RedCloth (4.3.2)
+
ace-rails-ap (4.0.2)
+
actionmailer (4.2.7)
+
actionpack (= 4.2.7)
+
actionview (= 4.2.7)
+
activejob (= 4.2.7)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
-
actionpack (4.2.5.2)
-
actionview (= 4.2.5.2)
-
activesupport (= 4.2.5.2)
+
actionpack (4.2.7)
+
actionview (= 4.2.7)
+
activesupport (= 4.2.7)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
-
actionview (4.2.5.2)
-
activesupport (= 4.2.5.2)
+
actionview (4.2.7)
+
activesupport (= 4.2.7)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
-
activejob (4.2.5.2)
-
activesupport (= 4.2.5.2)
+
activejob (4.2.7)
+
activesupport (= 4.2.7)
globalid (>= 0.3.0)
-
activemodel (4.2.5.2)
-
activesupport (= 4.2.5.2)
+
activemodel (4.2.7)
+
activesupport (= 4.2.7)
builder (~> 3.1)
-
activerecord (4.2.5.2)
-
activemodel (= 4.2.5.2)
-
activesupport (= 4.2.5.2)
+
activerecord (4.2.7)
+
activemodel (= 4.2.7)
+
activesupport (= 4.2.7)
arel (~> 6.0)
-
activerecord-deprecated_finders (1.0.4)
-
activerecord-nulldb-adapter (0.3.2)
+
activerecord-nulldb-adapter (0.3.3)
activerecord (>= 2.0.0)
-
activerecord-session_store (0.1.2)
-
actionpack (>= 4.0.0, < 5)
-
activerecord (>= 4.0.0, < 5)
-
railties (>= 4.0.0, < 5)
-
activesupport (4.2.5.2)
+
activerecord-session_store (1.0.0)
+
actionpack (>= 4.0, < 5.1)
+
activerecord (>= 4.0, < 5.1)
+
multi_json (~> 1.11, >= 1.11.2)
+
rack (>= 1.5.2, < 3)
+
railties (>= 4.0, < 5.1)
+
activesupport (4.2.7)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
···
after_commit_queue (1.3.0)
activerecord (>= 3.0)
akismet (2.0.0)
-
allocations (1.0.4)
-
annotate (2.6.10)
-
activerecord (>= 3.2, <= 4.3)
-
rake (~> 10.4)
+
allocations (1.0.5)
arel (6.0.3)
asana (0.4.0)
faraday (~> 0.9)
···
faraday_middleware-multi_json (~> 0.0)
oauth2 (~> 1.0)
asciidoctor (1.5.3)
-
ast (2.1.0)
-
astrolabe (1.3.1)
-
parser (~> 2.2)
-
attr_encrypted (1.3.4)
-
encryptor (>= 1.3.0)
+
ast (2.3.0)
+
attr_encrypted (3.0.1)
+
encryptor (~> 3.0.0)
attr_required (1.0.0)
autoprefixer-rails (6.2.3)
execjs
···
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
+
azure (0.7.5)
+
addressable (~> 2.3)
+
azure-core (~> 0.1)
+
faraday (~> 0.9)
+
faraday_middleware (~> 0.10)
+
json (~> 1.8)
+
mime-types (>= 1, < 3.0)
+
nokogiri (~> 1.6)
+
systemu (~> 2.6)
+
thor (~> 0.19)
+
uuid (~> 2.0)
+
azure-core (0.1.2)
+
faraday (~> 0.9)
+
faraday_middleware (~> 0.10)
+
nokogiri (~> 1.6)
babosa (1.0.2)
-
bcrypt (3.1.10)
+
base32 (0.3.2)
+
bcrypt (3.1.11)
benchmark-ips (2.3.0)
better_errors (1.0.1)
coderay (>= 1.0.0)
···
bootstrap-sass (3.3.6)
autoprefixer-rails (>= 5.2.1)
sass (>= 3.3.4)
-
brakeman (3.1.4)
-
erubis (~> 2.6)
-
fastercsv (~> 1.5)
-
haml (>= 3.0, < 5.0)
-
highline (>= 1.6.20, < 2.0)
-
multi_json (~> 1.2)
-
ruby2ruby (>= 2.1.1, < 2.3.0)
-
ruby_parser (~> 3.7.0)
-
safe_yaml (>= 1.0)
-
sass (~> 3.0)
-
slim (>= 1.3.6, < 4.0)
-
terminal-table (~> 1.4)
-
browser (1.0.1)
+
brakeman (3.3.2)
+
browser (2.2.0)
builder (3.2.2)
-
bullet (4.14.10)
+
bullet (5.0.0)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.9.0)
-
bundler-audit (0.4.0)
+
bundler-audit (0.5.0)
bundler (~> 1.2)
thor (~> 0.18)
byebug (8.2.1)
-
cal-heatmap-rails (3.5.1)
-
capybara (2.4.4)
+
capybara (2.6.2)
+
addressable
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
···
capybara-screenshot (1.0.11)
capybara (>= 1.0, < 3)
launchy
-
carrierwave (0.9.0)
+
carrierwave (0.10.0)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
+
mime-types (>= 1.16)
cause (0.1)
charlock_holmes (0.7.3)
+
chronic_duration (0.10.6)
+
numerizer (~> 0.1.1)
chunky_png (1.3.5)
cliver (0.3.2)
coderay (1.1.0)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
-
coffee-rails (4.1.0)
+
coffee-rails (4.1.1)
coffee-script (>= 2.2.0)
-
railties (>= 4.0.0, < 5.0)
+
railties (>= 4.0.0, < 5.1.x)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.10.0)
colorize (0.7.7)
-
concurrent-ruby (1.0.0)
+
concurrent-ruby (1.0.2)
connection_pool (2.2.0)
-
coveralls (0.8.9)
-
json (~> 1.8)
-
rest-client (>= 1.6.8, < 2)
-
simplecov (~> 0.10.0)
-
term-ansicolor (~> 1.3)
-
thor (~> 0.19.1)
-
tins (~> 1.6.0)
crack (0.4.3)
safe_yaml (~> 1.0.0)
creole (0.5.0)
+
css_parser (1.4.1)
+
addressable
d3_rails (3.5.11)
railties (>= 3.1.0)
daemons (1.2.3)
···
activerecord (>= 3.2.0, < 5.0)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
-
devise (3.5.4)
+
devise (4.1.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
-
railties (>= 3.2.6, < 5)
+
railties (>= 4.1.0, < 5.1)
responders
-
thread_safe (~> 0.1)
warden (~> 1.2.3)
-
devise-async (0.9.0)
-
devise (~> 3.2)
-
devise-two-factor (2.0.1)
+
devise-two-factor (3.0.0)
activesupport
-
attr_encrypted (~> 1.3.2)
-
devise (~> 3.5.0)
+
attr_encrypted (>= 1.3, < 4, != 2)
+
devise (~> 4.0)
railties
-
rotp (~> 2)
+
rotp (~> 2.0)
diff-lcs (1.2.5)
diffy (3.0.7)
docile (1.1.5)
-
domain_name (0.5.25)
-
unf (>= 0.0.5, < 1.0.0)
-
doorkeeper (2.2.2)
-
railties (>= 3.2)
+
doorkeeper (4.0.0)
+
railties (>= 4.2)
dropzonejs-rails (0.7.2)
rails (> 3.1)
email_reply_parser (0.5.8)
email_spec (1.6.0)
launchy (~> 2.1)
mail (~> 2.2)
-
encryptor (1.3.0)
+
encryptor (3.0.0)
equalizer (0.0.11)
erubis (2.7.0)
-
escape_utils (1.1.0)
+
escape_utils (1.1.1)
eventmachine (1.0.8)
-
excon (0.45.4)
+
excon (0.49.0)
execjs (2.6.0)
expression_parser (0.9.0)
-
factory_girl (4.3.0)
+
factory_girl (4.5.0)
activesupport (>= 3.0.0)
-
factory_girl_rails (4.3.0)
-
factory_girl (~> 4.3.0)
+
factory_girl_rails (4.6.0)
+
factory_girl (~> 4.5.0)
railties (>= 3.0.0)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
···
faraday_middleware-multi_json (0.0.6)
faraday_middleware
multi_json
-
fastercsv (1.5.5)
ffaker (2.0.0)
ffi (1.9.10)
-
fission (0.5.0)
-
CFPropertyList (~> 2.2)
flay (2.6.1)
ruby_parser (~> 3.0)
sexp_processor (~> 4.0)
···
flowdock (0.7.1)
httparty (~> 0.7)
multi_json
-
fog (1.36.0)
-
fog-aliyun (>= 0.1.0)
-
fog-atmos
-
fog-aws (>= 0.6.0)
-
fog-brightbox (~> 0.4)
-
fog-core (~> 1.32)
-
fog-dynect (~> 0.0.2)
-
fog-ecloud (~> 0.1)
-
fog-google (<= 0.1.0)
-
fog-json
-
fog-local
-
fog-powerdns (>= 0.1.1)
-
fog-profitbricks
-
fog-radosgw (>= 0.0.2)
-
fog-riakcs
-
fog-sakuracloud (>= 0.0.4)
-
fog-serverlove
-
fog-softlayer
-
fog-storm_on_demand
-
fog-terremark
-
fog-vmfusion
-
fog-voxel
-
fog-xenserver
-
fog-xml (~> 0.1.1)
-
ipaddress (~> 0.5)
-
nokogiri (~> 1.5, >= 1.5.11)
-
fog-aliyun (0.1.0)
+
fog-aws (0.9.2)
fog-core (~> 1.27)
fog-json (~> 1.0)
+
fog-xml (~> 0.1)
ipaddress (~> 0.8)
-
xml-simple (~> 1.1)
-
fog-atmos (0.1.0)
-
fog-core
-
fog-xml
-
fog-aws (0.8.1)
+
fog-azure (0.0.2)
+
azure (~> 0.6)
fog-core (~> 1.27)
fog-json (~> 1.0)
fog-xml (~> 0.1)
-
ipaddress (~> 0.8)
-
fog-brightbox (0.10.1)
-
fog-core (~> 1.22)
-
fog-json
-
inflecto (~> 0.0.2)
-
fog-core (1.35.0)
+
fog-core (1.40.0)
builder
-
excon (~> 0.45)
+
excon (~> 0.49)
formatador (~> 0.2)
-
fog-dynect (0.0.2)
-
fog-core
-
fog-json
-
fog-xml
-
fog-ecloud (0.3.0)
-
fog-core
-
fog-xml
-
fog-google (0.1.0)
+
fog-google (0.3.2)
fog-core
fog-json
fog-xml
fog-json (1.0.2)
fog-core (~> 1.0)
multi_json (~> 1.10)
-
fog-local (0.2.1)
+
fog-local (0.3.0)
fog-core (~> 1.27)
-
fog-powerdns (0.1.1)
-
fog-core (~> 1.27)
-
fog-json (~> 1.0)
-
fog-xml (~> 0.1)
-
fog-profitbricks (0.0.5)
-
fog-core
-
fog-xml
-
nokogiri
-
fog-radosgw (0.0.5)
-
fog-core (>= 1.21.0)
-
fog-json
-
fog-xml (>= 0.0.1)
-
fog-riakcs (0.1.0)
-
fog-core
-
fog-json
-
fog-xml
-
fog-sakuracloud (1.7.5)
-
fog-core
-
fog-json
-
fog-serverlove (0.1.2)
-
fog-core
-
fog-json
-
fog-softlayer (1.0.3)
-
fog-core
-
fog-json
-
fog-storm_on_demand (0.1.1)
-
fog-core
-
fog-json
-
fog-terremark (0.1.0)
-
fog-core
-
fog-xml
-
fog-vmfusion (0.1.0)
-
fission
-
fog-core
-
fog-voxel (0.1.0)
-
fog-core
-
fog-xml
-
fog-xenserver (0.2.2)
-
fog-core
-
fog-xml
+
fog-openstack (0.1.6)
+
fog-core (>= 1.39)
+
fog-json (>= 1.0)
+
ipaddress (>= 0.8)
+
fog-rackspace (0.1.1)
+
fog-core (>= 1.35)
+
fog-json (>= 1.0)
+
fog-xml (>= 0.1)
+
ipaddress (>= 0.8)
fog-xml (0.1.2)
fog-core
nokogiri (~> 1.5, >= 1.5.11)
-
font-awesome-rails (4.5.0.0)
-
railties (>= 3.2, < 5.0)
+
font-awesome-rails (4.6.1.0)
+
railties (>= 3.2, < 5.1)
foreman (0.78.0)
thor (~> 0.19.1)
formatador (0.2.5)
···
ruby-progressbar (~> 1.4)
gemnasium-gitlab-service (0.2.6)
rugged (~> 0.21)
-
gemojione (2.2.1)
+
gemojione (3.0.1)
json
get_process_mem (0.2.0)
gherkin-ruby (0.3.2)
-
github-linguist (4.7.5)
+
github-linguist (4.7.6)
charlock_holmes (~> 0.7.3)
escape_utils (~> 1.1.0)
mime-types (>= 1.19)
rugged (>= 0.23.0b)
-
github-markup (1.3.3)
+
github-markup (1.4.0)
gitlab-flowdock-git-hook (1.0.1)
flowdock (~> 0.7)
gitlab-grit (>= 2.4.1)
multi_json
-
gitlab-grit (2.7.3)
+
gitlab-grit (2.8.1)
charlock_holmes (~> 0.6)
diff-lcs (~> 1.1)
-
mime-types (~> 1.15)
+
mime-types (>= 1.16, < 3)
posix-spawn (~> 0.3)
-
gitlab_emoji (0.3.1)
-
gemojione (~> 2.2, >= 2.2.1)
-
gitlab_git (8.2.0)
+
gitlab_git (10.3.2)
activesupport (~> 4.0)
charlock_holmes (~> 0.7.3)
github-linguist (~> 4.7.0)
-
rugged (~> 0.24.0b13)
+
rugged (~> 0.24.0)
gitlab_meta (7.0)
gitlab_omniauth-ldap (1.2.1)
net-ldap (~> 0.9)
···
rubyntlm (~> 0.3)
globalid (0.3.6)
activesupport (>= 4.1.0)
-
gollum-grit_adapter (1.0.0)
+
gollum-grit_adapter (1.0.1)
gitlab-grit (~> 2.7, >= 2.7.1)
-
gollum-lib (4.1.0)
-
github-markup (~> 1.3.3)
+
gollum-lib (4.2.1)
+
github-markup (~> 1.4.0)
gollum-grit_adapter (~> 1.0)
nokogiri (~> 1.6.4)
-
rouge (~> 1.9)
+
rouge (~> 2.0)
sanitize (~> 2.1.0)
stringex (~> 2.5.1)
+
gollum-rugged_adapter (0.4.2)
+
mime-types (>= 1.15)
+
rugged (~> 0.24.0, >= 0.21.3)
gon (6.0.1)
actionpack (>= 3.0)
json
···
grape-entity (0.4.8)
activesupport
multi_json (>= 1.3.2)
-
haml (4.0.7)
+
hamlit (2.5.0)
+
temple (~> 0.7.6)
+
thor
tilt
-
haml-rails (0.9.0)
-
actionpack (>= 4.0.1)
-
activesupport (>= 4.0.1)
-
haml (>= 4.0.6, < 5.0)
-
html2haml (>= 1.0.1)
-
railties (>= 4.0.1)
hashie (3.4.3)
-
highline (1.7.8)
-
hike (1.2.3)
+
health_check (2.1.0)
+
rails (>= 4.0)
hipchat (1.5.2)
httparty
mimemagic
html-pipeline (1.11.0)
activesupport (>= 2)
nokogiri (~> 1.4)
-
html2haml (2.0.0)
-
erubis (~> 2.7.0)
-
haml (~> 4.0.0)
-
nokogiri (~> 1.6.0)
-
ruby_parser (~> 3.5)
-
http-cookie (1.0.2)
-
domain_name (~> 0.5)
+
htmlentities (4.3.4)
http_parser.rb (0.5.3)
httparty (0.13.7)
json (~> 1.8)
···
httpclient (2.7.0.1)
i18n (0.7.0)
ice_nine (0.11.1)
-
inflecto (0.0.2)
influxdb (0.2.3)
cause
json
-
ipaddress (0.8.2)
+
ipaddress (0.8.3)
jquery-atwho-rails (1.3.2)
-
jquery-rails (4.0.5)
-
rails-dom-testing (~> 1.0)
+
jquery-rails (4.1.1)
+
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
-
jquery-scrollto-rails (1.4.3)
-
railties (> 3.1, < 5.0)
jquery-turbolinks (2.1.0)
railties (>= 3.1.0)
turbolinks
jquery-ui-rails (5.0.5)
railties (>= 3.2.16)
json (1.8.3)
-
jwt (1.5.2)
-
kaminari (0.16.3)
+
jwt (1.5.4)
+
kaminari (0.17.0)
actionpack (>= 3.0.0)
activesupport (>= 3.0.0)
kgio (2.10.0)
+
knapsack (1.11.0)
+
rake
+
timecop (>= 0.1.0)
launchy (2.4.3)
addressable (~> 2.3)
-
letter_opener (1.1.2)
+
letter_opener (1.4.1)
launchy (~> 2.2)
+
letter_opener_web (1.3.0)
+
actionmailer (>= 3.2)
+
letter_opener (~> 1.0)
+
railties (>= 3.2)
+
license_finder (2.1.0)
+
bundler
+
httparty
+
rubyzip
+
thor
+
xml-simple
+
licensee (8.0.0)
+
rugged (>= 0.24b)
listen (3.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
···
nokogiri (>= 1.5.9)
macaddr (1.7.1)
systemu (~> 2.6.2)
-
mail (2.6.3)
-
mime-types (>= 1.16, < 3)
-
mail_room (0.6.1)
+
mail (2.6.4)
+
mime-types (>= 1.16, < 4)
+
mail_room (0.8.0)
method_source (0.8.2)
-
mime-types (1.25.1)
+
mime-types (2.99.2)
mimemagic (0.3.0)
mini_portile2 (2.0.0)
minitest (5.7.0)
mousetrap-rails (1.4.6)
-
multi_json (1.11.2)
+
multi_json (1.12.1)
multi_xml (0.5.5)
multipart-post (2.0.0)
mysql2 (0.3.20)
nested_form (0.3.2)
net-ldap (0.12.1)
net-ssh (3.0.1)
-
netrc (0.11.0)
newrelic_rpm (3.14.1.311)
nokogiri (1.6.7.2)
mini_portile2 (~> 2.0.0.rc2)
-
nprogress-rails (0.1.6.7)
+
numerizer (0.1.1)
oauth (0.4.7)
-
oauth2 (1.0.0)
+
oauth2 (1.2.0)
faraday (>= 0.8, < 0.10)
jwt (~> 1.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
-
rack (~> 1.2)
-
octokit (3.8.0)
-
sawyer (~> 0.6.0, >= 0.5.3)
+
rack (>= 1.2, < 3)
+
octokit (4.3.0)
+
sawyer (~> 0.7.0, >= 0.5.3)
omniauth (1.3.1)
hashie (>= 1.2, < 4)
rack (>= 1.0, < 3)
+
omniauth-auth0 (1.4.1)
+
omniauth-oauth2 (~> 1.1)
omniauth-azure-oauth2 (0.0.6)
jwt (~> 1.0)
omniauth (~> 1.0)
···
omniauth-gitlab (1.0.1)
omniauth (~> 1.0)
omniauth-oauth2 (~> 1.0)
-
omniauth-google-oauth2 (0.2.10)
+
omniauth-google-oauth2 (0.4.1)
addressable (~> 2.3)
jwt (~> 1.0)
multi_json (~> 1.3)
···
omniauth-oauth2 (1.3.1)
oauth2 (~> 1.0)
omniauth (~> 1.2)
-
omniauth-saml (1.4.2)
-
omniauth (~> 1.1)
-
ruby-saml (~> 1.1, >= 1.1.1)
+
omniauth-saml (1.6.0)
+
omniauth (~> 1.3)
+
ruby-saml (~> 1.3)
omniauth-shibboleth (1.2.1)
omniauth (>= 1.0.0)
omniauth-twitter (1.2.1)
···
orm_adapter (0.5.0)
paranoia (2.1.4)
activerecord (~> 4.0)
-
parser (2.2.3.0)
-
ast (>= 1.1, < 3.0)
+
parser (2.3.1.2)
+
ast (~> 2.2)
pg (0.18.4)
-
poltergeist (1.8.1)
+
pkg-config (1.1.7)
+
poltergeist (1.9.0)
capybara (~> 2.1)
cliver (~> 0.3.1)
multi_json (~> 1.0)
websocket-driver (>= 0.2.0)
posix-spawn (0.3.11)
powerpack (0.1.1)
+
premailer (1.8.6)
+
css_parser (>= 1.3.6)
+
htmlentities (>= 4.0.0)
+
premailer-rails (1.9.2)
+
actionmailer (>= 3, < 6)
+
premailer (~> 1.7, >= 1.7.9)
pry (0.10.3)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
···
pry-rails (0.3.4)
pry (>= 0.9.10)
pyu-ruby-sasl (0.0.3.3)
-
quiet_assets (1.0.3)
-
railties (>= 3.1, < 5.0)
rack (1.6.4)
rack-accept (0.4.5)
rack (>= 0.4)
···
rack
rack-test (0.6.3)
rack (>= 1.0)
-
rails (4.2.5.2)
-
actionmailer (= 4.2.5.2)
-
actionpack (= 4.2.5.2)
-
actionview (= 4.2.5.2)
-
activejob (= 4.2.5.2)
-
activemodel (= 4.2.5.2)
-
activerecord (= 4.2.5.2)
-
activesupport (= 4.2.5.2)
+
rails (4.2.7)
+
actionmailer (= 4.2.7)
+
actionpack (= 4.2.7)
+
actionview (= 4.2.7)
+
activejob (= 4.2.7)
+
activemodel (= 4.2.7)
+
activerecord (= 4.2.7)
+
activesupport (= 4.2.7)
bundler (>= 1.3.0, < 2.0)
-
railties (= 4.2.5.2)
+
railties (= 4.2.7)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
···
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.3)
loofah (~> 2.0)
-
railties (4.2.5.2)
-
actionpack (= 4.2.5.2)
-
activesupport (= 4.2.5.2)
+
railties (4.2.7)
+
actionpack (= 4.2.7)
+
activesupport (= 4.2.7)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
-
rainbow (2.0.0)
+
rainbow (2.1.0)
raindrops (0.15.0)
rake (10.5.0)
-
raphael-rails (2.1.2)
rb-fsevent (0.9.6)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
···
debugger-ruby_core_source (~> 1.3)
rdoc (3.12.2)
json (~> 1.4)
-
recaptcha (1.0.2)
+
recaptcha (3.0.0)
json
redcarpet (3.3.3)
redis (3.2.2)
···
redis-store (~> 1.1.0)
redis-store (1.1.7)
redis (>= 2.2)
-
request_store (1.2.1)
+
request_store (1.3.0)
rerun (0.11.0)
listen (~> 3.0)
responders (2.1.1)
railties (>= 4.2.0, < 5.1)
-
rest-client (1.8.0)
-
http-cookie (>= 1.0.2, < 2.0)
-
mime-types (>= 1.16, < 3.0)
-
netrc (~> 0.7)
-
rinku (1.7.3)
-
rotp (2.1.1)
-
rouge (1.10.1)
+
rinku (2.0.0)
+
rotp (2.1.2)
+
rouge (2.0.5)
rqrcode (0.7.0)
chunky_png
rqrcode-rails3 (0.1.7)
rqrcode (>= 0.4.2)
-
rspec (3.3.0)
-
rspec-core (~> 3.3.0)
-
rspec-expectations (~> 3.3.0)
-
rspec-mocks (~> 3.3.0)
-
rspec-core (3.3.2)
-
rspec-support (~> 3.3.0)
-
rspec-expectations (3.3.1)
+
rspec (3.5.0)
+
rspec-core (~> 3.5.0)
+
rspec-expectations (~> 3.5.0)
+
rspec-mocks (~> 3.5.0)
+
rspec-core (3.5.0)
+
rspec-support (~> 3.5.0)
+
rspec-expectations (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
-
rspec-support (~> 3.3.0)
-
rspec-mocks (3.3.2)
+
rspec-support (~> 3.5.0)
+
rspec-mocks (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
-
rspec-support (~> 3.3.0)
-
rspec-rails (3.3.3)
-
actionpack (>= 3.0, < 4.3)
-
activesupport (>= 3.0, < 4.3)
-
railties (>= 3.0, < 4.3)
-
rspec-core (~> 3.3.0)
-
rspec-expectations (~> 3.3.0)
-
rspec-mocks (~> 3.3.0)
-
rspec-support (~> 3.3.0)
-
rspec-support (3.3.0)
-
rubocop (0.35.1)
-
astrolabe (~> 1.3)
-
parser (>= 2.2.3.0, < 3.0)
+
rspec-support (~> 3.5.0)
+
rspec-rails (3.5.0)
+
actionpack (>= 3.0)
+
activesupport (>= 3.0)
+
railties (>= 3.0)
+
rspec-core (~> 3.5.0)
+
rspec-expectations (~> 3.5.0)
+
rspec-mocks (~> 3.5.0)
+
rspec-support (~> 3.5.0)
+
rspec-retry (0.4.5)
+
rspec-core
+
rspec-support (3.5.0)
+
rubocop (0.41.2)
+
parser (>= 2.3.1.1, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.7)
-
tins (<= 1.6.0)
+
unicode-display_width (~> 1.0, >= 1.0.1)
+
rubocop-rspec (1.5.0)
+
rubocop (>= 0.40.0)
ruby-fogbugz (0.2.1)
crack (~> 0.4)
-
ruby-progressbar (1.7.5)
-
ruby-saml (1.1.1)
+
ruby-progressbar (1.8.1)
+
ruby-saml (1.3.0)
nokogiri (>= 1.5.10)
-
uuid (~> 2.3)
-
ruby2ruby (2.2.0)
-
ruby_parser (~> 3.1)
-
sexp_processor (~> 4.0)
-
ruby_parser (3.7.2)
+
ruby_parser (3.8.2)
sexp_processor (~> 4.1)
rubyntlm (0.5.2)
rubypants (0.2.0)
+
rubyzip (1.2.0)
rufus-scheduler (3.1.10)
-
rugged (0.24.0b13)
+
rugged (0.24.0)
safe_yaml (1.0.4)
sanitize (2.1.0)
nokogiri (>= 1.4.4)
-
sass (3.4.20)
-
sass-rails (5.0.4)
-
railties (>= 4.0.0, < 5.0)
+
sass (3.4.22)
+
sass-rails (5.0.5)
+
railties (>= 4.0.0, < 6)
sass (~> 3.1)
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
-
sawyer (0.6.0)
-
addressable (~> 2.3.5)
+
sawyer (0.7.0)
+
addressable (>= 2.3.5, < 2.5)
faraday (~> 0.8, < 0.10)
+
scss_lint (0.47.1)
+
rake (>= 0.9, < 11)
+
sass (~> 3.4.15)
sdoc (0.3.20)
json (>= 1.1.3)
rdoc (~> 3.10)
-
seed-fu (2.3.5)
-
activerecord (>= 3.1, < 4.3)
-
activesupport (>= 3.1, < 4.3)
+
seed-fu (2.3.6)
+
activerecord (>= 3.1)
+
activesupport (>= 3.1)
select2-rails (3.5.9.3)
thor (~> 0.14)
-
sentry-raven (0.15.6)
+
sentry-raven (1.1.0)
faraday (>= 0.7.6)
settingslogic (2.0.9)
-
sexp_processor (4.6.0)
+
sexp_processor (4.7.0)
sham_rack (1.3.6)
rack
shoulda-matchers (2.8.0)
activesupport (>= 3.0.0)
-
sidekiq (4.0.1)
+
sidekiq (4.1.4)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
-
json (~> 1.0)
redis (~> 3.2, >= 3.2.1)
+
sinatra (>= 1.4.7)
sidekiq-cron (0.4.0)
redis-namespace (>= 1.5.2)
rufus-scheduler (>= 2.0.24)
sidekiq (>= 4.0.0)
simple_oauth (0.1.9)
-
simplecov (0.10.0)
+
simplecov (0.11.2)
docile (~> 1.1.0)
json (~> 1.8)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
-
sinatra (1.4.6)
-
rack (~> 1.4)
+
sinatra (1.4.7)
+
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
six (0.2.0)
slack-notifier (1.2.1)
-
slim (3.0.6)
-
temple (~> 0.7.3)
-
tilt (>= 1.3.3, < 2.1)
slop (3.6.0)
spinach (0.8.10)
colorize
···
capybara (>= 2.0.0)
railties (>= 3)
spinach (>= 0.4)
-
spring (1.3.6)
+
spinach-rerun-reporter (0.0.2)
+
spinach (~> 0.8)
+
spring (1.7.2)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
-
spring-commands-spinach (1.0.0)
+
spring-commands-spinach (1.1.0)
spring (>= 0.9.1)
spring-commands-teaspoon (0.0.2)
spring (>= 0.9.1)
-
sprockets (2.12.4)
-
hike (~> 1.2)
-
multi_json (~> 1.0)
-
rack (~> 1.0)
-
tilt (~> 1.1, != 1.3.0)
-
sprockets-rails (2.3.3)
-
actionpack (>= 3.0)
-
activesupport (>= 3.0)
-
sprockets (>= 2.8, < 4.0)
+
sprockets (3.6.3)
+
concurrent-ruby (~> 1.0)
+
rack (> 1, < 3)
+
sprockets-rails (3.1.1)
+
actionpack (>= 4.0)
+
activesupport (>= 4.0)
+
sprockets (>= 3.0.0)
state_machines (0.4.0)
-
state_machines-activemodel (0.3.0)
-
activemodel (~> 4.1)
+
state_machines-activemodel (0.4.0)
+
activemodel (>= 4.1, < 5.1)
state_machines (>= 0.4.0)
-
state_machines-activerecord (0.3.0)
-
activerecord (~> 4.1)
+
state_machines-activerecord (0.4.0)
+
activerecord (>= 4.1, < 5.1)
state_machines-activemodel (>= 0.3.0)
stringex (2.5.2)
+
sys-filesystem (1.1.6)
+
ffi
systemu (2.6.5)
task_list (1.0.2)
html-pipeline
-
teaspoon (1.0.2)
-
railties (>= 3.2.5, < 5)
+
teaspoon (1.1.5)
+
railties (>= 3.2.5, < 6)
teaspoon-jasmine (2.2.0)
teaspoon (>= 1.0.0)
-
temple (0.7.6)
-
term-ansicolor (1.3.2)
-
tins (~> 1.0)
-
terminal-table (1.5.2)
+
temple (0.7.7)
test_after_commit (0.4.2)
activerecord (>= 3.2)
-
thin (1.6.4)
+
thin (1.7.0)
daemons (~> 1.0, >= 1.0.9)
eventmachine (~> 1.0, >= 1.0.4)
-
rack (~> 1.0)
+
rack (>= 1, < 3)
thor (0.19.1)
thread_safe (0.3.5)
-
tilt (1.4.1)
+
tilt (2.0.5)
+
timecop (0.8.1)
timfel-krb5-auth (0.8.3)
tinder (1.10.1)
eventmachine (~> 1.0)
···
mime-types
multi_json (~> 1.7)
twitter-stream (~> 0.1)
-
tins (1.6.0)
turbolinks (2.5.3)
coffee-rails
twitter-stream (0.1.16)
···
simple_oauth (~> 0.1.4)
tzinfo (1.2.2)
thread_safe (~> 0.1)
+
u2f (0.2.1)
uglifier (2.7.2)
execjs (>= 0.3.0)
json (>= 1.8.0)
underscore-rails (1.8.3)
unf (0.1.4)
unf_ext
-
unf_ext (0.0.7.1)
-
unicorn (4.8.3)
+
unf_ext (0.0.7.2)
+
unicode-display_width (1.1.0)
+
unicorn (4.9.0)
kgio (~> 2.6)
rack
raindrops (~> 0.7)
···
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
-
warden (1.2.4)
+
vmstat (2.1.1)
+
warden (1.2.6)
rack (>= 1.0)
-
web-console (2.2.1)
+
web-console (2.3.0)
activemodel (>= 4.0)
binding_of_caller (>= 0.7.2)
railties (>= 4.0)
···
ruby
DEPENDENCIES
-
RedCloth (~> 4.2.9)
-
ace-rails-ap (~> 2.0.1)
-
activerecord-deprecated_finders (~> 1.0.3)
+
RedCloth (~> 4.3.2)
+
ace-rails-ap (~> 4.0.2)
activerecord-nulldb-adapter
-
activerecord-session_store (~> 0.1.0)
+
activerecord-session_store (~> 1.0.0)
acts-as-taggable-on (~> 3.4)
addressable (~> 2.3.8)
-
after_commit_queue
+
after_commit_queue (~> 1.3.0)
akismet (~> 2.0)
allocations (~> 1.0)
-
annotate (~> 2.6.0)
asana (~> 0.4.0)
asciidoctor (~> 1.5.2)
-
attr_encrypted (~> 1.3.4)
+
attr_encrypted (~> 3.0.0)
awesome_print (~> 1.2.0)
babosa (~> 1.0.2)
-
benchmark-ips
+
base32 (~> 0.3.0)
+
benchmark-ips (~> 2.3.0)
better_errors (~> 1.0.1)
binding_of_caller (~> 0.7.2)
bootstrap-sass (~> 3.3.0)
-
brakeman (~> 3.1.0)
-
browser (~> 1.0.0)
-
bullet
-
bundler-audit
-
byebug
-
cal-heatmap-rails (~> 3.5.0)
-
capybara (~> 2.4.0)
+
brakeman (~> 3.3.0)
+
browser (~> 2.2)
+
bullet (~> 5.0.0)
+
bundler-audit (~> 0.5.0)
+
byebug (~> 8.2.1)
+
capybara (~> 2.6.2)
capybara-screenshot (~> 1.0.0)
-
carrierwave (~> 0.9.0)
+
carrierwave (~> 0.10.0)
charlock_holmes (~> 0.7.3)
+
chronic_duration (~> 0.10.6)
coffee-rails (~> 4.1.0)
-
colorize (~> 0.7.0)
connection_pool (~> 2.0)
-
coveralls (~> 0.8.2)
creole (~> 0.5.0)
d3_rails (~> 3.5.0)
database_cleaner (~> 1.4.0)
default_value_for (~> 3.0.0)
-
devise (~> 3.5.4)
-
devise-async (~> 0.9.0)
-
devise-two-factor (~> 2.0.0)
+
devise (~> 4.0)
+
devise-two-factor (~> 3.0.0)
diffy (~> 3.0.3)
-
doorkeeper (~> 2.2.0)
+
doorkeeper (~> 4.0)
dropzonejs-rails (~> 0.7.1)
email_reply_parser (~> 0.5.8)
email_spec (~> 1.6.0)
-
factory_girl_rails (~> 4.3.0)
+
factory_girl_rails (~> 4.6.0)
ffaker (~> 2.0.0)
-
flay
-
flog
-
fog (~> 1.36.0)
-
font-awesome-rails (~> 4.2)
-
foreman
+
flay (~> 2.6.1)
+
flog (~> 4.3.2)
+
fog-aws (~> 0.9)
+
fog-azure (~> 0.0)
+
fog-core (~> 1.40)
+
fog-google (~> 0.3)
+
fog-local (~> 0.3)
+
fog-openstack (~> 0.1)
+
fog-rackspace (~> 0.1.1)
+
font-awesome-rails (~> 4.6.1)
+
foreman (~> 0.78.0)
fuubar (~> 2.0.0)
gemnasium-gitlab-service (~> 0.2)
+
gemojione (~> 3.0)
github-linguist (~> 4.7.0)
-
github-markup (~> 1.3.1)
+
github-markup (~> 1.4)
gitlab-flowdock-git-hook (~> 1.0.1)
-
gitlab_emoji (~> 0.3.0)
-
gitlab_git (~> 8.2)
+
gitlab_git (~> 10.3.2)
gitlab_meta (= 7.0)
gitlab_omniauth-ldap (~> 1.2.1)
-
gollum-lib (~> 4.1.0)
+
gollum-lib (~> 4.2)
+
gollum-rugged_adapter (~> 0.4.2)
gon (~> 6.0.1)
grape (~> 0.13.0)
grape-entity (~> 0.4.2)
-
haml-rails (~> 0.9.0)
+
hamlit (~> 2.5)
+
health_check (~> 2.1.0)
hipchat (~> 1.5.0)
html-pipeline (~> 1.11.0)
httparty (~> 0.13.3)
influxdb (~> 0.2)
jquery-atwho-rails (~> 1.3.2)
-
jquery-rails (~> 4.0.0)
-
jquery-scrollto-rails (~> 1.4.3)
+
jquery-rails (~> 4.1.0)
jquery-turbolinks (~> 2.1.0)
jquery-ui-rails (~> 5.0.0)
-
kaminari (~> 0.16.3)
-
letter_opener (~> 1.1.2)
+
jwt
+
kaminari (~> 0.17.0)
+
knapsack (~> 1.11.0)
+
letter_opener_web (~> 1.3.0)
+
license_finder (~> 2.1.0)
+
licensee (~> 8.0.0)
loofah (~> 2.0.3)
-
mail_room (~> 0.6.1)
+
mail_room (~> 0.8)
method_source (~> 0.8)
minitest (~> 5.7.0)
mousetrap-rails (~> 1.4.6)
···
nested_form (~> 0.3.2)
net-ssh (~> 3.0.1)
newrelic_rpm (~> 3.14)
-
nokogiri (~> 1.6.7, >= 1.6.7.2)
-
nprogress-rails (~> 0.1.6.7)
-
oauth2 (~> 1.0.0)
-
octokit (~> 3.8.0)
+
nokogiri (~> 1.6.7, >= 1.6.7.2, < 1.6.8)
+
oauth2 (~> 1.2.0)
+
octokit (~> 4.3.0)
omniauth (~> 1.3.1)
+
omniauth-auth0 (~> 1.4.1)
omniauth-azure-oauth2 (~> 0.0.6)
omniauth-bitbucket (~> 0.0.2)
omniauth-cas3 (~> 1.1.2)
omniauth-facebook (~> 3.0.0)
omniauth-github (~> 1.1.1)
omniauth-gitlab (~> 1.0.0)
-
omniauth-google-oauth2 (~> 0.2.0)
+
omniauth-google-oauth2 (~> 0.4.1)
omniauth-kerberos (~> 0.3.0)
-
omniauth-saml (~> 1.4.2)
+
omniauth-saml (~> 1.6.0)
omniauth-shibboleth (~> 1.2.0)
omniauth-twitter (~> 1.2.0)
omniauth_crowd (~> 2.2.0)
org-ruby (~> 0.9.12)
paranoia (~> 2.0)
pg (~> 0.18.2)
-
poltergeist (~> 1.8.1)
-
pry-rails
-
quiet_assets (~> 1.0.2)
+
poltergeist (~> 1.9.0)
+
premailer-rails (~> 1.9.0)
+
pry-rails (~> 0.3.4)
rack-attack (~> 4.3.1)
rack-cors (~> 0.4.0)
rack-oauth2 (~> 1.2.1)
-
rails (= 4.2.5.2)
+
rails (= 4.2.7)
rails-deprecated_sanitizer (~> 1.0.3)
-
raphael-rails (~> 2.1.2)
-
rblineprof
+
rainbow (~> 2.1.0)
+
rblineprof (~> 0.3.6)
rdoc (~> 3.6)
-
recaptcha
+
recaptcha (~> 3.0)
redcarpet (~> 3.3.3)
-
redis-namespace
+
redis (~> 3.2)
+
redis-namespace (~> 1.5.2)
redis-rails (~> 4.0.0)
-
request_store (~> 1.2.0)
+
request_store (~> 1.3.0)
rerun (~> 0.11.0)
responders (~> 2.0)
-
rouge (~> 1.10.1)
+
rouge (~> 2.0)
rqrcode-rails3 (~> 0.1.7)
-
rspec-rails (~> 3.3.0)
-
rubocop (~> 0.35.0)
+
rspec-rails (~> 3.5.0)
+
rspec-retry (~> 0.4.5)
+
rubocop (~> 0.41.2)
+
rubocop-rspec (~> 1.5.0)
ruby-fogbugz (~> 0.2.1)
sanitize (~> 2.0)
sass-rails (~> 5.0.0)
+
scss_lint (~> 0.47.0)
sdoc (~> 0.3.20)
seed-fu (~> 2.3.5)
select2-rails (~> 3.5.9)
-
sentry-raven (~> 0.15)
+
sentry-raven (~> 1.1.0)
settingslogic (~> 2.0.9)
-
sham_rack
+
sham_rack (~> 1.3.6)
shoulda-matchers (~> 2.8.0)
sidekiq (~> 4.0)
sidekiq-cron (~> 0.4.0)
-
simplecov (~> 0.10.0)
+
simplecov (~> 0.11.0)
sinatra (~> 1.4.4)
six (~> 0.2.0)
slack-notifier (~> 1.2.0)
spinach-rails (~> 0.2.1)
-
spring (~> 1.3.6)
+
spinach-rerun-reporter (~> 0.0.2)
+
spring (~> 1.7.0)
spring-commands-rspec (~> 1.0.4)
-
spring-commands-spinach (~> 1.0.0)
+
spring-commands-spinach (~> 1.1.0)
spring-commands-teaspoon (~> 0.0.2)
-
sprockets (~> 2.12.3)
-
state_machines-activerecord (~> 0.3.0)
+
sprockets (~> 3.6.0)
+
state_machines-activerecord (~> 0.4.0)
+
sys-filesystem (~> 1.1.6)
task_list (~> 1.0.2)
-
teaspoon (~> 1.0.0)
+
teaspoon (~> 1.1.0)
teaspoon-jasmine (~> 2.2.0)
test_after_commit (~> 0.4.2)
-
thin (~> 1.6.1)
+
thin (~> 1.7.0)
tinder (~> 1.10.0)
turbolinks (~> 2.5.0)
+
u2f (~> 0.2.1)
uglifier (~> 2.7.2)
underscore-rails (~> 1.8.0)
unf (~> 0.1.4)
-
unicorn (~> 4.8.2)
+
unicorn (~> 4.9.0)
unicorn-worker-killer (~> 0.4.2)
version_sorter (~> 2.0.0)
virtus (~> 1.0.1)
+
vmstat (~> 2.1.1)
web-console (~> 2.0)
webmock (~> 1.21.0)
wikicloth (= 0.8.1)
BUNDLED WITH
-
1.11.2
+
1.12.5
+6 -6
pkgs/applications/version-management/gitlab/default.nix
···
stdenv.mkDerivation rec {
name = "gitlab-${version}";
-
version = "8.5.12";
+
version = "8.10.3";
-
buildInputs = [ ruby bundler tzdata git nodejs procps ];
+
buildInputs = [ env ruby bundler tzdata git nodejs procps ];
src = fetchFromGitHub {
owner = "gitlabhq";
repo = "gitlabhq";
rev = "v${version}";
-
sha256 = "144i97ywnr0xgm7gnwnwiy7kk5z1d71ccawl8qdhapz0705993l8";
+
sha256 = "0fhnwrgrpccc2j9wgdmwwi9h1ym3ll97lhmddq0xfzivc302ri3w";
};
patches = [
./remove-hardcoded-locations.patch
-
./disable-dump-schema-after-migration.patch
./nulladapter.patch
];
···
'';
buildPhase = ''
-
export GEM_HOME=${env}/${ruby.gemPath}
mv config/gitlab.yml.example config/gitlab.yml
-
GITLAB_DATABASE_ADAPTER=nulldb bundle exec rake assets:precompile RAILS_ENV=production
+
GITLAB_DATABASE_ADAPTER=nulldb \
+
SKIP_STORAGE_VALIDATION=true \
+
rake assets:precompile RAILS_ENV=production
mv config/gitlab.yml config/gitlab.yml.example
mv config config.dist
'';
-11
pkgs/applications/version-management/gitlab/disable-dump-schema-after-migration.patch
···
-
diff --git a/config/environments/production.rb b/config/environments/production.rb
-
index 3316ece..d60566c 100644
-
--- a/config/environments/production.rb
-
+++ b/config/environments/production.rb
-
@@ -77,4 +77,6 @@ Gitlab::Application.configure do
-
config.eager_load = true
-
-
config.allow_concurrency = false
-
+
-
+ config.active_record.dump_schema_after_migration = false
-
end
+410 -635
pkgs/applications/version-management/gitlab/gemset.nix
···
ace-rails-ap = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "082n12rkd9j7d89030nhmi4fx1gqaf13knps6cknsyvwix7fryvv";
+
sha256 = "1y1xdjmdb7fg1w0ym7xizpfvll8bicnhli2s65bzvpk3zp7h8qmi";
type = "gem";
};
-
version = "2.0.1";
+
version = "4.0.2";
};
actionmailer = {
-
dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5";
+
sha256 = "1fhq3dg3icbi1vrz55xwalzn4wpbrdgm41ma1jkrgbwl4qqqrrsq";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
actionpack = {
-
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf";
+
sha256 = "0swhxylh0mrq7b8am3b90xqnwldvfn52jd2m9zmc27r8hvc0h2fp";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
actionview = {
-
dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635";
+
sha256 = "0wsxa7zkvacmv4vf528nmid2v5smqy54vh17srj3997bgjyr68f3";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
activejob = {
-
dependencies = ["activesupport" "globalid"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026";
+
sha256 = "19bf6fpl1vw6qnpsqcvdhljrvp67a7j72x1ydz4rj2s7g4xbjas3";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
activemodel = {
-
dependencies = ["activesupport" "builder"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962";
+
sha256 = "0v991wipszd5ly1fba8qzfyg86r06k8l8y353dv7438sngwd7slk";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
activerecord = {
-
dependencies = ["activemodel" "activesupport" "arel"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2";
-
type = "gem";
-
};
-
version = "4.2.5.2";
-
};
-
activerecord-deprecated_finders = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m";
+
sha256 = "0m04absj00hxj4q527ng0w0ydgbfc1cgxlcksjixgnx4j1visibn";
type = "gem";
};
-
version = "1.0.4";
+
version = "4.2.7";
};
activerecord-nulldb-adapter = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1ym3paxp5lqr2kr4hkqj6xxqvgl57fv8jqhvgjfxb9lk7k5jlfmp";
+
sha256 = "1m8jlbzmwc1cx4fb54m9adw962anpz5cazbyirb4qs5brxma63fp";
type = "gem";
};
-
version = "0.3.2";
+
version = "0.3.3";
};
activerecord-session_store = {
-
dependencies = ["actionpack" "activerecord" "railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1rp5q0q5i5syfgw7qpiq3a42x13p7myyv1c5hmnczpdlh57axs3p";
+
sha256 = "1b8q5p7wl0xpmlcjig2im1yryzj4aipvw7zq3z1ig8fdg4m2m943";
type = "gem";
};
-
version = "0.1.2";
+
version = "1.0.0";
};
activesupport = {
-
dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031";
+
sha256 = "1pm0gw4ykq9137n8i815vayyah0mk2m920clgg02jr3l23w6gsnj";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
acts-as-taggable-on = {
dependencies = ["activerecord"];
···
allocations = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0iynf7gkbnbr5mgl2wgbgvxmjdiawh7ywwbnyjm94bj3pkybzgkc";
+
sha256 = "1y7z66lpzabyvviphk1fnzvrj5vhv7v9vppcnkrf0n5wh8qwx2zi";
type = "gem";
};
-
version = "1.0.4";
-
};
-
annotate = {
-
dependencies = ["activerecord" "rake"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg";
-
type = "gem";
-
};
-
version = "2.6.10";
+
version = "1.0.5";
};
arel = {
source = {
···
ast = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk";
-
type = "gem";
-
};
-
version = "2.1.0";
-
};
-
astrolabe = {
-
dependencies = ["parser"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7";
+
sha256 = "0pp82blr5fakdk27d1d21xq9zchzb6vmyb1zcsl520s3ygvprn8m";
type = "gem";
};
-
version = "1.3.1";
+
version = "2.3.0";
};
attr_encrypted = {
-
dependencies = ["encryptor"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p";
+
sha256 = "0xqb753sjgwxpb2s375j8nkrk8kjhjijzywyl6vps5r3nbs0l51k";
type = "gem";
};
-
version = "1.3.4";
+
version = "3.0.1";
};
attr_required = {
source = {
···
};
version = "0.1.1";
};
+
azure = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1vfnx47ihizg1d6szdyf48xfdghjfk66k4r39z6b0gl5i40vcm8v";
+
type = "gem";
+
};
+
version = "0.7.5";
+
};
+
azure-core = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "016krlc7wfg27zgg5i6j0pys32ra8jszgls8wz4dz64h2zf1kd7a";
+
type = "gem";
+
};
+
version = "0.1.2";
+
};
babosa = {
source = {
remotes = ["https://rubygems.org"];
···
};
version = "1.0.2";
};
+
base32 = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0b7y8sy6j9v1lvfzd4va88k5vg9yh0xcjzzn3llcw7yxqlcrnbjk";
+
type = "gem";
+
};
+
version = "0.3.2";
+
};
bcrypt = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6";
+
sha256 = "1d254sdhdj6mzak3fb5x3jam8b94pvl1srladvs53j05a89j5z50";
type = "gem";
};
-
version = "3.1.10";
+
version = "3.1.11";
};
benchmark-ips = {
source = {
···
version = "3.3.6";
};
brakeman = {
-
dependencies = ["erubis" "fastercsv" "haml" "highline" "multi_json" "ruby2ruby" "ruby_parser" "safe_yaml" "sass" "slim" "terminal-table"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "15v13yizpvp1rm86raqggmsmm51v6p8fqw3pfgi6xpvx1ba06cfm";
+
sha256 = "0v2yllqcn2zyi60ahgi8ds8pix6a82703ln25p9pkm1bvrwj3fsq";
type = "gem";
};
-
version = "3.1.4";
+
version = "3.3.2";
};
browser = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "01bkb64w2ld2q5r3chc4f6spbjrmginyg8wlzg130zmx2z4jia2h";
+
sha256 = "055r4wyc3z61r7mg2bgqpzabpkg8db2q5rciwfx9lwfyhjx19pbv";
type = "gem";
};
-
version = "1.0.1";
+
version = "2.2.0";
};
builder = {
source = {
···
version = "3.2.2";
};
bullet = {
-
dependencies = ["activesupport" "uniform_notifier"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1h3iaflcz5a1xr32bdb8sk4nx06yhh5d8y7w294w49xigfv4hzj3";
+
sha256 = "14i3ci990sygxzdsy9jsgzfs5zkzgx6fd56i0d58s77wmn2myham";
type = "gem";
};
-
version = "4.14.10";
+
version = "5.0.0";
};
bundler-audit = {
-
dependencies = ["thor"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0msv3k2277y7al5lbnw7q9lmb5fnrscpkmsb36wpn189pdq0akfv";
+
sha256 = "1gr7k6m9fda7m66irxzydm8v9xbmlryjj65cagwm1zyi5f317srb";
type = "gem";
};
-
version = "0.4.0";
+
version = "0.5.0";
};
byebug = {
source = {
···
};
version = "8.2.1";
};
-
cal-heatmap-rails = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0lrmcyj3iixkprqi9fb9vcn97wpp779sl5hxxgx57r3rb7l4d20w";
-
type = "gem";
-
};
-
version = "3.5.1";
-
};
capybara = {
-
dependencies = ["mime-types" "nokogiri" "rack" "rack-test" "xpath"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f";
+
sha256 = "0ln77a5wwhd5sbxsh3v26xrwjnza0rgx2hn23yjggdlha03b00yw";
type = "gem";
};
-
version = "2.4.4";
+
version = "2.6.2";
};
capybara-screenshot = {
dependencies = ["capybara" "launchy"];
···
version = "1.0.11";
};
carrierwave = {
-
dependencies = ["activemodel" "activesupport" "json"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1b1av1ancby6brhmypl5k8xwrasd8bd3kqp9ri8kbq7z8nj6k445";
+
sha256 = "0h9179vcsv5mhdd83zx13bisk6x5c7j97mhqaxagimjbkszwsvr0";
type = "gem";
};
-
version = "0.9.0";
+
version = "0.10.0";
};
cause = {
source = {
···
};
version = "0.1";
};
-
CFPropertyList = {
+
charlock_holmes = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0mjb46368z4hiax3fcsgxk14fxrhwnvcmakc2f5sx8nz0wvvkwg2";
+
sha256 = "0jsl6k27wjmssxbwv9wpf7hgp9r0nvizcf6qpjnr7qs2nia53lf7";
type = "gem";
};
-
version = "2.3.2";
+
version = "0.7.3";
};
-
charlock_holmes = {
+
chronic_duration = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0jsl6k27wjmssxbwv9wpf7hgp9r0nvizcf6qpjnr7qs2nia53lf7";
+
sha256 = "1k7sx3xqbrn6s4pishh2pgr4kw6fmw63h00lh503l66k8x0qvigs";
type = "gem";
};
-
version = "0.7.3";
+
version = "0.10.6";
};
chunky_png = {
source = {
···
version = "1.0.0";
};
coffee-rails = {
-
dependencies = ["coffee-script" "railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs";
+
sha256 = "1mv1kaw3z4ry6cm51w8pfrbby40gqwxanrqyqr0nvs8j1bscc1gw";
type = "gem";
};
-
version = "4.1.0";
+
version = "4.1.1";
};
coffee-script = {
dependencies = ["coffee-script-source" "execjs"];
···
concurrent-ruby = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0qqdgcfkzv90nznrpsvg3cgg5xiqz4c8hnv7va5gm4fp4lf4k85v";
+
sha256 = "1kb4sav7yli12pjr8lscv8z49g52a5xzpfg3z9h8clzw6z74qjsw";
type = "gem";
};
-
version = "1.0.0";
+
version = "1.0.2";
};
connection_pool = {
source = {
···
};
version = "2.2.0";
};
-
coveralls = {
-
dependencies = ["json" "rest-client" "simplecov" "term-ansicolor" "thor" "tins"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "03vnvcw1fdmkp3405blcxpsjf89jxd2061474a32fchsmv2das9y";
-
type = "gem";
-
};
-
version = "0.8.9";
-
};
crack = {
dependencies = ["safe_yaml"];
source = {
···
type = "gem";
};
version = "0.5.0";
+
};
+
css_parser = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1ql5q4n39278prbdjdsxx9wkxkxblgzzn0qcdqnwibgd1dkvb5av";
+
type = "gem";
+
};
+
version = "1.4.1";
};
d3_rails = {
dependencies = ["railties"];
···
version = "0.0.4";
};
devise = {
-
dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "thread_safe" "warden"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "00h0xdl4a8pjpb0gbgy4w6q9j2mpczkmj23195zmjrg2b1gl8f2q";
+
sha256 = "1i5glkxmn0ymj50pz05nh6xcffc9giqajgfg6qrcbs2n552hbr5k";
type = "gem";
};
-
version = "3.5.4";
-
};
-
devise-async = {
-
dependencies = ["devise"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "11llg7ggzpmg4lb9gh4sx55spvp98sal5r803gjzamps9crfq6mm";
-
type = "gem";
-
};
-
version = "0.9.0";
+
version = "4.1.1";
};
devise-two-factor = {
-
dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1v2wva971ds48af47rj4ywavlmz7qzbmf1jpf1l3xn3mscz52hln";
+
sha256 = "1pkldws5lga4mlv4xmcrfb0yivl6qad0l8qyb2hdb50adv6ny4gs";
type = "gem";
};
-
version = "2.0.1";
+
version = "3.0.0";
};
diff-lcs = {
source = {
···
};
version = "1.1.5";
};
-
domain_name = {
-
dependencies = ["unf"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "16qvfrmcwlzz073aas55mpw2nhyhjcn96s524w0g1wlml242hjav";
-
type = "gem";
-
};
-
version = "0.5.25";
-
};
doorkeeper = {
-
dependencies = ["railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0wim84wkvx758cfb8q92w3hhvnfbwr990x1mmfv1ss1ivjz8fmm0";
+
sha256 = "0lillrbd2sy7zzni6a2kf3p09lfd0br831zzv22zsv4ffr6n1va1";
type = "gem";
};
-
version = "2.2.2";
+
version = "4.0.0";
};
dropzonejs-rails = {
dependencies = ["rails"];
···
encryptor = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y";
+
sha256 = "0s8rvfl0vn8w7k1sgkc234060jh468s3zd45xa64p1jdmfa3zwmb";
type = "gem";
};
-
version = "1.3.0";
+
version = "3.0.0";
};
equalizer = {
source = {
···
escape_utils = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0hb8nmrgmd9n5dhih86fp91sf26mmw14sdn5vswg5g20svrqxc7x";
+
sha256 = "088r5c2mz2vy2jbbx1xjbi8msnzg631ggli29nhik2spbcp1z6vh";
type = "gem";
};
-
version = "1.1.0";
+
version = "1.1.1";
};
eventmachine = {
source = {
···
excon = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w";
+
sha256 = "0jmdgc4lhlbxccpg79a32vn3qngqipcaaq8bxa0ivfw5mvz0zc0z";
type = "gem";
};
-
version = "0.45.4";
+
version = "0.49.0";
};
execjs = {
source = {
···
version = "0.9.0";
};
factory_girl = {
-
dependencies = ["activesupport"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "13z20a4b7z1c8vbz0qz5ranssdprldwvwlgjmn38x311sfjmp9dz";
+
sha256 = "0qn34ba1midnzms1854yzx0g16sgy7bd9wcsvs66rxd65idsay20";
type = "gem";
};
-
version = "4.3.0";
+
version = "4.5.0";
};
factory_girl_rails = {
-
dependencies = ["factory_girl" "railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1jj0yl6mfildb4g79dwgc1q5pv2pa65k9b1ml43mi8mg62j8mrhz";
+
sha256 = "00vngc59bww75hqkr1hbnvnqm5763w0jlv3lsq3js1r1wxdzix2r";
type = "gem";
};
-
version = "4.3.0";
+
version = "4.6.0";
};
faraday = {
dependencies = ["multipart-post"];
···
};
version = "0.0.6";
};
-
fastercsv = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h";
-
type = "gem";
-
};
-
version = "1.5.5";
-
};
ffaker = {
source = {
remotes = ["https://rubygems.org"];
···
type = "gem";
};
version = "1.9.10";
-
};
-
fission = {
-
dependencies = ["CFPropertyList"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh";
-
type = "gem";
-
};
-
version = "0.5.0";
};
flay = {
dependencies = ["ruby_parser" "sexp_processor"];
···
};
version = "0.7.1";
};
-
fog = {
-
dependencies = ["fog-aliyun" "fog-atmos" "fog-aws" "fog-brightbox" "fog-core" "fog-dynect" "fog-ecloud" "fog-google" "fog-json" "fog-local" "fog-powerdns" "fog-profitbricks" "fog-radosgw" "fog-riakcs" "fog-sakuracloud" "fog-serverlove" "fog-softlayer" "fog-storm_on_demand" "fog-terremark" "fog-vmfusion" "fog-voxel" "fog-xenserver" "fog-xml" "ipaddress" "nokogiri"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1ml31jdycqdm8w7w3l9pbyrgbnmrrnhmkppa2x4bwi9as1n1jmwq";
-
type = "gem";
-
};
-
version = "1.36.0";
-
};
-
fog-aliyun = {
-
dependencies = ["fog-core" "fog-json" "ipaddress" "xml-simple"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1i76g8sdskyfc0gcnd6n9i757s7dmwg3wf6spcr2xh8wzyxkm1pj";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
-
fog-atmos = {
-
dependencies = ["fog-core" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1aaxgnw9zy96gsh4h73kszypc32sx497s6bslvhfqh32q9d1y8c9";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
fog-aws = {
-
dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1pzfahq8h3alfflb5dr8lm02q27x81vm96qn5zyfdlx86yy7bq96";
-
type = "gem";
-
};
-
version = "0.8.1";
-
};
-
fog-brightbox = {
-
dependencies = ["fog-core" "fog-json" "inflecto"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0p7rbx587hb1d1am90dcr3zdp6y50c2zddh97yfgl62vji0pbkkd";
+
sha256 = "0imhhxrw8m031lc912bnlqzgac41sjsip1fa8v845ldmn56kn9zg";
type = "gem";
};
-
version = "0.10.1";
+
version = "0.9.2";
};
-
fog-core = {
-
dependencies = ["builder" "excon" "formatador"];
+
fog-azure = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "02z91r3f5a64hlalm6h39v0778yl2kk3qvva0zvplpp9hpwbwzhl";
-
type = "gem";
-
};
-
version = "1.35.0";
-
};
-
fog-dynect = {
-
dependencies = ["fog-core" "fog-json" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "18lqmdkm22254z86jh3aa9v9vqk8bgbd3d1m0w7az3ij47ak7kch";
+
sha256 = "1bdgzn1a1z79drfvashs6gzpg98dijvxm168cq0czzkx3wvbrfcl";
type = "gem";
};
version = "0.0.2";
};
-
fog-ecloud = {
-
dependencies = ["fog-core" "fog-xml"];
+
fog-core = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "18rb4qjad9xwwqvvpj8r2h0hi9svy71pm4d3fc28cdcnfarmdi06";
+
sha256 = "1flkprsdm1qr38bzd80wxpkbcwm5zshivbg2k8pjls9i6jh6a0z7";
type = "gem";
};
-
version = "0.3.0";
+
version = "1.40.0";
};
fog-google = {
-
dependencies = ["fog-core" "fog-json" "fog-xml"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0z4vmswpqwph04c0wqzrscns1d1wdm8kbxx457bv156mawzrhfj3";
+
sha256 = "0vzwid3s4c39fqixg1zb0dr5g3q6lafm9pan6bk3csys62v6fnm9";
type = "gem";
};
-
version = "0.1.0";
+
version = "0.3.2";
};
fog-json = {
dependencies = ["fog-core" "multi_json"];
···
version = "1.0.2";
};
fog-local = {
-
dependencies = ["fog-core"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0i5hxwzmc2ag3z9nlligsaf679kp2pz39cd8n2s9cmxaamnlh2s3";
+
sha256 = "0256l3q2f03q8fk49035h5jij388rcz9fqlwri7y788492b4vs3c";
type = "gem";
};
-
version = "0.2.1";
+
version = "0.3.0";
};
-
fog-powerdns = {
-
dependencies = ["fog-core" "fog-json" "fog-xml"];
+
fog-openstack = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "08zavzwfkk344gz83phz4sy9nsjznsdjsmn1ifp6ja17bvydlhh7";
+
sha256 = "1pw2ypxbbmfscmhcz05ry5kc7c5rjr61lv9zj6zpr98fg1wad3a6";
type = "gem";
};
-
version = "0.1.1";
+
version = "0.1.6";
};
-
fog-profitbricks = {
-
dependencies = ["fog-core" "fog-xml" "nokogiri"];
+
fog-rackspace = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn";
-
type = "gem";
-
};
-
version = "0.0.5";
-
};
-
fog-radosgw = {
-
dependencies = ["fog-core" "fog-json" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0nslgv8yp5qkiryj3zsm91gs7s6i626igj61kwxjjwk2yv6swyr6";
-
type = "gem";
-
};
-
version = "0.0.5";
-
};
-
fog-riakcs = {
-
dependencies = ["fog-core" "fog-json" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1nbxc4dky3agfwrmgm1aqmi59p6vnvfnfbhhg7xpg4c2cf41whxm";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
-
fog-sakuracloud = {
-
dependencies = ["fog-core" "fog-json"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "08krsn9sk5sx0aza812g31r169bd0zanb8pq5am3a64j6azarimd";
-
type = "gem";
-
};
-
version = "1.7.5";
-
};
-
fog-serverlove = {
-
dependencies = ["fog-core" "fog-json"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0hxgmwzygrw25rbsy05i6nzsyr0xl7xj5j2sjpkb9n9wli5sagci";
-
type = "gem";
-
};
-
version = "0.1.2";
-
};
-
fog-softlayer = {
-
dependencies = ["fog-core" "fog-json"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1zax2wws0q8pm787jnlxd2xlj23f2acz0s6jl5nzczyxjgll571r";
-
type = "gem";
-
};
-
version = "1.0.3";
-
};
-
fog-storm_on_demand = {
-
dependencies = ["fog-core" "fog-json"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0fif1x8ci095b2yyilf65n7x6iyvn448azrsnmwsdkriy8vxxv3y";
+
sha256 = "0y2bli061g37l9p4w0ljqbmg830rp2qz6sf8b0ck4cnx68j7m32a";
type = "gem";
};
version = "0.1.1";
};
-
fog-terremark = {
-
dependencies = ["fog-core" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
-
fog-vmfusion = {
-
dependencies = ["fission" "fog-core"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
-
fog-voxel = {
-
dependencies = ["fog-core" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx";
-
type = "gem";
-
};
-
version = "0.1.0";
-
};
-
fog-xenserver = {
-
dependencies = ["fog-core" "fog-xml"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1ngw8hh8ljk7wi0cp8n4b4jcy2acx0yqzjk7851m3mp0kji5dlgl";
-
type = "gem";
-
};
-
version = "0.2.2";
-
};
fog-xml = {
dependencies = ["fog-core" "nokogiri"];
source = {
···
version = "0.1.2";
};
font-awesome-rails = {
-
dependencies = ["railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "09x1bg98sp2v1lsg9h2bal915q811xq84h9d74p1f3378ga63c1x";
+
sha256 = "04cq20l6g5byjnqvm9n02wangakxfj5kaxk1447y5mi0a87x184c";
type = "gem";
};
-
version = "4.5.0.0";
+
version = "4.6.1.0";
};
foreman = {
dependencies = ["thor"];
···
gemojione = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0av60lajn64z1csmkzfaf5wvpd3x48lcshiknkqr8m0zx3sg7w3h";
+
sha256 = "17yy3cp7b75ngc2v4f0cacvq3f1bk3il5a0ykvnypl6fcj6r6b3w";
type = "gem";
};
-
version = "2.2.1";
+
version = "3.0.1";
};
get_process_mem = {
source = {
···
github-linguist = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1xxm2lbabkc1xmx2myv56a4fkw3wwg9n8w2bzwrl4s33kf6x62ag";
+
sha256 = "0c8w92yzjfs7pjnm8bdjsgyd1jpisn10fb6dy43381k1k8pxsifd";
type = "gem";
};
-
version = "4.7.5";
+
version = "4.7.6";
};
github-markup = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq";
+
sha256 = "046bvnbhk3bw021sd88808n71dya0b0dmx8hm64rj0fvs2jzg54z";
type = "gem";
};
-
version = "1.3.3";
+
version = "1.4.0";
};
gitlab-flowdock-git-hook = {
dependencies = ["flowdock" "gitlab-grit" "multi_json"];
···
version = "1.0.1";
};
gitlab-grit = {
-
dependencies = ["charlock_holmes" "diff-lcs" "mime-types" "posix-spawn"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b";
-
type = "gem";
-
};
-
version = "2.7.3";
-
};
-
gitlab_emoji = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1dy746icdmyc548mb5xkavvkn37pk7vv3gznx0p6hff325pan8dj";
+
sha256 = "0lf1cr6pzqrbnxiiwym6q74b1a2ihdi91dynajk8hi1p093hl66n";
type = "gem";
};
-
version = "0.3.1";
+
version = "2.8.1";
};
gitlab_git = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0311dl4vh6h7k8xarmpr61fndrhbmfskzjzkkj1rr8321gn8znfv";
+
sha256 = "00l5dv4k6q21yzxnviqh5ab6i2i6ajzlyjbwm1vgag7663wscny6";
type = "gem";
};
-
version = "8.2.0";
+
version = "10.3.2";
};
gitlab_meta = {
source = {
···
version = "0.3.6";
};
gollum-grit_adapter = {
-
dependencies = ["gitlab-grit"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7";
+
sha256 = "0fcibm63v1afc0fj5rki0mm51m7nndil4cjcjjvkh3yigfn4nr4b";
type = "gem";
};
-
version = "1.0.0";
+
version = "1.0.1";
};
gollum-lib = {
-
dependencies = ["github-markup" "gollum-grit_adapter" "nokogiri" "rouge" "sanitize" "stringex"];
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1q668c76gnyyyl8217gnblbj50plm7giacs5lgf7ix2rj8rdxzj7";
+
type = "gem";
+
};
+
version = "4.2.1";
+
};
+
gollum-rugged_adapter = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "01s8pgzhc3cgcmsy6hh79wrcbn5vbadniq2a7d4qw87kpq7mzfdm";
+
sha256 = "1qs5bzjnvk2269jaq7b7vxghhim50sswjf9fclqs33r8bym7zxk3";
type = "gem";
};
-
version = "4.1.0";
+
version = "0.4.2";
};
gon = {
dependencies = ["actionpack" "json" "multi_json" "request_store"];
···
};
version = "0.4.8";
};
-
haml = {
-
dependencies = ["tilt"];
+
hamlit = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p";
-
type = "gem";
-
};
-
version = "4.0.7";
-
};
-
haml-rails = {
-
dependencies = ["actionpack" "activesupport" "haml" "html2haml" "railties"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1hbfznkxab663hxp1v6gpsa7sv6w1fnw9r8b3flixwylnwh3c5dz";
+
sha256 = "00360fr2kq9f31p6mq965z0lpb16vhji3mzgkywcsxym1z9srvwm";
type = "gem";
};
-
version = "0.9.0";
+
version = "2.5.0";
};
hashie = {
source = {
···
};
version = "3.4.3";
};
-
highline = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr";
-
type = "gem";
-
};
-
version = "1.7.8";
-
};
-
hike = {
+
health_check = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm";
+
sha256 = "1jhm5342ngm2qfa1s6g0k09rszvb0h9jkxgda7dkwhg2v4cgj976";
type = "gem";
};
-
version = "1.2.3";
+
version = "2.1.0";
};
hipchat = {
dependencies = ["httparty" "mimemagic"];
···
};
version = "1.11.0";
};
-
html2haml = {
-
dependencies = ["erubis" "haml" "nokogiri" "ruby_parser"];
+
htmlentities = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "069zcy8lr010hn4qmbi8g5srdf69brk8nbgx4zcqcgbgsl4m8d4i";
+
sha256 = "1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj";
type = "gem";
};
-
version = "2.0.0";
-
};
-
http-cookie = {
-
dependencies = ["domain_name"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw";
-
type = "gem";
-
};
-
version = "1.0.2";
+
version = "4.3.4";
};
"http_parser.rb" = {
source = {
···
};
version = "0.11.1";
};
-
inflecto = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4";
-
type = "gem";
-
};
-
version = "0.0.2";
-
};
influxdb = {
dependencies = ["cause" "json"];
source = {
···
ipaddress = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0sl0ldvhd6j0qbwhz18w24qy65mdj448b2vhgh2cwn7xrkksmv9l";
+
sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45";
type = "gem";
};
-
version = "0.8.2";
+
version = "0.8.3";
};
jquery-atwho-rails = {
source = {
···
version = "1.3.2";
};
jquery-rails = {
-
dependencies = ["rails-dom-testing" "railties" "thor"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "028dv2n0r2r8qj1bqcbzmih0hwzh5km6cvscn2808v5gd44z48r1";
-
type = "gem";
-
};
-
version = "4.0.5";
-
};
-
jquery-scrollto-rails = {
-
dependencies = ["railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "12ic0zxw60ryglm1qjq5ralqd6k4jawmjj7kqnp1nkqds2nvinvp";
+
sha256 = "1asbrr9hqf43q9qbjf87f5lm7fp12pndh76z89ks6jwxf1350fj1";
type = "gem";
};
-
version = "1.4.3";
+
version = "4.1.1";
};
jquery-turbolinks = {
dependencies = ["railties" "turbolinks"];
···
jwt = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0is8973si98rsry5igqdag2jb1knj6jhmfkr9r4mc5n0yvgr5n2q";
+
sha256 = "0s5llb4mhpy0phzbrc4jd2jd2b91h1axy4bhci7g1bdz1w2m3a2i";
type = "gem";
};
-
version = "1.5.2";
+
version = "1.5.4";
};
kaminari = {
-
dependencies = ["actionpack" "activesupport"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "14vx3kgssl4lv2kn6grr5v2whsynx5rbl1j9aqiq8nc3d7j74l67";
+
sha256 = "1n063jha143mw4fklpq5f4qs7saakx4s4ps1zixj0s5y8l9pam54";
type = "gem";
};
-
version = "0.16.3";
+
version = "0.17.0";
};
kgio = {
source = {
···
};
version = "2.10.0";
};
+
knapsack = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0z0bp5al0b8wyzw8ff99jwr6qsh5n52xqryvzvy2nbrma9qr7dam";
+
type = "gem";
+
};
+
version = "1.11.0";
+
};
launchy = {
dependencies = ["addressable"];
source = {
···
version = "2.4.3";
};
letter_opener = {
-
dependencies = ["launchy"];
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1pcrdbxvp2x5six8fqn8gf09bn9rd3jga76ds205yph5m8fsda21";
+
type = "gem";
+
};
+
version = "1.4.1";
+
};
+
letter_opener_web = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "050x5cwqbxj2cydd2pzy9vfhmpgn1w6lfbwjaax1m1vpkn3xg9bv";
+
type = "gem";
+
};
+
version = "1.3.0";
+
};
+
license_finder = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "092rwf1yjq1l63zbqanmbnbky8g5pj7c3g30mcqbyppbqrsflx80";
+
type = "gem";
+
};
+
version = "2.1.0";
+
};
+
licensee = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1kzbmc686hfh4jznyckq6g40kn14nhb71znsjjm0rc13nb3n0c5l";
+
sha256 = "013wrp4sampgypx9ar48cv4ai487l2bg8a2b2z6srd77najf70gr";
type = "gem";
};
-
version = "1.1.2";
+
version = "8.0.0";
};
listen = {
dependencies = ["rb-fsevent" "rb-inotify"];
···
version = "1.7.1";
};
mail = {
-
dependencies = ["mime-types"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1nbg60h3cpnys45h7zydxwrl200p7ksvmrbxnwwbpaaf9vnf3znp";
+
sha256 = "0c9vqfy0na9b5096i5i4qvrvhwamjnmajhgqi3kdsdfl8l6agmkp";
type = "gem";
};
-
version = "2.6.3";
+
version = "2.6.4";
};
mail_room = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0jpybhgw9yi50g422qvnwadn5jnj563vh70qaml5cxzdqxbd7fj1";
+
sha256 = "00jaj42z6rhgpxprs7wb0a9gq33zsfalah3ddpynxldij5iz8mg0";
type = "gem";
};
-
version = "0.6.1";
+
version = "0.8.0";
};
method_source = {
source = {
···
mime-types = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8";
+
sha256 = "06lnv0w9j45llai5qhvc1m7w409j5lhnssdzkvv6yw49d632jxkz";
type = "gem";
};
-
version = "1.25.1";
+
version = "2.99.2";
};
mimemagic = {
source = {
···
multi_json = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r";
+
sha256 = "1wpc23ls6v2xbk3l1qncsbz16npvmw8p0b38l8czdzri18mp51xk";
type = "gem";
};
-
version = "1.11.2";
+
version = "1.12.1";
};
multi_xml = {
source = {
···
};
version = "3.0.1";
};
-
netrc = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y";
-
type = "gem";
-
};
-
version = "0.11.0";
-
};
newrelic_rpm = {
source = {
remotes = ["https://rubygems.org"];
···
version = "3.14.1.311";
};
nokogiri = {
-
dependencies = ["mini_portile2"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv";
···
};
version = "1.6.7.2";
};
-
nprogress-rails = {
+
numerizer = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1ylq2208i95661ba0p1ng2i38z4978ddwiidvpb614amfdq5pqvn";
+
sha256 = "0vrk9jbv4p4dcz0wzr72wrf5kajblhc5l9qf7adbcwi4qvz9xv0h";
type = "gem";
};
-
version = "0.1.6.7";
+
version = "0.1.1";
};
oauth = {
source = {
···
version = "0.4.7";
};
oauth2 = {
-
dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r";
+
sha256 = "0z25sx8i82wczzhv6xr4g3zi3ik6fr8qr9n7r96gd65fdlw5ka93";
type = "gem";
};
-
version = "1.0.0";
+
version = "1.2.0";
};
octokit = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0vmknh0vz1g734q32kgpxv0qwz9ifmnw2jfpd2w5rrk6xwq1k7a8";
+
sha256 = "1hq47ck0z03vr3rzblyszihn7x2m81gv35chwwx0vrhf17nd27np";
type = "gem";
};
-
version = "3.8.0";
+
version = "4.3.0";
};
omniauth = {
source = {
···
};
version = "1.3.1";
};
+
omniauth-auth0 = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0dhfl01519q1cp4w0ml481j1cg05g7qvam0x4ia9jhdz8yx6npfs";
+
type = "gem";
+
};
+
version = "1.4.1";
+
};
omniauth-azure-oauth2 = {
dependencies = ["jwt" "omniauth" "omniauth-oauth2"];
source = {
···
version = "1.0.1";
};
omniauth-google-oauth2 = {
-
dependencies = ["addressable" "jwt" "multi_json" "omniauth" "omniauth-oauth2"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1lm4fk6ig9vwzv7398qd861325g678sfr1iv2mm60xswl69964fi";
+
sha256 = "1m6v2vm3h21ychd10wzkdhyhnrk9zhc1bgi4ahp5gwy00pggrppw";
type = "gem";
};
-
version = "0.2.10";
+
version = "0.4.1";
};
omniauth-kerberos = {
dependencies = ["omniauth-multipassword" "timfel-krb5-auth"];
···
omniauth-saml = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0c7pypskq9y6wbl7c8gnp48j256snph11br3csgwvy9whjfisx65";
+
sha256 = "0xs7v08s34s2bpyd3i8i8kj73zqb6wgn51ix3pmcwsifns0c8npr";
type = "gem";
};
-
version = "1.4.2";
+
version = "1.6.0";
};
omniauth-shibboleth = {
dependencies = ["omniauth"];
···
version = "2.1.4";
};
parser = {
-
dependencies = ["ast"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "14db0gam24j04iprqz4m3hxygkb8h0plnbm0yk4k3lzq6j5wzcac";
+
sha256 = "0fxcs83z28wxn6bphbq5q40c1y5ab8zl8ww17jwkbi032wf6iik6";
type = "gem";
};
-
version = "2.2.3.0";
+
version = "2.3.1.2";
};
pg = {
source = {
···
};
version = "0.18.4";
};
+
pkg-config = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0lljiqnm0b4z6iy87lzapwrdfa6ps63x2z5zbs038iig8dqx2g0z";
+
type = "gem";
+
};
+
version = "1.1.7";
+
};
poltergeist = {
-
dependencies = ["capybara" "cliver" "multi_json" "websocket-driver"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0ppm4isvbxm739508yjhvisq1iwp1q6h8dx4hkndj2krskavz4i9";
+
sha256 = "1fnkly1ks31nf5cdks9jd5c5vynbanrr8pwp801qq2i8bg78rwc0";
type = "gem";
};
-
version = "1.8.1";
+
version = "1.9.0";
};
posix-spawn = {
source = {
···
};
version = "0.1.1";
};
+
premailer = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0xhi427j99rgaxf5ga8rairicgbyc1bdky9ipbsw0sy0alv93346";
+
type = "gem";
+
};
+
version = "1.8.6";
+
};
+
premailer-rails = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1h2ls42bnqirim2j1blwqa0dk5lhdh6qvczpqilm6n90c2zq3xwx";
+
type = "gem";
+
};
+
version = "1.9.2";
+
};
pry = {
dependencies = ["coderay" "method_source" "slop"];
source = {
···
};
version = "0.0.3.3";
};
-
quiet_assets = {
-
dependencies = ["railties"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1";
-
type = "gem";
-
};
-
version = "1.0.3";
-
};
rack = {
source = {
remotes = ["https://rubygems.org"];
···
version = "0.6.3";
};
rails = {
-
dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e";
+
sha256 = "033wfvqjzlzkm0nrqrjpxxrp0lwhfm8sjlxn5zdhxhkzmhibrnvn";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
rails-deprecated_sanitizer = {
dependencies = ["activesupport"];
···
version = "1.0.3";
};
railties = {
-
dependencies = ["actionpack" "activesupport" "rake" "thor"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146";
+
sha256 = "0psnr9g436k2fkkjlhs7mq090i7vh0cvh7qwwrb8ppzbcr15hhab";
type = "gem";
};
-
version = "4.2.5.2";
+
version = "4.2.7";
};
rainbow = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4";
+
sha256 = "11licivacvfqbjx2rwppi8z89qff2cgs67d4wyx42pc5fg7g9f00";
type = "gem";
};
-
version = "2.0.0";
+
version = "2.1.0";
};
raindrops = {
source = {
···
};
version = "10.5.0";
};
-
raphael-rails = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0sjiaymvfn4al5dr1pza5i142byan0fxnj4rymziyql2bzvdm2bc";
-
type = "gem";
-
};
-
version = "2.1.2";
-
};
rb-fsevent = {
source = {
remotes = ["https://rubygems.org"];
···
version = "3.12.2";
};
recaptcha = {
-
dependencies = ["json"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "190qqklirmi31s6ih7png4h9xmx1p5h2n5fi45z90y8hsp5w1sh1";
+
sha256 = "1pppfgica4629i8gbji6pnh681wjf03m6m1ix2ficpnqg2z7gl9n";
type = "gem";
};
-
version = "1.0.2";
+
version = "3.0.0";
};
redcarpet = {
source = {
···
RedCloth = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl";
+
sha256 = "0m9dv7ya9q93r8x1pg2gi15rxlbck8m178j1fz7r5v6wr1avrrqy";
type = "gem";
};
-
version = "4.2.9";
+
version = "4.3.2";
};
redis = {
source = {
···
request_store = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "01rxi2hw84y133z0r91jns4aaywd8d83wjq0xgb42iaicf0a90p9";
+
sha256 = "1vw3vkgnpbpgzc1b4cg2ifn3rb5w7bvk62x9jfy9laz40816nvkn";
type = "gem";
};
-
version = "1.2.1";
+
version = "1.3.0";
};
rerun = {
dependencies = ["listen"];
···
};
version = "2.1.1";
};
-
rest-client = {
-
dependencies = ["http-cookie" "mime-types" "netrc"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7";
-
type = "gem";
-
};
-
version = "1.8.0";
-
};
rinku = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b";
+
sha256 = "11cakxzp7qi04d41hbqkh92n52mm4z2ba8sqyhxbmfi4kypmls9y";
type = "gem";
};
-
version = "1.7.3";
+
version = "2.0.0";
};
rotp = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g";
+
sha256 = "1w8d6svhq3y9y952r8cqirxvdx12zlkb7zxjb44bcbidb2sisy4d";
type = "gem";
};
-
version = "2.1.1";
+
version = "2.1.2";
};
rouge = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz";
+
sha256 = "07nda5cfrxxizcd4ff7ad8z3i0j9jaff8q7q6ddpxcj0s80nvvpi";
type = "gem";
};
-
version = "1.10.1";
+
version = "2.0.5";
};
rqrcode = {
dependencies = ["chunky_png"];
···
version = "0.1.7";
};
rspec = {
-
dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r";
+
sha256 = "16g3mmih999f0b6vcz2c3qsc7ks5zy4lj1rzjh8hf6wk531nvc6s";
type = "gem";
};
-
version = "3.3.0";
+
version = "3.5.0";
};
rspec-core = {
-
dependencies = ["rspec-support"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1";
+
sha256 = "03m0pn5lwlix094khfwlv50n963p75vjsg6w2g0b3hqcvvlch1mx";
type = "gem";
};
-
version = "3.3.2";
+
version = "3.5.0";
};
rspec-expectations = {
-
dependencies = ["diff-lcs" "rspec-support"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah";
+
sha256 = "0bbqfrb1x8gmwf8x2xhhwvvlhwbbafq4isbvlibxi6jk602f09gs";
type = "gem";
};
-
version = "3.3.1";
+
version = "3.5.0";
};
rspec-mocks = {
-
dependencies = ["diff-lcs" "rspec-support"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg";
+
sha256 = "0nl3ksivh9wwrjjd47z5dggrwx40v6gpb3a0gzbp1gs06a5dmk24";
type = "gem";
};
-
version = "3.3.2";
+
version = "3.5.0";
};
rspec-rails = {
-
dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a";
+
sha256 = "0zzd75v8vpa1r30j3hsrprza272rcx54hb0klwpzchr9ch6c9z2a";
+
type = "gem";
+
};
+
version = "3.5.0";
+
};
+
rspec-retry = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0izvxab7jvk25kaprk0i72asjyh1ip3cm70bgxlm8lpid35qjar6";
type = "gem";
};
-
version = "3.3.3";
+
version = "0.4.5";
};
rspec-support = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27";
+
sha256 = "10vf3k3d472y573mag2kzfsfrf6rv355s13kadnpryk8d36yq5r0";
type = "gem";
};
-
version = "3.3.0";
+
version = "3.5.0";
};
rubocop = {
-
dependencies = ["astrolabe" "parser" "powerpack" "rainbow" "ruby-progressbar" "tins"];
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "02adr908a9l8nhdfjz137i20w1dv8mbfiamy0m9z9q0fvslfdxly";
+
type = "gem";
+
};
+
version = "0.41.2";
+
};
+
rubocop-rspec = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1grqda2fdknm43zyagh8gcmnhjkypyfw98q92hmvprprwghkq2sg";
+
sha256 = "11701iw858vkxmb6khc9apmagz3lmnbdxm8irsxsgg57d0p8bs8p";
type = "gem";
};
-
version = "0.35.1";
+
version = "1.5.0";
};
ruby-fogbugz = {
dependencies = ["crack"];
···
ruby-progressbar = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi";
+
sha256 = "1qzc7s7r21bd7ah06kskajc2bjzkr9y0v5q48y0xwh2l55axgplm";
type = "gem";
};
-
version = "1.7.5";
+
version = "1.8.1";
};
ruby-saml = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "151jbak16y87dbj3ma2nc03rh37z7lixcwgaqahncq80rgnv45a8";
+
sha256 = "0qhma3cdmi9acpsn6r3x5mjjgfqxkhzxgy2pd3bc6rddghpa3x5l";
type = "gem";
};
-
version = "1.1.1";
-
};
-
ruby2ruby = {
-
dependencies = ["ruby_parser" "sexp_processor"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1kmc0503s9mqnjyypx51wsi6zz9zj550ch43rag23wpj4qd6i6pm";
-
type = "gem";
-
};
-
version = "2.2.0";
+
version = "1.3.0";
};
ruby_parser = {
-
dependencies = ["sexp_processor"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1rip6075b4k5a7s8w2klwc3jaqx31h69k004ac5nhl8y0ja92qvz";
+
sha256 = "0wr15wjkvq4wcm2ia3ajfxqwwd5szzpvnrbbq3c2bnd9g7ghqq0c";
type = "gem";
};
-
version = "3.7.2";
+
version = "3.8.2";
};
rubyntlm = {
source = {
···
};
version = "0.2.0";
};
+
rubyzip = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "10a9p1m68lpn8pwqp972lv61140flvahm3g9yzbxzjks2z3qlb2s";
+
type = "gem";
+
};
+
version = "1.2.0";
+
};
rufus-scheduler = {
source = {
remotes = ["https://rubygems.org"];
···
rugged = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0v0cvdw8cgy1hf5h3cx796zpxhbad8d5cm50nykyhwjc00q80zrr";
+
sha256 = "0fnldbha5npdapij6xhrm7qj5qicnswrcfxa5dbk7wjaq482gh6r";
type = "gem";
};
-
version = "0.24.0b13";
+
version = "0.24.0";
};
safe_yaml = {
source = {
···
sass = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "04rpdcp258arh2wgdk9shbqnzd6cbbbpi3wpi9a0wby8awgpxmyf";
+
sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy";
type = "gem";
};
-
version = "3.4.20";
+
version = "3.4.22";
};
sass-rails = {
-
dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1f6357vw944w2ayayqmz8ai9myl6xbnry06sx5b5ms4r9lny8hj8";
+
sha256 = "1ag66qa1f4agghdmnmn199s4sp7x54msa3abs31vl89ncbdf933i";
type = "gem";
};
-
version = "5.0.4";
+
version = "5.0.5";
};
sawyer = {
-
dependencies = ["addressable" "faraday"];
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "1cn48ql00mf1ag9icmfpj7g7swh7mdn7992ggynjqbw1gh15bs3j";
+
type = "gem";
+
};
+
version = "0.7.0";
+
};
+
scss_lint = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy";
+
sha256 = "0q6yankh4ay4fqz7s19p2r2nqhzv93gihc5c6xnqka3ch1z6v9fv";
type = "gem";
};
-
version = "0.6.0";
+
version = "0.47.1";
};
sdoc = {
dependencies = ["json" "rdoc"];
···
version = "0.3.20";
};
seed-fu = {
-
dependencies = ["activerecord" "activesupport"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw";
+
sha256 = "1nkp1pvkdydclbl2v4qf9cixmiycvlqnrgxd61sv9r85spb01z3p";
type = "gem";
};
-
version = "2.3.5";
+
version = "2.3.6";
};
select2-rails = {
dependencies = ["thor"];
···
sentry-raven = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0iqnwfmf6rnpgrvl3c8gh2gkix91nhm21j5qf389g4mi2rkc0ky8";
+
sha256 = "0fjfq3hkfv3a415mk6cjwknnxg9d71x0b8x7szgbwhyqa8ahj3j3";
type = "gem";
};
-
version = "0.15.6";
+
version = "1.1.0";
};
settingslogic = {
source = {
···
sexp_processor = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2";
+
sha256 = "0gs57v3gvbh83cknzkq20giqygdzhhbm7s7i7kxramf945diyfln";
type = "gem";
};
-
version = "4.6.0";
+
version = "4.7.0";
};
sham_rack = {
dependencies = ["rack"];
···
version = "2.8.0";
};
sidekiq = {
-
dependencies = ["concurrent-ruby" "connection_pool" "json" "redis"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1x7jfc2va0x6fcfffdf0wdiyk4krjw8053jzwffa63wkqr5jvg3y";
+
sha256 = "0j0yz9fv79d7sasz7lsrb9fnymxg58jpykgr58r73nv2v8nsx1nm";
type = "gem";
};
-
version = "4.0.1";
+
version = "4.1.4";
};
sidekiq-cron = {
dependencies = ["redis-namespace" "rufus-scheduler" "sidekiq"];
···
version = "0.1.9";
};
simplecov = {
-
dependencies = ["docile" "json" "simplecov-html"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4";
+
sha256 = "1p0jhxwsv2ksk4hmp8qbhnr325z9fhs26z9y8in5v5c49y331qw2";
type = "gem";
};
-
version = "0.10.0";
+
version = "0.11.2";
};
simplecov-html = {
source = {
···
version = "0.10.0";
};
sinatra = {
-
dependencies = ["rack" "rack-protection" "tilt"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7";
+
sha256 = "1b81kbr65mmcl9cdq2r6yc16wklyp798rxkgmm5pr9fvsj7jwmxp";
type = "gem";
};
-
version = "1.4.6";
+
version = "1.4.7";
};
six = {
source = {
···
};
version = "1.2.1";
};
-
slim = {
-
dependencies = ["temple" "tilt"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1szs71hh0msm5gj6qbcxw44m3hqnwybx4yh02scwixnwg576058k";
-
type = "gem";
-
};
-
version = "3.0.6";
-
};
slop = {
source = {
remotes = ["https://rubygems.org"];
···
};
version = "0.2.1";
};
+
spinach-rerun-reporter = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0fkmp99cpxrdzkjrxw9y9qp8qxk5d1arpmmlg5njx40rlcvx002k";
+
type = "gem";
+
};
+
version = "0.0.2";
+
};
spring = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1";
+
sha256 = "17clm28dp140rw3761z9g8kjnnlpv9nv4flvpryhaasihjvjgfy1";
type = "gem";
};
-
version = "1.3.6";
+
version = "1.7.2";
};
spring-commands-rspec = {
dependencies = ["spring"];
···
version = "1.0.4";
};
spring-commands-spinach = {
-
dependencies = ["spring"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "138jardqyj96wz68njdgy55qjbpl2d0g8bxbkz97ndaz3c2bykv9";
+
sha256 = "12qa60sclhnclwi6lskhdgr1l007bca831vhp35f06hq1zmimi2x";
type = "gem";
};
-
version = "1.0.0";
+
version = "1.1.0";
};
spring-commands-teaspoon = {
dependencies = ["spring"];
···
version = "0.0.2";
};
sprockets = {
-
dependencies = ["hike" "multi_json" "rack" "tilt"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3";
+
sha256 = "0flynmaaxa53pv15x7kcxr7z6h1hn7ifrxk13dfhhvh6h38jnzkv";
type = "gem";
};
-
version = "2.12.4";
+
version = "3.6.3";
};
sprockets-rails = {
-
dependencies = ["actionpack" "activesupport" "sprockets"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1vsl6ryxdjpp97nl4ghhk1v6p50zh3sx9qv81bhmlffc234r91wn";
+
sha256 = "1sak0as7ka964f6zjb1w8hkvfkkbf55kpcyvh7k6nyrb6pqnwmnf";
type = "gem";
};
-
version = "2.3.3";
+
version = "3.1.1";
};
state_machines = {
source = {
···
version = "0.4.0";
};
state_machines-activemodel = {
-
dependencies = ["activemodel" "state_machines"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1bshcm53v2vfpapvhws1h0dq1h4f3p6bvpdkjpydb52a3m0w2z0y";
+
sha256 = "0p6560jsb4flapd1vbc50bqjk6dzykkwbmyivchyjh5ncynsdb8v";
type = "gem";
};
-
version = "0.3.0";
+
version = "0.4.0";
};
state_machines-activerecord = {
-
dependencies = ["activerecord" "state_machines-activemodel"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "10dplkn4cm49xby8s0sn7wxww4hnxi4dgikfsmhp1rbsa24d76vx";
+
sha256 = "0x5wx1s2i3qc4p2knkf2n9h8b49pla9rjidkwxqzi781qm40wdxx";
type = "gem";
};
-
version = "0.3.0";
+
version = "0.4.0";
};
stringex = {
source = {
···
};
version = "2.5.2";
};
+
sys-filesystem = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "092wj7936i5inzafi09wqh5c8dbak588q21k652dsrdjf5qi10zq";
+
type = "gem";
+
};
+
version = "1.1.6";
+
};
systemu = {
source = {
remotes = ["https://rubygems.org"];
···
version = "1.0.2";
};
teaspoon = {
-
dependencies = ["railties"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s";
+
sha256 = "1xz5f1w8jm2fg1g194kf17gh36imd7sgs9cx0adqx1l22p7jrkvv";
type = "gem";
};
-
version = "1.0.2";
+
version = "1.1.5";
};
teaspoon-jasmine = {
dependencies = ["teaspoon"];
···
temple = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0ysraljv7lkb04z5vdyrkijab7j1jzj1mgz4bj82744dp7d0rhb0";
-
type = "gem";
-
};
-
version = "0.7.6";
-
};
-
term-ansicolor = {
-
dependencies = ["tins"];
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys";
-
type = "gem";
-
};
-
version = "1.3.2";
-
};
-
terminal-table = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f";
+
sha256 = "0xlf1if32xj14mkfwh8nxy3zzjzd9lipni0v2bghknp2kfc1hcz6";
type = "gem";
};
-
version = "1.5.2";
+
version = "0.7.7";
};
test_after_commit = {
dependencies = ["activerecord"];
···
version = "0.4.2";
};
thin = {
-
dependencies = ["daemons" "eventmachine" "rack"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1pyc602sa8fqwjyssn9yvf3fqrr14jk7hj9hsjlan1mq4zvim1lf";
+
sha256 = "1dq9q7qyjyg4444bmn12r2s0mir8dqnvc037y0zidhbyaavrv95q";
type = "gem";
};
-
version = "1.6.4";
+
version = "1.7.0";
};
thor = {
source = {
···
tilt = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir";
+
sha256 = "0lgk8bfx24959yq1cn55php3321wddw947mgj07bxfnwyipy9hqf";
+
type = "gem";
+
};
+
version = "2.0.5";
+
};
+
timecop = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0vwbkwqyxhavzvr1820hqwz43ylnfcf6w4x6sag0nghi44sr9kmx";
type = "gem";
};
-
version = "1.4.1";
+
version = "0.8.1";
};
timfel-krb5-auth = {
source = {
···
};
version = "1.10.1";
};
-
tins = {
-
source = {
-
remotes = ["https://rubygems.org"];
-
sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz";
-
type = "gem";
-
};
-
version = "1.6.0";
-
};
turbolinks = {
dependencies = ["coffee-rails"];
source = {
···
};
version = "1.2.2";
};
+
u2f = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "0lsm1hvwcaa9sq13ab1l1zjk0fgcy951ay11v2acx0h6q1iv21vr";
+
type = "gem";
+
};
+
version = "0.2.1";
+
};
uglifier = {
dependencies = ["execjs" "json"];
source = {
···
unf_ext = {
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b";
+
sha256 = "04d13bp6lyg695x94whjwsmzc2ms72d94vx861nx1y40k3817yp8";
+
type = "gem";
+
};
+
version = "0.0.7.2";
+
};
+
unicode-display_width = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "194d70pfxq4d7rrk0vsk1dvj46ns2f350308khi7q5cvnmg3h1xs";
type = "gem";
};
-
version = "0.0.7.1";
+
version = "1.1.0";
};
unicorn = {
-
dependencies = ["kgio" "rack" "raindrops"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4";
+
sha256 = "02xgk7gajnp8zqd2wvk1hbbwz7czlbpk29ahs9ph0jprsssnzzrv";
type = "gem";
};
-
version = "4.8.3";
+
version = "4.9.0";
};
unicorn-worker-killer = {
dependencies = ["get_process_mem" "unicorn"];
···
};
version = "1.0.5";
};
+
vmstat = {
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "02yf9y7050zk1k7mn7dkp81wwa220kpkpdnlv4bg5mp65w33g5jf";
+
type = "gem";
+
};
+
version = "2.1.1";
+
};
warden = {
-
dependencies = ["rack"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1iyxw1ms3930dh7vcrfyi4ifpdbkfsr8k7fzjryva0r7k3c71gb7";
+
sha256 = "04gpmnvkp312wxmsvvbq834iyab58vjmh6w4x4qpgh4p1lzkiq1l";
type = "gem";
};
-
version = "1.2.4";
+
version = "1.2.6";
};
web-console = {
-
dependencies = ["activemodel" "binding_of_caller" "railties" "sprockets-rails"];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "13rwps8m76j45iqhggm810j78i8bg4nqzgi8k7amxplik2zm5blf";
+
sha256 = "0f8mgdjnkwb2gmnd73hnlx8p2clzvpz007alhsglqgylpj6m20jk";
type = "gem";
};
-
version = "2.2.1";
+
version = "2.3.0";
};
webmock = {
dependencies = ["addressable" "crack"];
+58 -17
pkgs/applications/version-management/gitlab/nulladapter.patch
···
-
index acd1874..f493451 100644
+
diff --git a/Gemfile b/Gemfile
+
index 92e666c..f97c991 100644
--- a/Gemfile
+++ b/Gemfile
-
@@ -318,3 +318,5 @@ gem 'oauth2', '~> 1.0.0'
+
@@ -117,7 +117,7 @@ gem 'rouge', '~> 2.0'
+
+
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
+
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
+
-gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
+
+gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2', '< 1.6.8'
-
# Soft deletion
-
gem "paranoia", "~> 2.0"
+
# Diffs
+
gem 'diffy', '~> 3.0.3'
+
@@ -349,3 +349,5 @@ gem 'health_check', '~> 2.1.0'
+
# System information
+
gem 'vmstat', '~> 2.1.1'
+
gem 'sys-filesystem', '~> 1.1.6'
+
+gem "activerecord-nulldb-adapter"
-
index 14d2c76..7a010f0 100644
+
diff --git a/Gemfile.lock b/Gemfile.lock
+
index e2b3d55..23a5454 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
-
@@ -34,6 +34,8 @@ GEM
-
activesupport (= 4.2.5.1)
+
@@ -32,6 +32,8 @@ GEM
+
activemodel (= 4.2.7)
+
activesupport (= 4.2.7)
arel (~> 6.0)
-
activerecord-deprecated_finders (1.0.4)
-
+ activerecord-nulldb-adapter (0.3.2)
+
+ activerecord-nulldb-adapter (0.3.3)
+ activerecord (>= 2.0.0)
-
activerecord-session_store (0.1.2)
-
actionpack (>= 4.0.0, < 5)
-
activerecord (>= 4.0.0, < 5)
-
@@ -880,6 +882,7 @@ DEPENDENCIES
-
RedCloth (~> 4.2.9)
-
ace-rails-ap (~> 2.0.1)
-
activerecord-deprecated_finders (~> 1.0.3)
+
activerecord-session_store (1.0.0)
+
actionpack (>= 4.0, < 5.1)
+
activerecord (>= 4.0, < 5.1)
+
@@ -390,7 +392,7 @@ GEM
+
method_source (0.8.2)
+
mime-types (2.99.2)
+
mimemagic (0.3.0)
+
- mini_portile2 (2.1.0)
+
+ mini_portile2 (2.0.0)
+
minitest (5.7.0)
+
mousetrap-rails (1.4.6)
+
multi_json (1.12.1)
+
@@ -401,9 +403,8 @@ GEM
+
net-ldap (0.12.1)
+
net-ssh (3.0.1)
+
newrelic_rpm (3.14.1.311)
+
- nokogiri (1.6.8)
+
- mini_portile2 (~> 2.1.0)
+
- pkg-config (~> 1.1.7)
+
+ nokogiri (1.6.7.2)
+
+ mini_portile2 (~> 2.0.0.rc2)
+
numerizer (0.1.1)
+
oauth (0.4.7)
+
oauth2 (1.2.0)
+
@@ -803,6 +803,7 @@ PLATFORMS
+
DEPENDENCIES
+
RedCloth (~> 4.3.2)
+
ace-rails-ap (~> 4.0.2)
+ activerecord-nulldb-adapter
-
activerecord-session_store (~> 0.1.0)
+
activerecord-session_store (~> 1.0.0)
acts-as-taggable-on (~> 3.4)
addressable (~> 2.3.8)
+
@@ -894,7 +895,7 @@ DEPENDENCIES
+
nested_form (~> 0.3.2)
+
net-ssh (~> 3.0.1)
+
newrelic_rpm (~> 3.14)
+
- nokogiri (~> 1.6.7, >= 1.6.7.2)
+
+ nokogiri (~> 1.6.7, >= 1.6.7.2, < 1.6.8)
+
oauth2 (~> 1.2.0)
+
octokit (~> 4.3.0)
+
omniauth (~> 1.3.1)
+37 -10
pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch
···
diff --git a/config/environments/production.rb b/config/environments/production.rb
-
index 9095266..694a4c5 100644
+
index a9d8ac4..85f13f5 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
-
@@ -67,10 +67,10 @@ Rails.application.configure do
+
@@ -70,14 +70,16 @@ Rails.application.configure do
config.action_mailer.delivery_method = :sendmail
# Defaults to:
···
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
+
config.eager_load = true
+
+
config.allow_concurrency = false
+
+
+
+ config.active_record.dump_schema_after_migration = false
+
end
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example
-
index 05f127d..6a4ae68 100644
+
index 1470a6e..1b2660d 100644
--- a/config/gitlab.yml.example
+++ b/config/gitlab.yml.example
-
@@ -423,7 +423,7 @@ production: &base
+
@@ -476,7 +476,7 @@ production: &base
# CAUTION!
# Use the default values unless you really know what you are doing
git:
···
# The next value is the maximum memory size grit can use
# Given in number of bytes per git object (e.g. a commit)
# This value can be increased if you have very large commits
+
diff --git a/config/initializers/1_settings.rb b/config/initializers/1_settings.rb
+
index 86f5521..3bf006b 100644
+
--- a/config/initializers/1_settings.rb
+
+++ b/config/initializers/1_settings.rb
+
@@ -192,7 +192,7 @@ Settings.gitlab['user'] ||= 'git'
+
Settings.gitlab['user_home'] ||= begin
+
Etc.getpwnam(Settings.gitlab['user']).dir
+
rescue ArgumentError # no user configured
+
- '/home/' + Settings.gitlab['user']
+
+ '/homeless-shelter'
+
end
+
Settings.gitlab['time_zone'] ||= nil
+
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
+
@@ -350,7 +350,7 @@ Settings.backup['upload']['encryption'] ||= nil
+
#
+
Settings['git'] ||= Settingslogic.new({})
+
Settings.git['max_size'] ||= 20971520 # 20.megabytes
+
-Settings.git['bin_path'] ||= '/usr/bin/git'
+
+Settings.git['bin_path'] ||= 'git'
+
Settings.git['timeout'] ||= 10
+
+
# Important: keep the satellites.path setting until GitLab 9.0 at
diff --git a/lib/gitlab/logger.rb b/lib/gitlab/logger.rb
index 59b2114..4f4a39a 100644
--- a/lib/gitlab/logger.rb
···
end
end
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
-
index d59872d..0b8007f 100644
+
index 60f4636..157641f 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -223,7 +223,7 @@ namespace :gitlab do
···
+ log_path = ENV["GITLAB_LOG_PATH"]
if File.writable?(log_path)
-
puts "yes".green
-
@@ -263,10 +263,12 @@ namespace :gitlab do
+
puts "yes".color(:green)
+
@@ -263,10 +263,11 @@ namespace :gitlab do
def check_uploads
print "Uploads directory setup correctly? ... "
- unless File.directory?(Rails.root.join('public/uploads'))
+ uploads_dir = ENV['GITLAB_UPLOADS_PATH'] || Rails.root.join('public/uploads')
-
+
+ unless File.directory?(uploads_dir)
-
puts "no".red
+
puts "no".color(:red)
try_fixing_it(
- "sudo -u #{gitlab_user} mkdir #{Rails.root}/public/uploads"
+ "sudo -u #{gitlab_user} mkdir #{uploads_dir}"
)
for_more_information(
see_installation_guide_section "GitLab"
-
@@ -275,7 +277,7 @@ namespace :gitlab do
+
@@ -275,7 +276,7 @@ namespace :gitlab do
return
end