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 +4 -4
- data/README.md +1 -1
- data/lib/shugo/version.rb +1 -1
- data/rails/db_migrate.yml +7 -0
- data/rails/rubocop.yml +1 -0
- data/ruby/rubocop.yml +2 -0
- data/shugo.gemspec +3 -11
- metadata +6 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 221342458e8f3c041fbbf9586ce715f64c89c02c
|
4
|
+
data.tar.gz: 6d9c92b2e49b8eb7e6e7e812fd9d4a52bf688f1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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/
|
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
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
data/ruby/rubocop.yml
CHANGED
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
|
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.
|
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-
|
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
|
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
|