shugo 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
  SHA1:
3
- metadata.gz: 5293a0ed91274254d5d50acf864e634ad070c6dd
4
- data.tar.gz: c3e49f06164414197926d112d3ebdd7ec2c091fd
3
+ metadata.gz: 221342458e8f3c041fbbf9586ce715f64c89c02c
4
+ data.tar.gz: 6d9c92b2e49b8eb7e6e7e812fd9d4a52bf688f1f
5
5
  SHA512:
6
- metadata.gz: 1776cc5dec30ab128dd8c05d8afc56f0647f983ebb8fd3246dc243e2829a5f546ecbc8e1bf362225d92d2ed7b6ec96ff81aac0bb0a71a93b5a702870f82a668e
7
- data.tar.gz: dfee5fb20cc9e53d03b23d59e70cabf882458298d931ec0fddd79e11fe58fdc7ecabb408a92ca1c511ca43cecadc2f980231c37ef36997627268a2d30d6bfd9f
6
+ metadata.gz: 24113faddbf299c2234b519183c994ebd55c12a7449d2c28c525128f5bf2682567039a8effc877d8b173500d7525abd241b4f9a57ea08d4f0a1c1336becec447
7
+ data.tar.gz: 80016d5e609f35371506d29c1146e4b230aeef0d0b3e0a18dbae494fd7300aae4da68d0e859faf146c336eae7c42eabf411354f077ddb034bc7f74d1a0b81c39
data/README.md CHANGED
@@ -49,7 +49,7 @@ Update the version number in `shugo.gemspec`, and then run `bundle exec rake rel
49
49
 
50
50
  ## Contributing
51
51
 
52
- Bug reports and pull requests are welcome on GitHub at https://github.com/altmetric/shugo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
52
+ Bug reports and pull requests are welcome on GitHub at https://github.com/industrialdev/shugo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
53
53
 
54
54
  ## License
55
55
 
data/lib/shugo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Shugo
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'.freeze
3
3
  end
data/rails/db_migrate.yml CHANGED
@@ -1,16 +1,23 @@
1
1
  Metrics/ClassLength:
2
2
  Enabled: false
3
+
3
4
  Metrics/LineLength:
4
5
  Enabled: false
6
+
5
7
  Metrics/MethodLength:
6
8
  Enabled: false
9
+
7
10
  Style/BlockDelimiters:
8
11
  Enabled: false
12
+
9
13
  Style/Documentation:
10
14
  Enabled: false
15
+
11
16
  Style/EmptyLineBetweenDefs:
12
17
  Enabled: false
18
+
13
19
  Style/StringLiterals:
14
20
  Enabled: false
21
+
15
22
  Metrics/AbcSize:
16
23
  Enabled: false
data/rails/rubocop.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  inherit_from: ../ruby/rubocop.yml
2
+
2
3
  AllCops:
3
4
  Exclude:
4
5
  - 'db/schema.rb'
data/ruby/rubocop.yml CHANGED
@@ -40,6 +40,8 @@ Metrics/LineLength:
40
40
 
41
41
  # Exclude documentation for classes where it's unnecessary
42
42
  Style/Documentation:
43
+ Description: 'Document classes and non-namespace modules.'
44
+ Enabled: true
43
45
  Exclude:
44
46
  - 'test/**/*'
45
47
  - 'app/models/**/*'
data/shugo.gemspec CHANGED
@@ -15,18 +15,10 @@ Gem::Specification.new do |spec|
15
15
  spec.license = 'MIT'
16
16
 
17
17
  spec.post_install_message = <<-ENDOFMESSAGE
18
- Make sure to inherit from shugo in your .rubocopy.yml file to get all the style goodness.
19
-
20
- If you're in Rails:
21
-
22
- inherit_gem:
23
- house_style: ruby/rubocop.yml
24
-
25
- or...if not in Rails
26
-
27
- inherit_gem:
28
- house_style: ruby/rubocop.yml
18
+ Make sure to inherit from shugo in your .rubocopy.yml file to get the house styles.
29
19
 
20
+ For setup instructions see:
21
+ https://github.com/industrialdev/shugo
30
22
  ENDOFMESSAGE
31
23
 
32
24
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shugo
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
  - Andrew Markle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-06 00:00:00.000000000 Z
11
+ date: 2017-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -97,19 +97,11 @@ homepage: https://github.com/industrialdev/shugo
97
97
  licenses:
98
98
  - MIT
99
99
  metadata: {}
100
- post_install_message: |+
101
- Make sure to inherit from shugo in your .rubocopy.yml file to get all the style goodness.
102
-
103
- If you're in Rails:
104
-
105
- inherit_gem:
106
- house_style: ruby/rubocop.yml
107
-
108
- or...if not in Rails
109
-
110
- inherit_gem:
111
- house_style: ruby/rubocop.yml
100
+ post_install_message: |
101
+ Make sure to inherit from shugo in your .rubocopy.yml file to get the house styles.
112
102
 
103
+ For setup instructions see:
104
+ https://github.com/industrialdev/shugo
113
105
  rdoc_options: []
114
106
  require_paths:
115
107
  - lib