rubocop-rubycw 0.1.2 → 0.1.3

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: 23cc6a747d604fae9122f0e85007f52d1aaceacbdbcb7f2eb51bb49b3ce9fefe
4
- data.tar.gz: 59b9c27b38f466d6aaacd4742fc904545e17c9be0409a2c1ae40d59e6a4de835
3
+ metadata.gz: c7507b9423e73267c491c870b5f593b1ef05886c277e38e2e8ebacdd72f47b9f
4
+ data.tar.gz: e0dbcd0424c7b9e0e36a97692f48f5e877a20438d59c362a6d242c8162d1e61e
5
5
  SHA512:
6
- metadata.gz: 5b08c39df84de298fc18ee7e1d509d69d666c9660b6888a018c45f9a69102b411a119711a5e553f49bb1762ab5bc5f1fa8713f371c318d3a47848f5ffd787b12
7
- data.tar.gz: 185155a6cb25387b727bb12d97fc7d70a60dc771e0413550d2fc350e7c695fdce8a55bf13c7cc3ac81b8701997dddf050b38d2f09567f363c1f97b0338879d9b
6
+ metadata.gz: 46c63e7192c335408af21e8a722a216daf84383cfa6887d035e2b486902b050b32896a122cb167d0843b1decb824ecbf836bef7fe0f09fba7641cfee32f77096
7
+ data.tar.gz: 07dcb9193d16a6351c3060724e4d07ec3ee41a482e0d1d12b31e7241323edf999006098e47eb54911abdf8b7a509d135e142c6dbfc304644d4baf21579694a54
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Masataka Pocke Kuwabara
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -4,6 +4,12 @@ Integrate RuboCop and `ruby -cw`.
4
4
 
5
5
  You can get Ruby's warning as a RuboCop offense by rubocop-rubycw.
6
6
 
7
+ ## Requirements
8
+
9
+ * Ruby 2.3 or greater.
10
+ * But I highly recommend to use Ruby 2.6 or greater.
11
+ Because it is about 10x slower if it works on Ruby 2.5 or lower.
12
+
7
13
  ## Installation
8
14
 
9
15
  Add this line to your application's Gemfile:
@@ -36,5 +42,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
36
42
 
37
43
  ## Contributing
38
44
 
39
- Bug reports and pull requests are welcome on GitHub at https://github.com/pocke/rubocop-rubycw.
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/rubocop-hq/rubocop-rubycw.
40
46
 
@@ -1,5 +1,5 @@
1
1
  module RuboCop
2
2
  module Rubycw
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -8,8 +8,9 @@ Gem::Specification.new do |spec|
8
8
 
9
9
  spec.summary = %q{Integrate RuboCop and ruby -cw}
10
10
  spec.description = %q{Integrate RuboCop and ruby -cw}
11
- spec.homepage = "https://github.com/pocke/rubocop-rubycw"
11
+ spec.homepage = "https://github.com/rubocop-hq/rubocop-rubycw"
12
12
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+ spec.license = 'MIT'
13
14
 
14
15
  # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
15
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rubycw
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masataka Pocke Kuwabara
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-13 00:00:00.000000000 Z
11
+ date: 2019-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -36,6 +36,7 @@ files:
36
36
  - ".rspec"
37
37
  - ".rubocop.yml"
38
38
  - Gemfile
39
+ - LICENSE
39
40
  - README.md
40
41
  - Rakefile
41
42
  - bin/console
@@ -49,11 +50,12 @@ files:
49
50
  - lib/rubocop/rubycw/version.rb
50
51
  - lib/rubocop/rubycw/warning_capturer.rb
51
52
  - rubocop-rubycw.gemspec
52
- homepage: https://github.com/pocke/rubocop-rubycw
53
- licenses: []
53
+ homepage: https://github.com/rubocop-hq/rubocop-rubycw
54
+ licenses:
55
+ - MIT
54
56
  metadata:
55
- homepage_uri: https://github.com/pocke/rubocop-rubycw
56
- source_code_uri: https://github.com/pocke/rubocop-rubycw
57
+ homepage_uri: https://github.com/rubocop-hq/rubocop-rubycw
58
+ source_code_uri: https://github.com/rubocop-hq/rubocop-rubycw
57
59
  post_install_message:
58
60
  rdoc_options: []
59
61
  require_paths: