<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/doc/development/rake_tasks.md, branch commit-description-border</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>Remove unused `gitlab:generate_docs` Rake task</title>
<updated>2016-11-03T17:25:58+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2016-11-03T10:38:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4ba789cd40dfca5de9569dc34db2c4b0252437fc'/>
<id>4ba789cd40dfca5de9569dc34db2c4b0252437fc</id>
<content type='text'>
This was the only thing using the `sdoc` gem, which was blocking another
gem from updating.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was the only thing using the `sdoc` gem, which was blocking another
gem from updating.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'run tests' docs from GDK</title>
<updated>2016-08-05T15:19:37+00:00</updated>
<author>
<name>Jacob Vosmaer</name>
<email>jacob@gitlab.com</email>
</author>
<published>2016-08-05T15:19:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ef589219d2aecc9caeaf53e4e9d5eb49f6fb590f'/>
<id>ef589219d2aecc9caeaf53e4e9d5eb49f6fb590f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade Gemojione from 2.6.1 to 3.0.1.</title>
<updated>2016-07-18T16:40:16+00:00</updated>
<author>
<name>Connor Shea</name>
<email>connor.james.shea@gmail.com</email>
</author>
<published>2016-07-13T14:43:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6a06c5cfb92d7d4e390e63104fd42d24a9159048'/>
<id>6a06c5cfb92d7d4e390e63104fd42d24a9159048</id>
<content type='text'>
This adds the 2016 emoji as well as support for using SVG images instead of PNGs.

It also fixes a number of incorrectly categorized emoji and other minor issues.

Upgrade Rake task for Gemojione 3.0.0 and generate sprites.

Upgrade aliases.json by pulling down index.json from the gemojione repository and running the generate_aliases.rb file.

Changelog: https://github.com/jonathanwiesel/gemojione/blob/master/CHANGELOG.md#v301-2016-07-16

For the specific emoji added to the Unicode standard, see: http://emojione.com/releases/2.2.4/

Huge kudos to Jonathan Wiesel (@jonathanwiesel) for his work on the gemojione gem!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the 2016 emoji as well as support for using SVG images instead of PNGs.

It also fixes a number of incorrectly categorized emoji and other minor issues.

Upgrade Rake task for Gemojione 3.0.0 and generate sprites.

Upgrade aliases.json by pulling down index.json from the gemojione repository and running the generate_aliases.rb file.

Changelog: https://github.com/jonathanwiesel/gemojione/blob/master/CHANGELOG.md#v301-2016-07-16

For the specific emoji added to the Unicode standard, see: http://emojione.com/releases/2.2.4/

Huge kudos to Jonathan Wiesel (@jonathanwiesel) for his work on the gemojione gem!
</pre>
</div>
</content>
</entry>
<entry>
<title>Added basic docs for the Emoji Rake tasks</title>
<updated>2016-06-23T14:17:49+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2016-06-23T13:30:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a5670cd59b8109105a41bb487e2770e3fe0b54e9'/>
<id>a5670cd59b8109105a41bb487e2770e3fe0b54e9</id>
<content type='text'>
Fixes gitlab-org/gitlab-ce#14794 gitlab-com/performance#13

[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes gitlab-org/gitlab-ce#14794 gitlab-com/performance#13

[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Use rake db:reset instead of db:setup</title>
<updated>2016-04-14T13:53:54+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2016-04-14T13:53:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a54af831bae023770bf9b2633cc45ec0d5f5a66a'/>
<id>a54af831bae023770bf9b2633cc45ec0d5f5a66a</id>
<content type='text'>
Using db:reset ensures existing tables are first dropped. This in turn
ensures that we can drop tables regardless of any foreign key
constraints. While CE currently doesn't have any foreign keys EE defines
the following relation:

    remote_mirrors.project_id -&gt; projects.id

MySQL will complain whenever you try to drop the "projects" table first
even when using "DROP TABLE ... CASCADE".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using db:reset ensures existing tables are first dropped. This in turn
ensures that we can drop tables regardless of any foreign key
constraints. While CE currently doesn't have any foreign keys EE defines
the following relation:

    remote_mirrors.project_id -&gt; projects.id

MySQL will complain whenever you try to drop the "projects" table first
even when using "DROP TABLE ... CASCADE".
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in rake task doc</title>
<updated>2015-10-31T21:56:24+00:00</updated>
<author>
<name>Robert Schilling</name>
<email>rschilling@student.tugraz.at</email>
</author>
<published>2015-10-31T21:56:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=98008a2db85a5320d885cd515557d4093a1cba24'/>
<id>98008a2db85a5320d885cd515557d4093a1cba24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix `rake services:doc` generation</title>
<updated>2015-09-03T20:54:16+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-09-03T20:49:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a73044320f806c660a21992fdbf63deb161c615e'/>
<id>a73044320f806c660a21992fdbf63deb161c615e</id>
<content type='text'>
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove warning from db seed since it is called by db setup.</title>
<updated>2014-12-04T20:22:21+00:00</updated>
<author>
<name>Sytse Sijbrandij</name>
<email>sytses@gmail.com</email>
</author>
<published>2014-12-04T20:22:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3dc25ba331c4f5c4708b0fcd8478d943d182d760'/>
<id>3dc25ba331c4f5c4708b0fcd8478d943d182d760</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix notifications for developers that don't read the documentation.</title>
<updated>2014-12-04T15:54:08+00:00</updated>
<author>
<name>Sytse Sijbrandij</name>
<email>sytses@gmail.com</email>
</author>
<published>2014-12-04T15:54:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=704b7237e6c4daa3642c01f8803072fdc3a45eaf'/>
<id>704b7237e6c4daa3642c01f8803072fdc3a45eaf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed typos in Development - Rake Tasks doc</title>
<updated>2014-07-31T16:55:13+00:00</updated>
<author>
<name>Rob Taylor</name>
<email>rob@robbytaylor.co.uk</email>
</author>
<published>2014-07-31T16:55:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=38a692d20be957ebf0c8a71937887a61c6bb2a23'/>
<id>38a692d20be957ebf0c8a71937887a61c6bb2a23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
