Sha256: ab7467bb1e19004fa163258d16f21162cd463eb873575440b673b380a38254cc

Contents?: true

Size: 1.29 KB

Versions: 16

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ws/style/version'

Gem::Specification.new do |s|
  s.name          = 'ws-style'
  s.version       = Ws::Style::VERSION
  s.authors       = ['Peter Graham']
  s.email         = ['peterghm@gmail.com']

  s.summary       = 'Shared rubocop config'
  s.description   = 'Shared config to enforce Ruby style consistently across Wealthsimple services.'
  s.homepage      = 'https://github.com/wealthsimple/ws-style'

  s.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  s.bindir        = 'exe'
  s.executables   = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
  s.require_paths = ['lib']
  s.required_ruby_version = '>= 2.7.2'

  s.add_dependency 'rubocop', '>= 1.23'
  s.add_dependency 'rubocop-performance', '>= 1.10.2'
  s.add_dependency 'rubocop-rails', '>= 2.9.1'
  s.add_dependency 'rubocop-rspec', '>= 2.2.0'
  s.add_dependency 'rubocop-vendor', '>= 0.6.0'

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'bundler-audit'
  s.add_development_dependency 'git'
  s.add_development_dependency 'keepachangelog'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec', '~> 3.11.0'
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ws-style-6.13.23 ws-style.gemspec
ws-style-6.13.22 ws-style.gemspec
ws-style-6.13.21 ws-style.gemspec
ws-style-6.13.20 ws-style.gemspec
ws-style-6.13.19 ws-style.gemspec
ws-style-6.13.18 ws-style.gemspec
ws-style-6.13.17 ws-style.gemspec
ws-style-6.13.16 ws-style.gemspec
ws-style-6.13.15 ws-style.gemspec
ws-style-6.13.14 ws-style.gemspec
ws-style-6.13.13 ws-style.gemspec
ws-style-6.13.12 ws-style.gemspec
ws-style-6.13.11 ws-style.gemspec
ws-style-6.13.10 ws-style.gemspec
ws-style-6.13.9 ws-style.gemspec
ws-style-6.13.8 ws-style.gemspec