Sha256: e562b6a7d6d8a61d92883e52a6880aae99700725546d32898db7987cfb3b21be

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 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.5.7'

  s.add_dependency 'rubocop', '>= 1.0.0'
  s.add_dependency 'rubocop-performance', '>= 1.8.1'
  s.add_dependency 'rubocop-rails', '>= 2.8.1'
  s.add_dependency 'rubocop-rspec', '>= 1.44.1'
  s.add_dependency 'rubocop-vendor', '~> 0'

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ws-style-6.6.0 ws-style.gemspec
ws-style-6.5.3 ws-style.gemspec
ws-style-6.5.2 ws-style.gemspec
ws-style-6.5.1 ws-style.gemspec
ws-style-6.5.0 ws-style.gemspec