Skip to content

Commit

Permalink
Version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stgeneral committed Aug 17, 2024
1 parent 9594e9a commit 9fee5d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.1.3] - 2022-08-17

- Set minimal version for gem dependencies

## [0.1.2] - 2022-08-17

- Added `human_name` and `human_name_plural` helpers
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
auxiliary_rails_resourceable (0.1.2)
auxiliary_rails_resourceable (0.1.3)
pagy (>= 6.0.4)
pundit (>= 2.2)
rails (>= 5.2)
Expand Down Expand Up @@ -244,4 +244,4 @@ DEPENDENCIES
rubocop-rspec

BUNDLED WITH
2.1.2
2.5.17
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ _search_form.html.erb

## Usage

Just define `ResourcesController` and inherit controllers from it for fulfilling them with the all the basic CRUD actions.

```ruby
# app/controllers/resources_controller.rb
# @abstract
Expand Down Expand Up @@ -89,7 +91,7 @@ end
## References

This gem is heavily inspired by [inherited_resources](https://github.com/activeadmin/inherited_resources) and [activeadmin](https://github.com/activeadmin/activeadmin).
It even follows the naming for helpers of `inherited_resources` and, in simple cases, can be used as a drop-in replacement with no or just a few code changes.
It even follows the naming for helpers of `inherited_resources`, but much lighter (~250 lines of code only), with an approach of "just overwrite what you need" instead of complex configuration options. And, in simple cases, can be used as a drop-in replacement with no or just a few code changes.

## Development

Expand Down
2 changes: 1 addition & 1 deletion lib/auxiliary_rails_resourceable/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module AuxiliaryRailsResourceable
VERSION = '0.1.2'.freeze
VERSION = '0.1.3'.freeze
end

0 comments on commit 9fee5d7

Please sign in to comment.