much-style-guide 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/LICENSE +22 -0
- data/README.md +31 -0
- data/lib/much-style-guide.rb +5 -0
- data/lib/much-style-guide/rubocop.yml +173 -0
- data/lib/much-style-guide/rubocop_shopify-v1.0.7.yml +1024 -0
- data/lib/much-style-guide/version.rb +5 -0
- data/log/.keep +0 -0
- data/much-style-guide.gemspec +30 -0
- data/test/helper.rb +12 -0
- data/test/support/factory.rb +7 -0
- data/test/system/.keep +0 -0
- data/test/unit/.keep +0 -0
- metadata +104 -0
    
        data/log/.keep
    ADDED
    
    | 
            File without changes
         | 
| @@ -0,0 +1,30 @@ | |
| 1 | 
            +
            # -*- encoding: utf-8 -*-
         | 
| 2 | 
            +
            # frozen_string_literal: true
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            lib = File.expand_path("../lib", __FILE__)
         | 
| 5 | 
            +
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         | 
| 6 | 
            +
            require "much-style-guide/version"
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            Gem::Specification.new do |gem|
         | 
| 9 | 
            +
              gem.name        = "much-style-guide"
         | 
| 10 | 
            +
              gem.version     = MuchStyleGuide::VERSION
         | 
| 11 | 
            +
              gem.authors     = ["Kelly Redding", "Collin Redding"]
         | 
| 12 | 
            +
              gem.email       = ["kelly@kellyredding.com", "collin.redding@me.com"]
         | 
| 13 | 
            +
              gem.summary     = "A style-guide with Rubocop configs."
         | 
| 14 | 
            +
              gem.description = "A style-guide with Rubocop configs."
         | 
| 15 | 
            +
              # gem.homepage    = "TODO: homepage"
         | 
| 16 | 
            +
              gem.license     = "MIT"
         | 
| 17 | 
            +
             | 
| 18 | 
            +
              gem.files = `git ls-files | grep "^[^.]"`.split($INPUT_RECORD_SEPARATOR)
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
         | 
| 21 | 
            +
              gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
         | 
| 22 | 
            +
              gem.require_paths = ["lib"]
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              gem.required_ruby_version = "~> 2.5"
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              gem.add_development_dependency("assert", ["~> 2.19.2"])
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              gem.add_development_dependency("rubocop",             ["~> 1.7.0"])
         | 
| 29 | 
            +
              gem.add_development_dependency("rubocop-performance", ["~> 1.9.2"])
         | 
| 30 | 
            +
            end
         | 
    
        data/test/helper.rb
    ADDED
    
    | @@ -0,0 +1,12 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # This file is automatically required when you run `assert`; put any test
         | 
| 4 | 
            +
            # helpers here.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Add the root dir to the load path.
         | 
| 7 | 
            +
            $LOAD_PATH.unshift(File.expand_path("../..", __FILE__))
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # Require pry for debugging (`binding.pry`).
         | 
| 10 | 
            +
            require "pry"
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            require "test/support/factory"
         | 
    
        data/test/system/.keep
    ADDED
    
    | 
            File without changes
         | 
    
        data/test/unit/.keep
    ADDED
    
    | 
            File without changes
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,104 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: much-style-guide
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.1.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Kelly Redding
         | 
| 8 | 
            +
            - Collin Redding
         | 
| 9 | 
            +
            autorequire: 
         | 
| 10 | 
            +
            bindir: bin
         | 
| 11 | 
            +
            cert_chain: []
         | 
| 12 | 
            +
            date: 2021-01-08 00:00:00.000000000 Z
         | 
| 13 | 
            +
            dependencies:
         | 
| 14 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 15 | 
            +
              name: assert
         | 
| 16 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            +
                requirements:
         | 
| 18 | 
            +
                - - "~>"
         | 
| 19 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 20 | 
            +
                    version: 2.19.2
         | 
| 21 | 
            +
              type: :development
         | 
| 22 | 
            +
              prerelease: false
         | 
| 23 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 24 | 
            +
                requirements:
         | 
| 25 | 
            +
                - - "~>"
         | 
