rubocop-config-cowtech 1.0.0 → 1.0.1
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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +8 -0
- data/README.md +1 -1
- data/Rakefile +1 -0
- data/rubocop-config-cowtech.gemspec +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1511bfedc2e78bbc5f577c6fc323ccf3b25bc66a
|
|
4
|
+
data.tar.gz: 885b7116fa913416d0819f13f1ab2897adf684f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c11367b325a6d7fcd1c6e8ccb0144b59d043c5a461aa416d08fb582505369aaa03c5ff0bb130757f428e38f8a1444e57e300160d1e7503f0cfe5c570623be32a
|
|
7
|
+
data.tar.gz: 3145b61ca1ef1a473f77c37354a3efaa6567a90ae5b82cb0fad03ef64d60744821379984a3d3654ef7145f458028161a030e65873caa67931b40d18fe3cd4152
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This file is part of the rubocopy-config-cowtech gem. Copyright (C) 2017 and above Shogun <shogun@cowtech.it>.
|
|
3
|
+
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
4
|
+
#
|
|
5
|
+
|
|
6
|
+
source "http://rubygems.org"
|
|
7
|
+
gemspec
|
|
8
|
+
gem "rake", "~> 12.0"
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# rubocop-config-cowtech
|
|
2
2
|
|
|
3
|
-
[](http://badge.fury.io/
|
|
3
|
+
[](http://badge.fury.io/rb/rubocop-config-cowtech)
|
|
4
4
|
[](https://gemnasium.com/ShogunPanda/rubocop-config-cowtech)
|
|
5
5
|
|
|
6
6
|
CowTech style rubocop config
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = "rubocop-config-cowtech"
|
|
8
|
-
gem.version = "1.0.
|
|
8
|
+
gem.version = "1.0.1"
|
|
9
9
|
gem.homepage = "https://github.com/ShogunPanda/rubocop-config-cowtech"
|
|
10
10
|
gem.summary = %q{CowTech style rubocop config.}
|
|
11
11
|
gem.description = %q{CowTech style rubocop config.}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-config-cowtech
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shogun
|
|
@@ -19,7 +19,9 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- ".gitignore"
|
|
21
21
|
- CHANGELOG.md
|
|
22
|
+
- Gemfile
|
|
22
23
|
- README.md
|
|
24
|
+
- Rakefile
|
|
23
25
|
- main.yml
|
|
24
26
|
- rubocop-config-cowtech.gemspec
|
|
25
27
|
homepage: https://github.com/ShogunPanda/rubocop-config-cowtech
|