bss_style 1.0.2 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72fc565bc069a75bb27588cf1184706c5301f215715852a13651bcf643175eec
4
- data.tar.gz: ce2d303856c83d1fedd982240cea34d80d6628e61be7d2e57f3d71d30a108c2a
3
+ metadata.gz: f4cf2fa5b6812b7d719435efee4602ec32e6cc5227e80ab752f732b393d2d7ca
4
+ data.tar.gz: d21c55da1d6582723dca5f67117a40f8b9ba28ed0403aeada224216d24458c54
5
5
  SHA512:
6
- metadata.gz: b4f5257aad5e7ea44e78e167351ef7f50232fb101bac44bf5daf954577a5010f749e56c1b5b5f1bde7683dc66a62ad2bfb191a2aeda5dd0da70703367a965c46
7
- data.tar.gz: 441edbd3cee1565270178539e8ade189e72ba16afa943cc6eb5ebaf6e70ad4a4d6dcee62612fd7a28b03f11c7ca196eee99ff10e61063d9ec44c45307fe21af5
6
+ metadata.gz: '094e81d732171d3cf2d2d26175e062312b2fa35d773ca9bc98c9815d9b513a81ec059503e1409e1cc7f2adf4988aeb8dc61ba8834c543a309deda2ae6333c5ba'
7
+ data.tar.gz: 5167566920130cc0f902a642a3e92047c509516d5e7601ece721d29464a5eb560cc2978a09bb68a6ab95309ab8df2d21a15d46be21686f7b5b52be573699e311
data/Gemfile.lock CHANGED
@@ -1,18 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bss_style (1.0.2)
5
- rubocop (~> 0.60.0)
4
+ bss_style (1.1.0)
5
+ rubocop (~> 0.61.0)
6
+ rubocop-rspec (~> 1.30.1)
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
9
10
  specs:
10
11
  ast (2.4.0)
11
12
  coderay (1.1.2)
12
- jaro_winkler (1.5.1-x86_64-darwin-17)
13
- method_source (0.9.0)
13
+ jaro_winkler (1.5.1)
14
+ method_source (0.9.2)
14
15
  parallel (1.12.1)
15
- parser (2.5.1.2)
16
+ parser (2.5.3.0)
16
17
  ast (~> 2.4.0)
17
18
  powerpack (0.1.2)
18
19
  pry (0.11.3)
@@ -20,7 +21,7 @@ GEM
20
21
  method_source (~> 0.9.0)
21
22
  rainbow (3.0.0)
22
23
  rake (10.5.0)
23
- rubocop (0.60.0)
24
+ rubocop (0.61.1)
24
25
  jaro_winkler (~> 1.5.1)
25
26
  parallel (~> 1.10)
26
27
  parser (>= 2.5, != 2.5.1.1)
@@ -28,8 +29,10 @@ GEM
28
29
  rainbow (>= 2.2.2, < 4.0)
29
30
  ruby-progressbar (~> 1.7)
30
31
  unicode-display_width (~> 1.4.0)
32
+ rubocop-rspec (1.30.1)
33
+ rubocop (>= 0.60.0)
31
34
  ruby-progressbar (1.10.0)
32
- unicode-display_width (1.4.0)
35
+ unicode-display_width (1.4.1)
33
36
 
34
37
  PLATFORMS
35
38
  ruby
@@ -41,4 +44,4 @@ DEPENDENCIES
41
44
  rake (~> 10.0)
42
45
 
43
46
  BUNDLED WITH
44
- 1.16.1
47
+ 1.17.1
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
- # BssStyle
1
+ # BSS Style
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/bss_style`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ This repository exists to standardize our linter configurations so that they can propagate to our repositories.
6
4
 
7
5
  ## Installation
8
6
 
@@ -16,13 +14,16 @@ And then execute:
16
14
 
17
15
  $ bundle
18
16
 
19
- Or install it yourself as:
17
+ ## Usage
20
18
 
21
- $ gem install bss_style
19
+ ### RuboCop Configurations
22
20
 
23
- ## Usage
21
+ To include the configurations from this repository in your project, add a line like this as the only content in your `.rubocop.yml`:
24
22
 
25
- TODO: Write usage instructions here
23
+ ```yml
24
+ inherit_gem:
25
+ bss_style: rubocop/default.yml
26
+ ```
26
27
 
27
28
  ## Development
28
29
 
@@ -32,4 +33,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
33
 
33
34
  ## Contributing
34
35
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/bss_style.
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/big-southern-software/bss-style.
data/bss_style.gemspec CHANGED
@@ -25,5 +25,6 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency 'pry', '~> 0.11.3'
26
26
  spec.add_development_dependency 'rake', '~> 10.0'
27
27
 
28
- spec.add_dependency 'rubocop', '~> 0.60.0'
28
+ spec.add_dependency 'rubocop', '~> 0.61.0'
29
+ spec.add_dependency 'rubocop-rspec', '~> 1.30.1'
29
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BssStyle
4
- VERSION = '1.0.2'
4
+ VERSION = '1.1.0'
5
5
  end
data/rubocop/default.yml CHANGED
@@ -1,5 +1,7 @@
1
1
  ---
2
2
 
3
+ require: rubocop-rspec
4
+
3
5
  AllCops:
4
6
  TargetRubyVersion: 2.5.1
5
7
  Exclude:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bss_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Dolan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-26 00:00:00.000000000 Z
11
+ date: 2018-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.60.0
61
+ version: 0.61.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.60.0
68
+ version: 0.61.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.30.1
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.30.1
69
83
  description:
70
84
  email:
71
85
  - stephen@bigsouthernsoftware.com