summaryrefslogtreecommitdiff
path: root/lib/generators
Commit message (Collapse)AuthorAgeFilesLines
* Enable even more frozen string in lib/**/*.rbgfyoung2018-10-081-0/+2
| | | | | | | | | | | | | | | | | | | | Enables frozen string for the following files: * lib/generators/**/*.rb * lib/gitaly/**/*.rb * lib/google_api/**/*.rb * lib/haml_lint/**/*.rb * lib/json_web_token/**/*.rb * lib/mattermost/**/*.rb * lib/microsoft_teams/**/*.rb * lib/object_storage/**/*.rb * lib/omni_auth/**/*.rb * lib/peek/**/*.rb * lib/rouge/**/*.rb * lib/rspec_flaky/**/*.rb * lib/system_check/**/*.rb Partially addresses #47424.
* Fix timestamp to include %M instead of %I for post-deploy migrations.ab-44121-post-deploy-migrations-time-formatAndreas Brandl2018-03-121-1/+1
| | | | Closes #44121.
* require rails/generators for generatorsYorick Peterse2016-11-011-0/+2
| | | | | | Because this code resides in lib/ it may be eager loaded. Rails in turn doesn't define Rails::Generators by default unless you explicitly require "rails/generators".
* Support for post deployment migrationsbackground-migrationsYorick Peterse2016-10-311-0/+13
These are regular Rails migrations that are executed by default. A user can opt-out of these migrations by setting an environment variable during the deployment process. Fixes gitlab-org/gitlab-ce#22133