Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update migration_style_guide.md with new detailsfix_migration_style_guide | Drew Blessing | 2016-06-15 | 1 | -2/+14 |
| | |||||
* | Instrument private/protected methods | Paco Guzman | 2016-06-14 | 1 | -2/+2 |
| | | | | | | | By default instrumentation will instrument public, protected and private methods, because usually heavy work is done on private method or at least that’s what facts is showing | ||||
* | Measure CPU time for instrumented methods | Paco Guzman | 2016-06-14 | 1 | -5/+6 |
| | |||||
* | Merge branch 'doc-styleguide-move-locations' into 'master' | Achilleas Pipinellis | 2016-06-13 | 1 | -0/+42 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | Add guide on changing a document's location ## What does this MR do? Add a documentation styleguide when changing a document's location. ## What are the relevant issue numbers? https://gitlab.com/gitlab-org/gitlab-ce/issues/3349 See merge request !4624 | ||||
| * | Add guide on changing a document's location | Achilleas Pipinellis | 2016-06-13 | 1 | -0/+42 |
| | | | | | | | | [ci skip] | ||||
* | | Change to new Notes styleguide | Achilleas Pipinellis | 2016-06-13 | 1 | -5/+5 |
|/ | | | | [ci skip] | ||||
* | Reject idea of using white/gray button depends on bg color | Dmitriy Zaporozhets | 2016-06-08 | 1 | -1/+1 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Add relevant commands to the licensing document, resolve some feedback. | Connor Shea | 2016-06-06 | 2 | -3/+34 |
| | |||||
* | Make sure to mention the GNU Project and OSI-provided information regarding ↵ | Connor Shea | 2016-06-06 | 1 | -2/+6 |
| | | | | the GPL so no one tries to disagree with that decision. | ||||
* | Add Licensing information and guidelines to the Documentation. | Connor Shea | 2016-06-06 | 2 | -0/+59 |
| | |||||
* | Fix typodz-more-ui-guides | Dmitriy Zaporozhets | 2016-06-02 | 1 | -1/+1 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Add icons and buttons to UI guide | Dmitriy Zaporozhets | 2016-06-02 | 1 | -1/+21 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | updtae -> update | Chris Spicer | 2016-05-29 | 1 | -1/+1 |
| | |||||
* | Merge branch 'dz-improve-ui-guide' into 'master' | Jacob Schatz | 2016-05-25 | 1 | -0/+28 |
|\ | | | | | | | | | | | | | Write some thoughts to the UI guide cc @skyruler See merge request !4290 | ||||
| * | Fix the english. | Jacob Schatz | 2016-05-25 | 1 | -19/+14 |
| | | |||||
| * | Write some thoughts to the UI guide | Dmitriy Zaporozhets | 2016-05-25 | 1 | -0/+33 |
| | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | | Enable RSpec/NotToNot cop and auto-correct offensesrs-rubocop-nottonot | Robert Speicher | 2016-05-24 | 1 | -1/+1 |
|/ | | | | Also removes the note from the development/testing.md guide | ||||
* | Merge branch 'migration-helpers' into 'master' | Robert Speicher | 2016-05-19 | 1 | -2/+44 |
|\ | | | | | | | | | | | | | | | | | | | Added helper methods for database migrations These helpers can ultimately be used to write migrations that don't require downtime. See #15464 for more information. See merge request !3860 | ||||
| * | Updated migration styleguide for new helpers | Yorick Peterse | 2016-05-12 | 1 | -2/+44 |
| | | |||||
* | | Change all occurrences of doc.gitlab.com to docs.gitlab.com | Achilleas Pipinellis | 2016-05-13 | 1 | -2/+2 |
|/ | | | | [ci skip] | ||||
* | Merge branch 'document-adding-instrumentation' into 'master' | Rémy Coutable | 2016-05-09 | 1 | -6/+123 |
|\ | | | | | | | | | | | | | | | | | Added documentation on how to instrument methods This will hopefully remove me as a single point of failure when it comes to adding instrumentation. cc @axil @rspeicher See merge request !4035 | ||||
| * | Added documentation on how to instrument methodsdocument-adding-instrumentation | Yorick Peterse | 2016-05-05 | 1 | -6/+123 |
| | | | | | | | | [ci skip] | ||||
* | | Add a note to testing docs about the `:each` argument to RSpec hooks | Robert Speicher | 2016-05-05 | 1 | -0/+1 |
| | | | | | | | | [ci skip] | ||||
* | | Fixed username links in the performance guide | Yorick Peterse | 2016-05-04 | 1 | -3/+3 |
|/ | | | | | | | | | These would end up being rendered as: <a href="...">@yorickpeterse</a> <a href="...">@yorickpeterse</a> [ci skip] | ||||
* | Copyedit performance document | Achilleas Pipinellis | 2016-05-03 | 1 | -22/+22 |
| | | | | [ci skip] | ||||
* | Added performance guidelinesperformance-guide | Yorick Peterse | 2016-04-30 | 2 | -0/+259 |
| | | | | | | Fixes gitlab-org/gitlab-ce#15254 gitlab-org/gitlab-ce#14277 [ci skip] | ||||
* | Use rake db:reset instead of db:setup | Yorick Peterse | 2016-04-14 | 1 | -1/+1 |
| | | | | | | | | | | | | 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 -> projects.id MySQL will complain whenever you try to drop the "projects" table first even when using "DROP TABLE ... CASCADE". | ||||
* | Merge branch 'metrics-measure-block-transaction' into 'master' | Yorick Peterse | 2016-04-11 | 1 | -19/+18 |
|\ | | | | | | | | | Store block timings as transaction values See merge request !3649 | ||||
| * | Track call counts in Gitlab::Metrics.measure_blockmetrics-measure-block-transaction | Yorick Peterse | 2016-04-11 | 1 | -3/+4 |
| | | |||||
| * | Store block timings as transaction values | Yorick Peterse | 2016-04-11 | 1 | -19/+17 |
| | | | | | | | | | | | | | | | | | | | | This makes it easier to query, simplifies the code, and makes it possible to figure out what transaction the data belongs to (simply because it's now stored _in_ the transaction). This new setup keeps track of both the real/wall time _and_ CPU time spent in a block, both measured using milliseconds (to keep all units the same). | ||||
* | | Re-add a note about sarcasm to the Code Review guiders-code-review-guide | Robert Speicher | 2016-04-10 | 1 | -0/+3 |
| | | | | | | | | [ci skip] | ||||
* | | First pass at a Code Review guide | Robert Speicher | 2016-04-09 | 2 | -0/+77 |
|/ | | | | | | | Largely borrowed from thoughtbot's code review guide, so attribution is included. [ci skip] | ||||
* | Minor Testing guide copyedits | Robert Speicher | 2016-04-09 | 1 | -8/+10 |
| | | | | [ci skip] | ||||
* | Merge branch 'remove-todo' into 'master' | Dmitriy Zaporozhets | 2016-04-08 | 1 | -4/+0 |
|\ | | | | | | | | | | | | | Remove TODO for not documented stuff We should not put a `TODO` in a released product. See merge request !3553 | ||||
| * | Remove TODO for not documented stuff | Robert Schilling | 2016-04-05 | 1 | -4/+0 |
| | | |||||
* | | Merge branch 'rs-testing-guide' into 'master' | Dmitriy Zaporozhets | 2016-04-08 | 2 | -0/+135 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | First pass at a Testing styleguide Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14121 [ci skip] See merge request !3465 | ||||
| * | | Add a link back to Development documentation to Testing guiders-testing-guide | Robert Speicher | 2016-04-01 | 1 | -0/+4 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | Add a section about `let` to the Testing guide | Robert Speicher | 2016-04-01 | 1 | -4/+25 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | Factories don't have to be limited to `ActiveRecord` objects | Robert Speicher | 2016-04-01 | 1 | -0/+2 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | Add a note about Four-Phase Test to Testing guide | Robert Speicher | 2016-04-01 | 1 | -0/+2 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | First pass at a Testing styleguide | Robert Speicher | 2016-04-01 | 2 | -0/+106 |
| |/ | | | | | | | [ci skip] | ||||
* | | Added dev guide for measuring Ruby blocksmetrics-measure-block | Yorick Peterse | 2016-04-06 | 2 | -0/+38 |
|/ | |||||
* | SCSS Style Guide fixes. | connorshea | 2016-03-23 | 1 | -3/+24 |
| | | | | | | Fix a typo and add a section on ignoring issues. [ci skip] | ||||
* | Add SCSS Lint, CSSComb config file, run SCSS Lint in GitLab CI, add ↵ | connorshea | 2016-03-14 | 1 | -0/+194 |
| | | | | | | documentation for SCSS Style Guide. See !3069 for more information. | ||||
* | Removed benchmark suite and its documentationremove-benchmark-suite | Yorick Peterse | 2016-03-10 | 2 | -70/+0 |
| | | | | | | | | | The rationale for this can be found in https://gitlab.com/gitlab-org/gitlab-ce/issues/13718 but in short the benchmark suite no longer serves a good purpose now that we have proper production monitoring in place. Fixes gitlab-org/gitlab-ce#13718 | ||||
* | Added basic SQL guidelinessql-guide | Yorick Peterse | 2016-03-08 | 2 | -0/+220 |
| | | | | [ci skip] | ||||
* | Change doc styleguide to use quotes for notesnotes_guidelines | Achilleas Pipinellis | 2016-02-29 | 1 | -3/+13 |
| | | | | [ci skip] | ||||
* | Merge branch 'rs-development-docs' into 'master' | Douwe Maan | 2016-02-29 | 2 | -5/+109 |
|\ | | | | | | | | | | | | | | | | | | | Add "Gotchas" to development docs Also: - Alphabetizes the "Developer" index page - Fixes the broken `db_dump.md` link See merge request !2846 | ||||
| * | Update Gotchas docrs-development-docs | Robert Speicher | 2016-02-17 | 1 | -8/+7 |
| | | | | | | | | [ci skip] | ||||
| * | Add "Gotchas" development doc | Robert Speicher | 2016-02-16 | 2 | -0/+105 |
| | |