Sha256: bc6018fc0b427e9cdaafe19a6355da1b9e56742319e7a3c9f24e04631b37c300
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 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.add_dependency 'rubocop', '>= 0.82' s.add_dependency 'rubocop-performance', '>= 1.1.0' s.add_dependency 'rubocop-rails', '>= 2.4.2' s.add_dependency 'rubocop-rspec', '~> 1.32' 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.0' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ws-style-6.0.3 | ws-style.gemspec |
ws-style-6.0.2 | ws-style.gemspec |
ws-style-6.0.1 | ws-style.gemspec |
ws-style-6.0.0 | ws-style.gemspec |