├── .gitignore ├── lib ├── inspectacular │ └── version.rb └── inspectacular.rb ├── sig └── inspectacular.rbs ├── bin ├── setup └── console ├── test ├── test_helper.rb └── test_inspectacular.rb ├── Gemfile ├── .rubocop.yml ├── Rakefile ├── .github └── workflows │ └── main.yml ├── LICENSE.txt ├── Gemfile.lock ├── inspectacular.gemspec ├── README.md └── CODE_OF_CONDUCT.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /.yardoc 3 | /_yardoc/ 4 | /coverage/ 5 | /doc/ 6 | /pkg/ 7 | /spec/reports/ 8 | /tmp/ 9 | -------------------------------------------------------------------------------- /lib/inspectacular/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Inspectacular 4 | VERSION = "1.0.0" 5 | end 6 | -------------------------------------------------------------------------------- /sig/inspectacular.rbs: -------------------------------------------------------------------------------- 1 | module Inspectacular 2 | VERSION: String 3 | # See the writing guide of rbs: https://github.com/ruby/rbs#guides 4 | end 5 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | IFS=$'\n\t' 4 | set -vx 5 | 6 | bundle install 7 | 8 | # Do any other automated setup that you need to do here 9 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | $LOAD_PATH.unshift File.expand_path("../lib", __dir__) 4 | require "inspectacular" 5 | 6 | require "minitest/autorun" 7 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | # Specify your gem's dependencies in inspectacular.gemspec 6 | gemspec 7 | 8 | gem "rake", "~> 13.0" 9 | 10 | gem "minitest", "~> 5.0" 11 | 12 | gem "rubocop", "~> 1.21" 13 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | AllCops: 2 | TargetRubyVersion: 2.7 3 | 4 | Style/StringLiterals: 5 | Enabled: true 6 | EnforcedStyle: double_quotes 7 | 8 | Style/StringLiteralsInInterpolation: 9 | Enabled: true 10 | EnforcedStyle: double_quotes 11 | 12 | Layout/LineLength: 13 | Max: 120 14 | -------------------------------------------------------------------------------- /test/test_inspectacular.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "test_helper" 4 | 5 | class TestInspectacular < Minitest::Test 6 | def test_that_it_has_a_version_number 7 | refute_nil ::Inspectacular::VERSION 8 | end 9 | 10 | def test_it_does_something_useful 11 | assert false 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require "bundler/setup" 5 | require "inspectacular" 6 | 7 | # You can add fixtures and/or initialization code here to make experimenting 8 | # with your gem easier. You can also use a different console, if you like. 9 | 10 | require "irb" 11 | IRB.start(__FILE__) 12 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "bundler/gem_tasks" 4 | require "rake/testtask" 5 | 6 | Rake::TestTask.new(:test) do |t| 7 | t.libs << "test" 8 | t.libs << "lib" 9 | t.test_files = FileList["test/**/test_*.rb"] 10 | end 11 | 12 | require "rubocop/rake_task" 13 | 14 | RuboCop::RakeTask.new 15 | 16 | task default: %i[test rubocop] 17 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Ruby 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | pull_request: 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | name: Ruby ${{ matrix.ruby }} 14 | strategy: 15 | matrix: 16 | ruby: 17 | - '3.2.2' 18 | 19 | steps: 20 | - uses: actions/checkout@v4 21 | - name: Set up Ruby 22 | uses: ruby/setup-ruby@v1 23 | with: 24 | ruby-version: ${{ matrix.ruby }} 25 | bundler-cache: true 26 | - name: Run the default task 27 | run: bundle exec rake 28 | -------------------------------------------------------------------------------- /lib/inspectacular.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "inspectacular/version" 4 | 5 | # Extend any object to get a custom #inspect method with the given attributes. If no attributes are 6 | # given, the default is to inspect the object's #id attribute. 7 | # 8 | # Example: 9 | # 10 | # class User < ApplicationRecord 11 | # extend Inspector[:id, :name, :email] 12 | # end 13 | # 14 | # User.first.inspect 15 | # #=> "# 16 | module Inspectacular 17 | def self.extended(base) # :nodoc: 18 | base.class_eval do 19 | class_attribute :inspected_attrs, instance_predicate: false, default: [:id] 20 | 21 | def inspect 22 | str = "#<#{self.class.name} " 23 | attrs = self.class.inspected_attrs.map { |attr| "#{attr}: #{send(attr).inspect}" } 24 | str << attrs.join(', ') << '>' 25 | end 26 | end 27 | base.inspected_attrs = @inspected_attrs if @inspected_attrs 28 | end 29 | 30 | def self.[](*attrs) 31 | @inspected_attrs = attrs 32 | self 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2023 Joel Moss 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | PATH 2 | remote: . 3 | specs: 4 | inspectacular (1.0.0) 5 | 6 | GEM 7 | remote: https://rubygems.org/ 8 | specs: 9 | ast (2.4.2) 10 | json (2.6.3) 11 | language_server-protocol (3.17.0.3) 12 | minitest (5.20.0) 13 | parallel (1.23.0) 14 | parser (3.2.2.4) 15 | ast (~> 2.4.1) 16 | racc 17 | racc (1.7.1) 18 | rainbow (3.1.1) 19 | rake (13.0.6) 20 | regexp_parser (2.8.2) 21 | rexml (3.2.6) 22 | rubocop (1.57.2) 23 | json (~> 2.3) 24 | language_server-protocol (>= 3.17.0) 25 | parallel (~> 1.10) 26 | parser (>= 3.2.2.4) 27 | rainbow (>= 2.2.2, < 4.0) 28 | regexp_parser (>= 1.8, < 3.0) 29 | rexml (>= 3.2.5, < 4.0) 30 | rubocop-ast (>= 1.28.1, < 2.0) 31 | ruby-progressbar (~> 1.7) 32 | unicode-display_width (>= 2.4.0, < 3.0) 33 | rubocop-ast (1.30.0) 34 | parser (>= 3.2.1.0) 35 | ruby-progressbar (1.13.0) 36 | unicode-display_width (2.5.0) 37 | 38 | PLATFORMS 39 | arm64-darwin-22 40 | x86_64-linux 41 | 42 | DEPENDENCIES 43 | inspectacular! 44 | minitest (~> 5.0) 45 | rake (~> 13.0) 46 | rubocop (~> 1.21) 47 | 48 | BUNDLED WITH 49 | 2.4.20 50 | -------------------------------------------------------------------------------- /inspectacular.gemspec: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "lib/inspectacular/version" 4 | 5 | Gem::Specification.new do |spec| 6 | spec.name = "inspectacular" 7 | spec.version = Inspectacular::VERSION 8 | spec.authors = ["Joel Moss"] 9 | spec.email = ["joel@developwithstyle.com"] 10 | 11 | spec.summary = "Custom inspection for your Ruby objects." 12 | spec.homepage = "https://github.com/joelmoss/inspectacular" 13 | spec.license = "MIT" 14 | spec.required_ruby_version = ">= 2.7.0" 15 | 16 | # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" 17 | 18 | spec.metadata["homepage_uri"] = spec.homepage 19 | spec.metadata["source_code_uri"] = "https://github.com/joelmoss/inspectacular" 20 | spec.metadata["changelog_uri"] = "https://github.com/joelmoss/inspectacular/releases" 21 | 22 | # Specify which files should be added to the gem when it is released. 23 | # The `git ls-files -z` loads the files in the RubyGem that have been added into git. 24 | spec.files = Dir.chdir(__dir__) do 25 | `git ls-files -z`.split("\x0").reject do |f| 26 | (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ .git Gemfile]) 27 | end 28 | end 29 | spec.require_paths = ["lib"] 30 | end 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Inspectacular 2 | 3 | ## Installation 4 | 5 | Install the gem and add to the application's Gemfile by executing: 6 | 7 | bundle add inspectacular 8 | 9 | If bundler is not being used to manage dependencies, install the gem by executing: 10 | 11 | gem install inspectacular 12 | 13 | ## Usage 14 | 15 | Fed up of lengthy `#inspect` output? 😩 16 | 17 | Simply extend any object with `Inspectacular` to get a custom `#inspect` method with the given attributes. 18 | 19 | ```ruby 20 | class User < ApplicationRecord 21 | extend Inspectacular[:id, :name, :email] 22 | end 23 | 24 | User.first.inspect #=> "#'> 25 | ``` 26 | 27 | If no attributes are given, the default is to inspect the object's `#id` attribute. 28 | 29 | ```ruby 30 | class Account < ApplicationRecord 31 | extend Inspectacular 32 | end 33 | 34 | Account.first.inspect #=> "# 35 | ``` 36 | 37 | ## Development 38 | 39 | 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. 40 | 41 | To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). 42 | 43 | ## Contributing 44 | 45 | Bug reports and pull requests are welcome on GitHub at https://github.com/joelmoss/inspectacular. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/joelmoss/inspectacular/blob/master/CODE_OF_CONDUCT.md). 46 | 47 | ## License 48 | 49 | The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). 50 | 51 | ## Code of Conduct 52 | 53 | Everyone interacting in the Inspectacular project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/joelmoss/inspectacular/blob/master/CODE_OF_CONDUCT.md). 54 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. 8 | 9 | ## Our Standards 10 | 11 | Examples of behavior that contributes to a positive environment for our community include: 12 | 13 | * Demonstrating empathy and kindness toward other people 14 | * Being respectful of differing opinions, viewpoints, and experiences 15 | * Giving and gracefully accepting constructive feedback 16 | * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience 17 | * Focusing on what is best not just for us as individuals, but for the overall community 18 | 19 | Examples of unacceptable behavior include: 20 | 21 | * The use of sexualized language or imagery, and sexual attention or 22 | advances of any kind 23 | * Trolling, insulting or derogatory comments, and personal or political attacks 24 | * Public or private harassment 25 | * Publishing others' private information, such as a physical or email 26 | address, without their explicit permission 27 | * Other conduct which could reasonably be considered inappropriate in a 28 | professional setting 29 | 30 | ## Enforcement Responsibilities 31 | 32 | Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. 33 | 34 | Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. 35 | 36 | ## Scope 37 | 38 | This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. 39 | 40 | ## Enforcement 41 | 42 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at joel@developwithstyle.com. All complaints will be reviewed and investigated promptly and fairly. 43 | 44 | All community leaders are obligated to respect the privacy and security of the reporter of any incident. 45 | 46 | ## Enforcement Guidelines 47 | 48 | Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: 49 | 50 | ### 1. Correction 51 | 52 | **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. 53 | 54 | **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. 55 | 56 | ### 2. Warning 57 | 58 | **Community Impact**: A violation through a single incident or series of actions. 59 | 60 | **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. 61 | 62 | ### 3. Temporary Ban 63 | 64 | **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. 65 | 66 | **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. 67 | 68 | ### 4. Permanent Ban 69 | 70 | **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. 71 | 72 | **Consequence**: A permanent ban from any sort of public interaction within the community. 73 | 74 | ## Attribution 75 | 76 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, 77 | available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 78 | 79 | Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). 80 | 81 | [homepage]: https://www.contributor-covenant.org 82 | 83 | For answers to common questions about this code of conduct, see the FAQ at 84 | https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. 85 | --------------------------------------------------------------------------------