Add rake as a development dependency and configure RSpec and Rubocop tasks. This provides developers with a familiar and convenient interface for running common tasks.
❯ rake -AT
rake build # Build mock_redis-0.36.0.gem into the pkg directory
rake build:checksum # Generate SHA512 checksum if mock_redis-0.36.0.gem into the checksums directory
rake install # Build and install mock_redis-0.36.0.gem into system gems
rake install:local # Build and install mock_redis-0.36.0.gem into system gems without network access
rake release[remote] # Create tag v0.36.0 and build and push mock_redis-0.36.0.gem to rubygems.org
rake release:guard_clean #
rake release:rubygem_push #
rake release:source_control_push[remote] #
rake rubocop # Run RuboCop
rake rubocop:auto_correct #
rake rubocop:autocorrect # Autocorrect RuboCop offenses (only when it's safe)
rake rubocop:autocorrect_all # Autocorrect RuboCop offenses (safe and unsafe)
rake spec # Run RSpec code examples
Add rake as a development dependency and configure RSpec and Rubocop tasks. This provides developers with a familiar and convenient interface for running common tasks.