linters 1.0.1 → 1.0.3

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: 84618b2d75befdfa46e5a646f3bbf52d4f46ba859fa2ec84937dca7f54e7ff86
4
- data.tar.gz: 3241401b025e5d47265d2c954562e98f5f6cfee2c6860305a65c6b4f11b2e30b
3
+ metadata.gz: 34b4c8594064d51fde2c8680b527e06e2cc9ee2a7d23cd6bc09770ec9e2550c2
4
+ data.tar.gz: 3f591b1404c3706b23b2010bd48a6fcd324e46d2b0889be532456ffb64a99e8d
5
5
  SHA512:
6
- metadata.gz: 14a2468a388cf45c2dbef520f51b4dff179751d9c409473806bd582218ec02ba6451f8dc9f4d4670018ed2b64a0a0507e040a21a38aa285200e9cde50546cf46
7
- data.tar.gz: 76c985213e74a7a4f74aab8fecb10895acd8865a85c40bd9b99cdd1807992bb665188a035b498e3b40751e5d38c8b71e5a7667a291d6048fd791b6ef6a365134
6
+ metadata.gz: 6d38579bad3c557f18cc7925ab7b576b3d3cd206593ea85d4e83eaa1c9b2158d3180074acaa8266234323204e9445a459319bd4465f82952eab3c78d7919a3de
7
+ data.tar.gz: 1bb6b827a23fd8c09a1227a7dabf88bc1ab9736742c8687a94ad4e394d8b38c97dd6abce690a4b00d52c06794a1fd744080e419db947f133762c1d716e4e5cb5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- linters (1.0.1)
4
+ linters (1.0.3)
5
5
  rake
6
6
 
7
7
  GEM
@@ -36,7 +36,7 @@ GEM
36
36
  ast (~> 2.4.0)
37
37
  psych (3.1.0)
38
38
  rainbow (3.0.0)
39
- rake (12.3.1)
39
+ rake (13.0.3)
40
40
  reek (5.4.0)
41
41
  codeclimate-engine-rb (~> 0.4.0)
42
42
  kwalify (~> 0.7.0)
@@ -81,13 +81,13 @@ PLATFORMS
81
81
 
82
82
  DEPENDENCIES
83
83
  bundler (~> 1.16)
84
- bundler-audit (~> 0.6.1)
85
- byebug (~> 11.0.1)
86
- fasterer (~> 0.5.1)
84
+ bundler-audit (~> 0.6)
85
+ byebug (~> 11.0)
86
+ fasterer (~> 0.5)
87
87
  linters!
88
- reek (~> 5.4.0)
88
+ reek (~> 5.4)
89
89
  rspec (~> 3.0)
90
- rubocop (~> 0.71.0)
90
+ rubocop (~> 0.71)
91
91
 
92
92
  BUNDLED WITH
93
- 1.17.2
93
+ 1.17.3
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 ruby-pianist
3
+ Copyright (c) 2020 skrinits
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -104,7 +104,7 @@ If settings is absent that warnings_number equal zero.
104
104
 
105
105
  ## Contributing
106
106
 
107
- Bug reports and pull requests are welcome on GitHub at https://github.com/ruby-pianist/linters.
107
+ Bug reports and pull requests are welcome on GitHub at https://github.com/skrinits/linters.
108
108
 
109
109
  ## License
110
110
 
@@ -1,3 +1,3 @@
1
1
  module Linters
2
- VERSION = '1.0.1'.freeze
2
+ VERSION = '1.0.3'.freeze
3
3
  end
data/linters.gemspec CHANGED
@@ -5,12 +5,12 @@ require 'linters/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'linters'
7
7
  spec.version = Linters::VERSION
8
- spec.authors = ['Ruby Pianist']
9
- spec.email = ['rubypianist@gmail.com']
8
+ spec.authors = ['skrinits']
9
+ spec.email = ['110100reg@gmail.com']
10
10
 
11
11
  spec.summary = "Tool checks ruby applications using different code's analyzers."
12
12
  spec.description = 'Check of ruby applications using rubocop, reek, brakeman, fasterer, bundle_audit and the other custom linters'
13
- spec.homepage = 'https://github.com/ruby-pianist/linters'
13
+ spec.homepage = 'https://github.com/skrinits/linters'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  # Specify which files should be added to the gem when it is released.
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ['lib']
24
24
 
25
- spec.add_dependency 'rake', '~> 0'
25
+ spec.add_dependency 'rake'
26
26
 
27
27
  spec.add_development_dependency 'bundler', '~> 1.16'
28
28
  spec.add_development_dependency 'bundler-audit', '~> 0.6'
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linters
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
- - Ruby Pianist
7
+ - skrinits
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-25 00:00:00.000000000 Z
11
+ date: 2021-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
@@ -125,12 +125,11 @@ dependencies:
125
125
  description: Check of ruby applications using rubocop, reek, brakeman, fasterer, bundle_audit
126
126
  and the other custom linters
127
127
  email:
128
- - rubypianist@gmail.com
128
+ - 110100reg@gmail.com
129
129
  executables: []
130
130
  extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
- - ".byebug_history"
134
133
  - ".gitignore"
135
134
  - ".reek.yml"
136
135
  - ".rspec"
@@ -154,7 +153,7 @@ files:
154
153
  - lib/linters/version.rb
155
154
  - lib/tasks/linters.rake
156
155
  - linters.gemspec
157
- homepage: https://github.com/ruby-pianist/linters
156
+ homepage: https://github.com/skrinits/linters
158
157
  licenses:
159
158
  - MIT
160
159
  metadata: {}
@@ -173,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
172
  - !ruby/object:Gem::Version
174
173
  version: '0'
175
174
  requirements: []
176
- rubyforge_project:
177
- rubygems_version: 2.7.8
175
+ rubygems_version: 3.0.8
178
176
  signing_key:
179
177
  specification_version: 4
180
178
  summary: Tool checks ruby applications using different code's analyzers.