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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '069ad0b69a8585f8c5bb875dfab2ef4883c0225c'
4
- data.tar.gz: d66363a119021ef3e58cab94f1ef93b60b5d3a66
3
+ metadata.gz: 4f0b8d6ab7ea251711a9edfefeb58e9dc94d30fd
4
+ data.tar.gz: d3de1e6c07325c04c897a82d79629d33ffff6b69
5
5
  SHA512:
6
- metadata.gz: 4ded93bfc51d7c0d90c19c929bc3b51b8277108a1e13f2874ef3cc4ae04d476f52977d8680c30bb855b26796fa26f17c5faf20acf0ba04e0e45aa60856fd0a8d
7
- data.tar.gz: 306bcf821e2aa1e728236444af86eecb421488b4417c9bc979805da8daded005fde6d5d087e2980d745f73ad71ee37c7446de77c8a9eafde665dd969a2b107a5
6
+ metadata.gz: d4d12f5201e39da894bd8ce27b9c516c0a5937f002eb0eff39201cee1c7736a9c64fb45bfabb6b2168b4c90bb1ca1d5b10b7d1bde536ee7d30ec7d81855cd954
7
+ data.tar.gz: a7e3c3a80b061e6c4bb7f3cb60137235775d0c1746a710b96b44c417dc1157f44e76aea76a54e9a1323a2bb1019c993bdd49a891ab41907339d700f4026052c4
data/Rakefile CHANGED
@@ -5,4 +5,8 @@ task :test do
5
5
  system %(rubocop -c rubocop-rails.yml)
6
6
  end
7
7
 
8
+ task :fix do
9
+ system %(rubocop -c rubocop.yml -a)
10
+ end
11
+
8
12
  task default: :test
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
@@ -3,3 +3,6 @@ inherit_from:
3
3
 
4
4
  Rails:
5
5
  Enabled: true
6
+
7
+ Rails/OutputSafety:
8
+ Enabled: false
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
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "the_bath_of_zahn"
5
- spec.version = "0.0.1"
5
+ spec.version = "0.0.2"
6
6
  spec.authors = ["Zach Ahn"]
7
7
  spec.email = ["engineering@zachahn.com"]
8
8
 
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.1
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-06-12 00:00:00.000000000 Z
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.8
109
+ rubygems_version: 2.6.12
109
110
  signing_key:
110
111
  specification_version: 4
111
112
  summary: Some rubocop configs I like