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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1e510d7e4cbc21fa180982b5ee1cd6cbe8e5e2711afba99fb84cf8418cadbcd
4
- data.tar.gz: eaefe1b0334a00a9740769b3f8ec9b7243e03ed79ea42a491f956bb4161850c7
3
+ metadata.gz: ce8222443b062e50feeb386f3d441f0f5e549bf2f461f457c27714f0cc0dad96
4
+ data.tar.gz: 6157b1653324717cdf7dc1edeca3a089d940ee701096657e66a1a35f3e7bde65
5
5
  SHA512:
6
- metadata.gz: 93e2a39e1731896b2c444188bea2d1fe3086ae115bee2f36c78f31dc74b2ffed803aa5e0064ce67d0ef60099ba89c59e39322a1a931e5f47c297577ee01c4571
7
- data.tar.gz: f808a69b2945921167811d188069c4861391670a0f173a7607f5079591bec6bf07789fcff74972d97ab5f859d678b803b2d1992db67202a7926f0a6b3688db36
6
+ metadata.gz: 79765f7756680a6fbdf8983dad1855e8768ab2be58045111d9b31ed16f69b2285f61f1744325d26069bc2c55d814ab0031dc8bf9bb97a034c1568dc1a077689c
7
+ data.tar.gz: c7cd1db842e928fb54547daabb34f64544b20eb7f22cad1b5de43429b737d2cd511998b2d1c3ee5d0397bd328a43901caa9d32d74811324dde1644685d780321
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## CURRENT
4
4
 
5
+ ## 2.2.1
6
+ ### Bug fixes
7
+ - Do not skip features/ directory in the gem when packaging.
8
+
5
9
  ## 2.2.0
6
10
  ### Bug fixes
7
11
  - Install db_migrate.yml only if `db/migrate/` folder exists rather than just `db/` folder.
@@ -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.0'
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{^(test|spec|features)/}) }
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.0
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
- - bin/console
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
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here