<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/tasks, branch add-ruby-parser-dependency</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Compile gitlab-shell go executables</title>
<updated>2017-05-04T09:21:51+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2017-05-02T15:44:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3960d974c378759d23c63f59135451054c47f54d'/>
<id>3960d974c378759d23c63f59135451054c47f54d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rs-described_class-cop-2' into 'master'</title>
<updated>2017-05-02T22:30:30+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-05-02T22:30:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2a73f0a638d4268dd367346dd602910f777742f4'/>
<id>2a73f0a638d4268dd367346dd602910f777742f4</id>
<content type='text'>

Enable `RSpec/DescribedClass` cop and correct violations

See merge request !10930</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Enable `RSpec/DescribedClass` cop and correct violations

See merge request !10930</pre>
</div>
</content>
</entry>
<entry>
<title>Auto-correct `RSpec/DescribedClass` violations</title>
<updated>2017-05-01T15:13:33+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2017-05-01T15:13:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d49768296ce596bbbbdf8412c362d9999ce822a4'/>
<id>d49768296ce596bbbbdf8412c362d9999ce822a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Gitaly for getting Branch/Tag counts</title>
<updated>2017-04-28T11:07:53+00:00</updated>
<author>
<name>Kim "BKC" Carlbäcker</name>
<email>kim.carlbacker@gmail.com</email>
</author>
<published>2017-04-19T09:06:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6f89bd3628322d0c17f97163d060e6ef7238de3c'/>
<id>6f89bd3628322d0c17f97163d060e6ef7238de3c</id>
<content type='text'>
- Backup-rake-spec fixed. Storage config broken
- Use rugged to compare branch/tag-count in specs
- upgrade gitaly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Backup-rake-spec fixed. Storage config broken
- Use rugged to compare branch/tag-count in specs
- upgrade gitaly
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix failing spec</title>
<updated>2017-04-26T16:30:02+00:00</updated>
<author>
<name>Achilleas Pipinellis</name>
<email>axilleas@axilleas.me</email>
</author>
<published>2017-04-26T12:08:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3bce12957037173011aec132acd1913fc702d48a'/>
<id>3bce12957037173011aec132acd1913fc702d48a</id>
<content type='text'>
http://rubular.com/r/op7TI9UX6K
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http://rubular.com/r/op7TI9UX6K
</pre>
</div>
</content>
</entry>
<entry>
<title>Expand components version specification format to allow branches</title>
<updated>2017-04-13T20:32:00+00:00</updated>
<author>
<name>Alejandro Rodríguez</name>
<email>alejorro70@gmail.com</email>
</author>
<published>2017-04-10T23:15:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e61325ff432db669012a1291f5f2332eb5b0d43f'/>
<id>e61325ff432db669012a1291f5f2332eb5b0d43f</id>
<content type='text'>
Currently we specify versions for Gitlab-Shell, Workhorse and Gitaly
using version strings, to which we prepend 'v' and assume are tags.
These changes allow branches or tags with other name formats to be
specified by prepending '=' to the version string (á la govendor).

We also simplify the process to reset to the given version (now a
branch or tag): Right now there's a check to supposedly try to avoid
fetching from the remote the version if it already exist locally. But
the previous logic already clones if the directory doesn't exist or
fetches if it does, so this check is pointless. We can safely assume the
version exists once we get to the reset stage.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently we specify versions for Gitlab-Shell, Workhorse and Gitaly
using version strings, to which we prepend 'v' and assume are tags.
These changes allow branches or tags with other name formats to be
specified by prepending '=' to the version string (á la govendor).

We also simplify the process to reset to the given version (now a
branch or tag): Right now there's a check to supposedly try to avoid
fetching from the remote the version if it already exist locally. But
the previous logic already clones if the directory doesn't exist or
fetches if it does, so this check is pointless. We can safely assume the
version exists once we get to the reset stage.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add rake task that prints TOML storage configuration</title>
<updated>2017-04-04T17:35:35+00:00</updated>
<author>
<name>Ahmad Sherif</name>
<email>me@ahmadsherif.com</email>
</author>
<published>2017-04-04T14:06:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=62521f20e4bfead7b224ea9067be9733fc6e2f90'/>
<id>62521f20e4bfead7b224ea9067be9733fc6e2f90</id>
<content type='text'>
Closes gitaly#173
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gitaly#173
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rs-empty-project-misc' into 'master'</title>
<updated>2017-03-30T12:06:23+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-03-30T12:06:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=03538558d9de40beeaf5758fe2a0c6febfef6c96'/>
<id>03538558d9de40beeaf5758fe2a0c6febfef6c96</id>
<content type='text'>

Use `:empty_project` in worker, view, task, serializer, policy, migration, and mailer specs

See merge request !10272</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Use `:empty_project` in worker, view, task, serializer, policy, migration, and mailer specs

See merge request !10272</pre>
</div>
</content>
</entry>
<entry>
<title>Allow backup tests to run locally</title>
<updated>2017-03-29T12:48:06+00:00</updated>
<author>
<name>author Jacob Vosmaer jacob@gitlab.com 1490710538 +0200</name>
<email>author Jacob Vosmaer jacob@gitlab.com 1490710538 +0200</email>
</author>
<published>2017-03-28T14:15:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6b8c2ea866c387e9a8a1ccdc079ecebad9509897'/>
<id>6b8c2ea866c387e9a8a1ccdc079ecebad9509897</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Expand relative paths in storages</title>
<updated>2017-03-29T12:48:05+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2017-03-24T15:52:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=eee07f1c7cacdd24cbd66917ba66e703128f65c6'/>
<id>eee07f1c7cacdd24cbd66917ba66e703128f65c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
