the_bath_of_zahn 0.0.1 → 0.0.2
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/Rakefile +4 -0
- data/bin/rake +18 -0
- data/rubocop-rails.yml +3 -0
- data/rubocop.yml +7 -0
- data/the_bath_of_zahn.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f0b8d6ab7ea251711a9edfefeb58e9dc94d30fd
|
|
4
|
+
data.tar.gz: d3de1e6c07325c04c897a82d79629d33ffff6b69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4d12f5201e39da894bd8ce27b9c516c0a5937f002eb0eff39201cee1c7736a9c64fb45bfabb6b2168b4c90bb1ca1d5b10b7d1bde536ee7d30ec7d81855cd954
|
|
7
|
+
data.tar.gz: a7e3c3a80b061e6c4bb7f3cb60137235775d0c1746a710b96b44c417dc1157f44e76aea76a54e9a1323a2bb1019c993bdd49a891ab41907339d700f4026052c4
|
data/Rakefile
CHANGED
data/bin/rake
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
#
|
|
5
|
+
# This file was generated by Bundler.
|
|
6
|
+
#
|
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
|
8
|
+
# this file is here to facilitate running it.
|
|
9
|
+
#
|
|
10
|
+
|
|
11
|
+
require "pathname"
|
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
13
|
+
Pathname.new(__FILE__).realpath)
|
|
14
|
+
|
|
15
|
+
require "rubygems"
|
|
16
|
+
require "bundler/setup"
|
|
17
|
+
|
|
18
|
+
load Gem.bin_path("rake", "rake")
|
data/rubocop-rails.yml
CHANGED
data/rubocop.yml
CHANGED
|
@@ -45,9 +45,16 @@ Metrics/MethodLength:
|
|
|
45
45
|
Style/AsciiComments:
|
|
46
46
|
Enabled: false
|
|
47
47
|
|
|
48
|
+
Style/ClassAndModuleChildren:
|
|
49
|
+
Exclude:
|
|
50
|
+
- test/**/*_test.rb
|
|
51
|
+
|
|
48
52
|
Style/Documentation:
|
|
49
53
|
Enabled: false
|
|
50
54
|
|
|
55
|
+
Style/EmptyElse:
|
|
56
|
+
EnforcedStyle: empty
|
|
57
|
+
|
|
51
58
|
Style/EmptyMethod:
|
|
52
59
|
Enabled: false
|
|
53
60
|
|
data/the_bath_of_zahn.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: the_bath_of_zahn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zach Ahn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- README.md
|
|
81
81
|
- Rakefile
|
|
82
82
|
- bin/console
|
|
83
|
+
- bin/rake
|
|
83
84
|
- bin/rubocop
|
|
84
85
|
- bin/setup
|
|
85
86
|
- rubocop-rails.yml
|
|
@@ -105,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
106
|
version: '0'
|
|
106
107
|
requirements: []
|
|
107
108
|
rubyforge_project:
|
|
108
|
-
rubygems_version: 2.6.
|
|
109
|
+
rubygems_version: 2.6.12
|
|
109
110
|
signing_key:
|
|
110
111
|
specification_version: 4
|
|
111
112
|
summary: Some rubocop configs I like
|