bss_style 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62e2be5acc1a5d9e0343b93ef76f7e13abdb91d72cdda76e63ef5117867c8b3f
4
- data.tar.gz: fd47a75bb7c63f08d713da0e1b3baaaac04883c78d68416fb563eef0c1802006
3
+ metadata.gz: ce43a1c2addcd66fde8c780001b5fa59f7ac7da3a8a42c4b3cb4bb3642c6f3ca
4
+ data.tar.gz: 14a771a2df8d004bb2cc6ce235501ad06486bcdb5f3b10c8218c23bb32b1c2b3
5
5
  SHA512:
6
- metadata.gz: 0a7c8bf0788c16bdfc759dbaaa77d65c29a986293605fb7419765902302b9b9db8edec58d8bfd4db16f2958c87d052fe3ddec100f343badf3e2806d633d68b10
7
- data.tar.gz: 3e069f63c6c3c47597b7165c42b0e0188e5284056de464ba68705ec19ebf748f646b213947c5c6bde49cc4e2e91f02ebcb6b25f6d18249504dd97784b43a09e0
6
+ metadata.gz: '0288475ec640f13435972fef67668b54824ef1d92e16c1d8b26d671a72f4055d642cf634be9a90f664897300291b4a3f7ee4bed723383e29ccc8a223a3d8780a'
7
+ data.tar.gz: 9f2eb30068d870695511f394b85e64934677bd40b848c6be24d75b911c57cbd047bf7efff8c04e29722a72a948447349127bbc40e1e2aed85ac761df1de2609b
@@ -0,0 +1 @@
1
+ ./rubocop/default.yml
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- source 'https://rubygems.org'
3
+ source "https://rubygems.org"
4
4
 
5
5
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bss_style (2.0.0)
4
+ bss_style (2.0.2)
5
5
  rubocop (~> 0.63.1)
6
6
  rubocop-rspec (~> 1.31.0)
7
7
 
data/README.md CHANGED
@@ -35,7 +35,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
35
35
 
36
36
  1. Update the gem version in `lib/bss_style/version.rb` using Semantic versioning.
37
37
  2. Commit and push your changes.
38
- 3. Run `bundle gem bss_style` to deploy the new gem version to RubyGems.org.
38
+ 3. Run `bundle exec rake release` to deploy the new gem version to RubyGems.org.
39
39
 
40
40
  ## Contributing
41
41
 
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'bundler/gem_tasks'
3
+ require "bundler/gem_tasks"
4
4
  task default: :spec
@@ -1,30 +1,30 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('lib', __dir__)
3
+ lib = File.expand_path("lib", __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'bss_style/version'
5
+ require "bss_style/version"
6
6
 
7
7
  Gem::Specification.new do |spec|
8
- spec.name = 'bss_style'
8
+ spec.name = "bss_style"
9
9
  spec.version = BssStyle::VERSION
10
- spec.authors = ['Stephen Dolan']
11
- spec.email = ['stephen@bigsouthernsoftware.com']
10
+ spec.authors = ["Stephen Dolan"]
11
+ spec.email = ["stephen@bigsouthernsoftware.com"]
12
12
 
13
13
  spec.summary = "Big Southern Software's style enforcement and project dotfiles"
14
- spec.homepage = 'https://bigsouthernsoftware.com'
14
+ spec.homepage = "https://bigsouthernsoftware.com"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
17
  f.match(%r{^(test|spec|features)/})
18
18
  end
19
19
 
20
- spec.bindir = 'exe'
20
+ spec.bindir = "exe"
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
- spec.require_paths = ['lib']
22
+ spec.require_paths = ["lib"]
23
23
 
24
- spec.add_development_dependency 'bundler', '~> 2.0'
25
- spec.add_development_dependency 'pry', '~> 0.12'
26
- spec.add_development_dependency 'rake', '~> 12.3'
24
+ spec.add_development_dependency "bundler", "~> 2.0"
25
+ spec.add_development_dependency "pry", "~> 0.12"
26
+ spec.add_development_dependency "rake", "~> 12.3"
27
27
 
28
- spec.add_dependency 'rubocop', '~> 0.63.1'
29
- spec.add_dependency 'rubocop-rspec', '~> 1.31.0'
28
+ spec.add_dependency "rubocop", "~> 0.63.1"
29
+ spec.add_dependency "rubocop-rspec", "~> 1.31.0"
30
30
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'bss_style/version'
3
+ require "bss_style/version"
4
4
 
5
5
  # Main module for the gem. This will stay empty.
6
6
  module BssStyle
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BssStyle
4
- VERSION = '2.0.0'
4
+ VERSION = "2.0.2"
5
5
  end
@@ -2,21 +2,19 @@
2
2
 
3
3
  inherit_from: default.yml
4
4
 
5
- Documentation:
5
+ Style/Documentation:
6
+ Enabled: false
7
+ Style/DocumentationMethod:
6
8
  Enabled: false
7
9
 
8
10
  Metrics/AbcSize:
9
11
  Enabled: false
10
-
11
12
  Metrics/ClassLength:
12
13
  Enabled: false
13
-
14
14
  Metrics/BlockLength:
15
15
  Enabled: false
16
-
17
16
  Metrics/ModuleLength:
18
17
  Enabled: false
19
-
20
18
  Metrics/MethodLength:
21
19
  Enabled: false
22
20
 
@@ -2,5 +2,7 @@
2
2
 
3
3
  inherit_from: default.yml
4
4
 
5
- Documentation:
5
+ Style/Documentation:
6
+ Enabled: false
7
+ Style/DocumentationMethod:
6
8
  Enabled: false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bss_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Dolan
@@ -1 +0,0 @@
1
- inherit_from: rubocop/default.yml