Sha256: 0cc7bc8e0ca90f0796e330b516ef7a386b2c63628cc10bcd7e21d6e609bf5ef1

Contents?: true

Size: 1.23 KB

Versions: 4

Compression:

Stored size: 1.23 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 = '>= 3.0'

  s.add_dependency 'standard', '>= 1.30.1'
  s.add_dependency 'standard-custom', '>= 1.0.2'
  s.add_dependency 'standard-rails', '>= 0.1.0'
  s.add_dependency 'rubocop-rspec', '>= 2.2.0'
  s.add_dependency 'rubocop-vendor', '>= 0.11'

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ws-style-7.4.2 ws-style.gemspec
ws-style-7.4.1 ws-style.gemspec
ws-style-7.3.0 ws-style.gemspec
ws-style-7.2.1 ws-style.gemspec