- 28 Sep, 2019 1 commit
-
-
Andrew W. Lee authored
Changed references to `--additional_file_patterns` to be `--additional-file-patterns` to make it consistent with other flags.
-
- 26 Sep, 2019 1 commit
-
-
Andrew W. Lee authored
Adds tests for `.include_routes?`, `.include_models?`, `.skip_on_migration?`. Also moves the `TRUE_RE` under the `Annotate::Constants` namespace.
-
- 16 Sep, 2019 1 commit
-
-
rnitta authored
-
- 03 Sep, 2019 2 commits
-
-
Andrew W. Lee authored
-
Andrew W. Lee authored
Prior to this change, `Annotate.include_models?` returned the inverse of `Annotate.include_routes?`. This made it so annotating models and routes was not possible to do together. This PR adds an explicit `--models` flag and also adds it the option to `lib/generators/annotate/templates/auto_annotate_models.rake` with the default being set to `false`. Fixes #563 and undoes the bug introduced in #485.
-
- 02 Sep, 2019 1 commit
-
-
Prateek Choudhary authored
-
- 08 Aug, 2019 1 commit
-
-
Ryan authored
Add better documentation for new option for additional file patterns. Implemented in #633 and #636.
-
- 06 Aug, 2019 1 commit
-
-
Ryan authored
Adds option for additional file patterns (implemented in #633) in the CLI.
-
- 16 Jul, 2019 1 commit
-
-
Andrew W. Lee authored
Refactored Parser to isolate changes being made to ENV. This way we have an intermediate step where we know the environment variables being set.
-
- 10 Jul, 2019 1 commit
-
-
Ryan authored
This PR adds an option named `additional_file_patterns`. You can specify custom path patterns (including globs) that the gem will use to annotate. For example, I used it like this on a project: ```ruby Annotate.set_defaults( 'additional_file_patterns' => [ File.join(Rails.application.root, 'app/lib/forms/%PLURALIZED_MODEL_NAME%/**/*.rb'), File.join(Rails.application.root, 'spec/lib/forms/%PLURALIZED_MODEL_NAME%/**/*.rb') ], ... ) ``` This makes it possible to have files nested under a directory which corresponds to the model. I believe this fixes #594.
-
- 07 Jul, 2019 1 commit
-
-
Andrew W. Lee authored
Currently there's no test coverage on CLI. This adds tests for a new class Parser which will replace the command line options currently in bin/annotate. The technical direction I'm planning to go is to remove ENV variables completely and to have things passed into as arguments. Will be adding deprecation warnings in 3.0 and then deprecate ENV variables completely in 3.1. Deprecation warnings will be non-blocking in 3.0 when an ENV variable is set and an argument isn't passed in, and will becoming blocking in 3.1.
-
- 23 May, 2019 1 commit
-
-
Colby Melvin authored
Handle potential negative padding in `#mb_chars_ljust` when having a `col_length` > 16, the default hardcoded value of `bare_type_allowance`.
-
- 28 Apr, 2019 1 commit
-
-
Shu Fujita authored
In AnnotateRoutes, there were many public methods that is not used in other classes or modules. Before my extension, I made these methods private and sort them in order of appearance. All tests were passed. Please trace each commits carefully. I didn't nothing special. The commits consist of coordinating code.
-
- 22 Apr, 2019 1 commit
-
-
Andrew W. Lee authored
-
- 08 Apr, 2019 1 commit
-
-
Daisuke Yokomoto authored
Add --frozen option to abort instead of write annotation. This is mainly for CI environment to detect missing annotation. Similar motivation with bundle install --frozen. works like: ``` $ rake db:migrate frozen=yes annotate error. spec/models/user_spec.rb needs to be updated, but annotate was run with `--frozen ```
-
- 15 Feb, 2019 2 commits
-
-
Ben Brook authored
-
Artem Rashev authored
Since Rails full engines run as non-namespaced applications but all their app-related tasks still prefixed with `app:`
-
- 14 Feb, 2019 1 commit
-
-
Yuichi Tanikawa authored
- Use Rake::Task#enhance insteaad of defining same tasks again - Remove hooking db:migrate:change task which doesn't exist - Fix hooking db:migrate:reset task so that the annotation runs after all migration tasks (#548)
-
- 22 Jan, 2019 1 commit
-
-
Tim Perkins authored
-
- 09 Sep, 2018 1 commit
-
-
oieioi authored
This fixes alignment of Japanese, Korean and Chinese fullwidth character comments. The displayed widths of multi-byte fullwidth characters are generally twice as large as the ASCII characters, but String#size returns only the number of characters. So if the column comment contains fullwidth multibyte characters, the alignment is broken.
-
- 06 Sep, 2018 4 commits
-
-
Jeremy Mickelson authored
* refactor and simplify returns for annotate_one_file * fix rubocop offenses
-
Jeremy Mickelson authored
-
Jeremy Mickelson authored
-
Jeremy Mickelson authored
-
- 28 Aug, 2018 1 commit
-
-
Michael Siegfried authored
In rails 4, columns do not respond to `bigint?`. However, in both rails 4 and rails 5, columns do respond to `sql_type`. This way, annotations should work in both versions.
-
- 13 Jun, 2018 1 commit
-
-
yhirano55 authored
-
- 10 May, 2018 1 commit
-
-
yhirano55 authored
* :with_comment option is flag * It should use `true?` instead of `fallback`.
-
- 21 Apr, 2018 1 commit
-
-
cuong.tran authored
-
- 20 Apr, 2018 1 commit
-
-
Trevor authored
-
- 23 Mar, 2018 1 commit
-
-
Shou Ya authored
-
- 23 Feb, 2018 1 commit
-
-
ramaboo-deliv authored
-
- 04 Dec, 2017 1 commit
-
-
0x01f7 authored
-
- 01 Dec, 2017 1 commit
-
-
0x01f7 authored
-
- 01 Nov, 2017 1 commit
-
-
Tony Ta authored
-
- 20 Oct, 2017 1 commit
-
-
Alexander Belozerov authored
-
- 18 Oct, 2017 3 commits
-
-
Alexander Belozerov authored
-
Alexander Belozerov authored
-
Alexander Belozerov authored
-
- 13 Oct, 2017 1 commit
-
-
Doug Hammond authored
* Hook up with-comment option to rake tasks and CL. * with_comment option handles commentless columns. * Style fixes.
-
- 11 Oct, 2017 1 commit
-
-
ryu39 authored
-