| 26 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 27 | 
            +
                    version: 2.19.2
         | 
| 28 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 29 | 
            +
              name: rubocop
         | 
| 30 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 31 | 
            +
                requirements:
         | 
| 32 | 
            +
                - - "~>"
         | 
| 33 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 34 | 
            +
                    version: 1.7.0
         | 
| 35 | 
            +
              type: :development
         | 
| 36 | 
            +
              prerelease: false
         | 
| 37 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 38 | 
            +
                requirements:
         | 
| 39 | 
            +
                - - "~>"
         | 
| 40 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 41 | 
            +
                    version: 1.7.0
         | 
| 42 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 43 | 
            +
              name: rubocop-performance
         | 
| 44 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 45 | 
            +
                requirements:
         | 
| 46 | 
            +
                - - "~>"
         | 
| 47 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 48 | 
            +
                    version: 1.9.2
         | 
| 49 | 
            +
              type: :development
         | 
| 50 | 
            +
              prerelease: false
         | 
| 51 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 52 | 
            +
                requirements:
         | 
| 53 | 
            +
                - - "~>"
         | 
| 54 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 55 | 
            +
                    version: 1.9.2
         | 
| 56 | 
            +
            description: A style-guide with Rubocop configs.
         | 
| 57 | 
            +
            email:
         | 
| 58 | 
            +
            - kelly@kellyredding.com
         | 
| 59 | 
            +
            - collin.redding@me.com
         | 
| 60 | 
            +
            executables: []
         | 
| 61 | 
            +
            extensions: []
         | 
| 62 | 
            +
            extra_rdoc_files: []
         | 
| 63 | 
            +
            files:
         | 
| 64 | 
            +
            - Gemfile
         | 
| 65 | 
            +
            - LICENSE
         | 
| 66 | 
            +
            - README.md
         | 
| 67 | 
            +
            - lib/much-style-guide.rb
         | 
| 68 | 
            +
            - lib/much-style-guide/rubocop.yml
         | 
| 69 | 
            +
            - lib/much-style-guide/rubocop_shopify-v1.0.7.yml
         | 
| 70 | 
            +
            - lib/much-style-guide/version.rb
         | 
| 71 | 
            +
            - log/.keep
         | 
| 72 | 
            +
            - much-style-guide.gemspec
         | 
| 73 | 
            +
            - test/helper.rb
         | 
| 74 | 
            +
            - test/support/factory.rb
         | 
| 75 | 
            +
            - test/system/.keep
         | 
| 76 | 
            +
            - test/unit/.keep
         | 
| 77 | 
            +
            homepage: 
         | 
| 78 | 
            +
            licenses:
         | 
| 79 | 
            +
            - MIT
         | 
| 80 | 
            +
            metadata: {}
         | 
| 81 | 
            +
            post_install_message: 
         | 
| 82 | 
            +
            rdoc_options: []
         | 
| 83 | 
            +
            require_paths:
         | 
| 84 | 
            +
            - lib
         | 
| 85 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 86 | 
            +
              requirements:
         | 
| 87 | 
            +
              - - "~>"
         | 
| 88 | 
            +
                - !ruby/object:Gem::Version
         | 
| 89 | 
            +
                  version: '2.5'
         | 
| 90 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 91 | 
            +
              requirements:
         | 
| 92 | 
            +
              - - ">="
         | 
| 93 | 
            +
                - !ruby/object:Gem::Version
         | 
| 94 | 
            +
                  version: '0'
         | 
| 95 | 
            +
            requirements: []
         | 
| 96 | 
            +
            rubygems_version: 3.2.4
         | 
| 97 | 
            +
            signing_key: 
         | 
| 98 | 
            +
            specification_version: 4
         | 
| 99 | 
            +
            summary: A style-guide with Rubocop configs.
         | 
| 100 | 
            +
            test_files:
         | 
| 101 | 
            +
            - test/helper.rb
         | 
| 102 | 
            +
            - test/support/factory.rb
         | 
| 103 | 
            +
            - test/system/.keep
         | 
| 104 | 
            +
            - test/unit/.keep
         |