standard 0.1.1 → 0.1.2

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: 2b541a8058a7640f73b75468648efa94d90ecf95beab19982b56555830b2e5f7
4
- data.tar.gz: bffb5789dbd113c8d434897603eb801eb1bb1ee10b17520af82466ba23e10c4b
3
+ metadata.gz: 6d70639874a80e04acdae90c2dcb1e9cb86085585671241538f01036ce7b8f7a
4
+ data.tar.gz: 1cc778c3f9416fb782e4a22677f9e92c7f60826cc5ae02ea96449f426c50593b
5
5
  SHA512:
6
- metadata.gz: 7ed4efce3bcaec13ab119e3a22e927fa4b477abfb9d1bb2445427b5a2bf041f3bf3bf47bf5d9fc52487522f16a8fe23184f15985cfb6664ec2743c377388b616
7
- data.tar.gz: c21665381a7bbd523354c0dde1beb3e71ce355f4324181e54bb91ab441767ee6875ea6175b653b9e95db3cc98e881dcf3972fd0ba184185ddc58cdf64505f44b
6
+ metadata.gz: '08bb413c797a48184a24d38155958cec9b06f7cf129e395beaff30ae935ac2197756a5b3e8518fb5caa1e3934e7100c4c9742b7f40687e2c8b31c73c15eb971e'
7
+ data.tar.gz: 4c3abb3b7aa049d9ccae76c8bce216efa6b1d54c240dd79ed1297af10b37c7e05f043f66cbf7379dcc8d8742d78521e174dc91cbef8a26ecea5a297ae100d730
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (0.1.1)
4
+ standard (0.1.2)
5
5
  rubocop (~> 0.72.0)
6
6
  rubocop-performance (~> 1.4.0)
7
7
 
@@ -31,7 +31,7 @@ GEM
31
31
  rainbow (>= 2.2.2, < 4.0)
32
32
  ruby-progressbar (~> 1.7)
33
33
  unicode-display_width (>= 1.4.0, < 1.7)
34
- rubocop-performance (1.4.0)
34
+ rubocop-performance (1.4.1)
35
35
  rubocop (>= 0.71.0)
36
36
  ruby-progressbar (1.10.1)
37
37
  simplecov (0.16.1)
@@ -137,7 +137,7 @@ Layout/EndOfLine:
137
137
 
138
138
  Layout/ExtraSpacing:
139
139
  Enabled: true
140
- AllowForAlignment: true
140
+ AllowForAlignment: false
141
141
  AllowBeforeTrailingComments: false
142
142
  ForceEqualSignAlignment: false
143
143
 
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("0.1.1")
2
+ VERSION = Gem::Version.new("0.1.2")
3
3
  end
@@ -3,19 +3,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require "standard/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = "standard"
7
- spec.version = Standard::VERSION
8
- spec.authors = ["Justin Searls"]
9
- spec.email = ["searls@gmail.com"]
6
+ spec.name = "standard"
7
+ spec.version = Standard::VERSION
8
+ spec.authors = ["Justin Searls"]
9
+ spec.email = ["searls@gmail.com"]
10
10
 
11
- spec.summary = "Ruby Style Guide, with linter & automatic code fixer"
12
- spec.homepage = "https://github.com/testdouble/standard"
11
+ spec.summary = "Ruby Style Guide, with linter & automatic code fixer"
12
+ spec.homepage = "https://github.com/testdouble/standard"
13
13
 
14
- spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
14
+ spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
15
15
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
16
  end
17
- spec.bindir = "exe"
18
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_dependency "rubocop", "~> 0.72.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls