datarockets-style 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3ade75e0b19c3f2b41a520e098d424d304c20be
4
- data.tar.gz: 3a7e44ccc88f575b2b304fa80dfa92c2264131fd
3
+ metadata.gz: b1c85160a028f0271c0aa03a113b9605d89bb657
4
+ data.tar.gz: 4356b1ed056f10bee016006e2a0ac1b6bf2a812f
5
5
  SHA512:
6
- metadata.gz: 4edf5fa617146f569cb0309a3d2afb759bb5cda8dfea4da7c330506771bfbc57a539ce726d5137d186ea3b66258a284974ec2e6a3ec839bade5c4ef587ea8683
7
- data.tar.gz: 1814b31a4678a7bedc82aa112ee5327234b8c73e8671e3de6c87df41fd97d4e1f8d54da39dd84a71a0a6178e07a40948cd01fba8b239f884fa14041088dcb33b
6
+ metadata.gz: 5559c5333550a226e8622507f4dc99e26108f3b54f80e1d1f68ad3d09cd5aee4786d81b023ff7946c25857d67c9bc9ab605bf1fea1d7cbf9d805d27dd807cf21
7
+ data.tar.gz: 3d6c1fb625174baee08a79b8ae70c57c45c1ba1114375d450f085ceb0e0133936b1f75bad969d0119982e8d4667eab72cd328ba9e52fe1ea2762ffb1718f95f0
data/CHANGELOG.md CHANGED
@@ -4,7 +4,13 @@ The format is described in [Contributing notes](CONTRIBUTING.md#changelog-entry-
4
4
 
5
5
  ## master (unreleased)
6
6
 
7
- ## 0.5.0 (2019-11-06)
7
+ ## 0.6.1 (2019-11-06)
8
+
9
+ ### Fixed
10
+
11
+ * [#126](https://github.com/datarockets/datarockets-style/issues/126): Result for ToDo list formatter. ([@r.dubrovsky][])
12
+
13
+ ## 0.6.0 (2019-11-06)
8
14
 
9
15
  ### Added
10
16
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- datarockets-style (0.6.0)
4
+ datarockets-style (0.6.1)
5
5
  rubocop (~> 0.76)
6
6
  rubocop-rspec (~> 1.36)
7
7
 
data/README.md CHANGED
@@ -104,20 +104,20 @@ Inspecting 10 files
104
104
  ...CC.CC..
105
105
  10 files inspected, 7 offenses detected
106
106
 
107
- Layout/IndentationConsistency
107
+ Layout/IndentationConsistency:
108
108
  Exclude:
109
109
  - 'spec/datarockets/style/formatter/todo_list_formatter_spec.rb' # 1
110
110
 
111
- Naming/MemoizedInstanceVariableName
111
+ Naming/MemoizedInstanceVariableName:
112
112
  Exclude:
113
113
  - 'lib/datarockets/style/formatter/todo_list_formatter/report_summary.rb' # 1
114
114
 
115
- RSpec/ExampleLength
115
+ RSpec/ExampleLength:
116
116
  Exclude:
117
117
  - 'spec/datarockets/style/formatter/todo_list_formatter/report_summary_spec.rb' # 1
118
118
  - 'spec/datarockets/style/formatter/todo_list_formatter_spec.rb' # 2
119
119
 
120
- Style/Documentation
120
+ Style/Documentation:
121
121
  Exclude:
122
122
  - 'lib/datarockets/style/formatter/todo_list_formatter/report_summary.rb' # 1
123
123
  - 'lib/datarockets/style/formatter/todo_list_formatter.rb' # 1
@@ -133,16 +133,16 @@ Inspecting 10 files
133
133
  ...CC.CC..
134
134
  10 files inspected, 7 offenses detected, 1 offenses corrected
135
135
 
136
- Naming/MemoizedInstanceVariableName
136
+ Naming/MemoizedInstanceVariableName:
137
137
  Exclude:
138
138
  - 'lib/datarockets/style/formatter/todo_list_formatter/report_summary.rb' # 1
139
139
 
140
- RSpec/ExampleLength
140
+ RSpec/ExampleLength:
141
141
  Exclude:
142
142
  - 'spec/datarockets/style/formatter/todo_list_formatter/report_summary_spec.rb' # 1
143
143
  - 'spec/datarockets/style/formatter/todo_list_formatter_spec.rb' # 2
144
144
 
145
- Style/Documentation
145
+ Style/Documentation:
146
146
  Exclude:
147
147
  - 'lib/datarockets/style/formatter/todo_list_formatter/report_summary.rb' # 1
148
148
  - 'lib/datarockets/style/formatter/todo_list_formatter.rb' # 1
@@ -27,7 +27,7 @@ module Datarockets
27
27
  end
28
28
 
29
29
  def print(output)
30
- output.puts(cop_name)
30
+ output.puts(cop_name + ":")
31
31
  output.puts(" Exclude:")
32
32
  file_groups.sort_by(&:file).each do |file_group|
33
33
  file_group.print(output)
@@ -1,5 +1,5 @@
1
1
  module Datarockets
2
2
  module Style
3
- VERSION = "0.6.0".freeze
3
+ VERSION = "0.6.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datarockets-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Dubrovsky