sds / mock_redis

Mock Redis gem for Ruby
Other
492 stars 154 forks source link

Add rake as a development dependency #264

Closed orien closed 1 year ago

orien commented 1 year ago

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