-
Notifications
You must be signed in to change notification settings - Fork 463
Comparing changes
Open a pull request
base repository: Apipie/apipie-rails
base: v0.9.3
head repository: Apipie/apipie-rails
compare: v0.9.4
- 13 commits
- 37 files changed
- 4 contributors
Commits on Mar 8, 2023
-
Disables Style/IfUnlessModifier rule (#841)
Having this rule enabled forces the modifier if statement to be used So this ``` if Apipie.configuration.swagger_api_host.present? @Swagger[:host] = Apipie.configuration.swagger_api_host end ``` should be changed to `@swagger[:host] = Apipie.configuration.swagger_api_host if Apipie.configuration.swagger_api_host.present?` resulting in longer, harder to read lines. Since the use the regular if statement all over the gem's codebase we can disable this rule.
Configuration menu - View commit details
-
Copy full SHA for 43428fc - Browse repository at this point
Copy the full SHA 43428fcView commit details
Commits on Mar 20, 2023
-
Layout/SpaceAroundMethodCallOperator-20230317233257 (#847)
* 🚓 regenerate rubocop todo * 🚓 Layout/SpaceAroundMethodCallOperator * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com>
Configuration menu - View commit details
-
Copy full SHA for 2fc6aca - Browse repository at this point
Copy the full SHA 2fc6acaView commit details -
Disables FrozenStringLiteralComment rule (#840)
* Disables FrozenStringLiteralComment rule Why https://github.com/testdouble/standard#why-arent-frozen_string_literal-true-magic-comments-enforced * Pass error message to constructor instead of overriding `#to_s` `Exception#to_s` returns the given message, we can pass the error message to constructor instead of overriding the method. This will also fix the Rubocop offenses. * Exclude files from MissingSuper
Configuration menu - View commit details
-
Copy full SHA for d5cd745 - Browse repository at this point
Copy the full SHA d5cd745View commit details -
RSpec/EmptyLineAfterExample-20230301233314 (#834)
* 🚓 regenerate rubocop todo * 🚓 RSpec/EmptyLineAfterExample * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2e37a03 - Browse repository at this point
Copy the full SHA 2e37a03View commit details -
Layout/SpaceAroundEqualsInParameterDefault-20230315233256 (#846)
* 🚓 regenerate rubocop todo * 🚓 Layout/SpaceAroundEqualsInParameterDefault * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e273d55 - Browse repository at this point
Copy the full SHA e273d55View commit details -
Rails/TimeZone-20230310233258 (#844)
* 🚓 regenerate rubocop todo * 🚓 Rails/TimeZone * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 92f115f - Browse repository at this point
Copy the full SHA 92f115fView commit details
Commits on Mar 23, 2023
-
Performance/StringInclude-20230322233257 (#850)
* 🚓 regenerate rubocop todo * 🚓 Performance/StringInclude * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com>
Configuration menu - View commit details
-
Copy full SHA for a86ac97 - Browse repository at this point
Copy the full SHA a86ac97View commit details -
Style/RegexpLiteral-20230320233251 (#849)
* 🚓 regenerate rubocop todo * 🚓 Style/RegexpLiteral * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ce281e1 - Browse repository at this point
Copy the full SHA ce281e1View commit details
Commits on Mar 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2bb7ca5 - Browse repository at this point
Copy the full SHA 2bb7ca5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f14191 - Browse repository at this point
Copy the full SHA 8f14191View commit details
Commits on Apr 6, 2023
-
Style/RedundantConstantBase-20230403233322 (#858)
* 🚓 regenerate rubocop todo * 🚓 Style/RedundantConstantBase * 🚓 regenerate rubocop todo --------- Co-authored-by: Rubocop Challenger <rubocop@payrollhero.com>
Configuration menu - View commit details
-
Copy full SHA for 5fc1bf5 - Browse repository at this point
Copy the full SHA 5fc1bf5View commit details
Commits on Apr 10, 2023
-
Separate nested resource name (#855)
* Fix namespaced resources seperator The expected behavior when `Apipie.configuration.namespaced_resources?` is true is for a nested resource like `V1::Users::TweetsController` to return `v1-users-tweets` however it was returning `v1userstweets` * Refactor resource description spec * Update `ResourceDescription`'s `name` `resource_name` and id - Rename the `resource_name` argument to `id`, it can be missleading - Create `name` method return a human readable resource name depending on the `@id`. Example if id is `some-nested-resource` `#name` will return `Some::Nested::Resource`
Configuration menu - View commit details
-
Copy full SHA for 1f28905 - Browse repository at this point
Copy the full SHA 1f28905View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d8823e - Browse repository at this point
Copy the full SHA 9d8823eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.9.3...v0.9.4