house_style 2.2.0 → 2.2.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/CHANGELOG.md +4 -0
- data/features/rubocop.yml +15 -0
- data/house_style.gemspec +2 -2
- metadata +2 -3
- data/bin/console +0 -14
- data/bin/setup +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce8222443b062e50feeb386f3d441f0f5e549bf2f461f457c27714f0cc0dad96
|
|
4
|
+
data.tar.gz: 6157b1653324717cdf7dc1edeca3a089d940ee701096657e66a1a35f3e7bde65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79765f7756680a6fbdf8983dad1855e8768ab2be58045111d9b31ed16f69b2285f61f1744325d26069bc2c55d814ab0031dc8bf9bb97a034c1568dc1a077689c
|
|
7
|
+
data.tar.gz: c7cd1db842e928fb54547daabb34f64544b20eb7f22cad1b5de43429b737d2cd511998b2d1c3ee5d0397bd328a43901caa9d32d74811324dde1644685d780321
|
data/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
inherit_from: ../ruby/rubocop.yml
|
|
2
|
+
|
|
3
|
+
Layout/LineLength:
|
|
4
|
+
Enabled: false
|
|
5
|
+
Metrics/BlockLength:
|
|
6
|
+
Enabled: false
|
|
7
|
+
Metrics/ModuleLength:
|
|
8
|
+
Enabled: false
|
|
9
|
+
Style/BlockDelimiters:
|
|
10
|
+
Exclude:
|
|
11
|
+
- factories/**/*
|
|
12
|
+
Style/Documentation:
|
|
13
|
+
Enabled: false
|
|
14
|
+
Style/WordArray:
|
|
15
|
+
Enabled: false
|
data/house_style.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = 'house_style'
|
|
6
|
-
spec.version = '2.2.
|
|
6
|
+
spec.version = '2.2.1'
|
|
7
7
|
spec.authors = ['Altmetric', 'Scott Matthewman']
|
|
8
8
|
spec.email = ['engineering@altmetric.com', 'scott.matthewman@gmail.com']
|
|
9
9
|
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.homepage = 'https://github.com/altmetric/house_style'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
|
|
15
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(
|
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|.gitignore|)/}) }
|
|
16
16
|
spec.require_paths = ['lib']
|
|
17
17
|
|
|
18
18
|
spec.add_dependency 'rubocop', '>= 1.0', '< 1.23'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: house_style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Altmetric
|
|
@@ -135,8 +135,7 @@ files:
|
|
|
135
135
|
- LICENSE.txt
|
|
136
136
|
- README.md
|
|
137
137
|
- Rakefile
|
|
138
|
-
-
|
|
139
|
-
- bin/setup
|
|
138
|
+
- features/rubocop.yml
|
|
140
139
|
- house_style.gemspec
|
|
141
140
|
- lib/generators/house_style/install_generator.rb
|
|
142
141
|
- lib/generators/house_style/templates/db_migrate_rubocop.yml
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require 'bundler/setup'
|
|
4
|
-
require 'house_style'
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require 'pry'
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require 'irb'
|
|
14
|
-
IRB.start
|