Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# ActiveRecord::AssociatedObject

[![Ruby Users Forum](https://img.shields.io/discourse/topics?server=https%3A%2F%2Fwww.rubyforum.org&style=flat&logo=discourse&label=Ruby%20Users%20Forum)](https://www.rubyforum.org/tag/active-record-associated-object/60)

Rails applications can end up with models that get way too big, and so far, the
Ruby community response has been Service Objects. But sometimes `app/services`
can turn into another junk drawer that doesn't help you build and make concepts for your Domain Model.
Expand Down Expand Up @@ -576,6 +578,10 @@ If bundler is not being used to manage dependencies, install the gem by executin

$ gem install active_record-associated_object

## Community

Join us in the `active_record-associated_object` tag on the [Ruby Users Forum](https://www.rubyforum.org/tag/active-record-associated-object/60), and the [Spinel Discord](https://discord.gg/u34TcumAk8).

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
Expand Down
7 changes: 4 additions & 3 deletions active_record-associated_object.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ Gem::Specification.new do |spec|
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["mailing_list_uri"] = "https://www.rubyforum.org/tag/active-record-associated-object/60"

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand Down
Loading