slack-ruby-danger 0.1.1 → 0.2.0

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
- SHA1:
3
- metadata.gz: 69d60afb3cc7881b5cc47170f7c5f495b7aedad1
4
- data.tar.gz: 8fd57283bc2abb843a4106df5a52ca0872874f86
2
+ SHA256:
3
+ metadata.gz: 8a8b6679b90e1348c0a5179b8ab32ef3f4d0a5470e58a8c4170ba8c4a9e69547
4
+ data.tar.gz: 7ce0d762c0f07ce6fdee29ea2942dfe148e2db29093da381e5eeca908e5e34c8
5
5
  SHA512:
6
- metadata.gz: f47924f03d64ed34dd8932216fc27c846221961cc1b8369c7a217d1049fbccbed6198c339fc6701b4701a5eceb7a3da204b904d46f867036cda90771ec331ccc
7
- data.tar.gz: 93e1b2621842e072710d8e174c0c2b8b454ab15ad25a46a21c04bb2e4cd8295ec2daf7b3d78969650c0556665abeb2ea773c8e385b8170a370ef0ac195bf02aa
6
+ metadata.gz: 87b71bc5fb906e3de286004d32cfd4790eb61eff3c42ca85f7f7e5b7d39dc2dde4f23cd101aded7236a3e0300ab51711088a29c16f906579a86c09322089f1a2
7
+ data.tar.gz: 62f8aea2652afa4389bb6306f1fe7cb8b915f8185acf97cbd62b00823ad37de0ed7e0f6ae796f4d7e9af348894bdddb643a39caf464c0154eb799af730c46599
@@ -1,13 +1,14 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-07-30 11:43:22 -0400 using RuboCop version 0.42.0.
3
+ # on 2020-05-09 10:37:29 -0400 using RuboCop version 0.82.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 18
10
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
9
+ # Offense count: 14
10
+ # Cop supports --auto-correct.
11
+ # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
11
12
  # URISchemes: http, https
12
- Metrics/LineLength:
13
- Max: 195
13
+ Layout/LineLength:
14
+ Max: 169
@@ -2,7 +2,7 @@ language: ruby
2
2
 
3
3
  sudo: false
4
4
 
5
- rvm: 2.3.1
5
+ rvm: 2.6.6
6
6
 
7
7
  before_script:
8
8
  - bundle exec danger
@@ -1,10 +1,14 @@
1
1
  ### Changelog
2
2
 
3
- #### 0.1.1 (11/27/2016)
3
+ #### 0.2.0 (2020/05/09)
4
+
5
+ * [#5](https://github.com/slack-ruby/danger/pull/5): Upgraded Danger 8.0, danger-changelog 0.6.1 and added danger-toc 0.2.0 - [@dblock](https://github.com/dblock).
6
+
7
+ #### 0.1.1 (2016/11/27)
4
8
 
5
9
  * [#4](https://github.com/slack-ruby/danger/pull/4): Upgraded to danger 4.0.1 and danger-changelog 0.2.0 - [@dblock](https://github.com/dblock).
6
10
 
7
- #### 0.1.0 (9/5/2016)
11
+ #### 0.1.0 (2016/9/5)
8
12
 
9
13
  * [#3](https://github.com/slack-ruby/danger/pull/3): Turn this project into the slack-ruby-danger gem - [@dblock](https://github.com/dblock).
10
14
  * [#2](https://github.com/slack-ruby/danger/pull/2): Use the danger-changelog plugin - [@dblock](https://github.com/dblock).
data/Dangerfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # --------------------------------------------------------------------------------------------------------------------
2
4
  # Has any changes happened inside the actual library code?
3
5
  # --------------------------------------------------------------------------------------------------------------------
@@ -7,9 +9,7 @@ has_spec_changes = !git.modified_files.grep(/spec/).empty?
7
9
  # --------------------------------------------------------------------------------------------------------------------
8
10
  # You've made changes to lib, but didn't write any tests?
9
11
  # --------------------------------------------------------------------------------------------------------------------
10
- if has_app_changes && !has_spec_changes
11
- warn("There're library changes, but not tests. That's OK as long as you're refactoring existing code.", sticky: false)
12
- end
12
+ warn("There're library changes, but not tests. That's OK as long as you're refactoring existing code.", sticky: false) if has_app_changes && !has_spec_changes
13
13
 
14
14
  # --------------------------------------------------------------------------------------------------------------------
15
15
  # You've made changes to specs, but no library code has changed?
@@ -21,15 +21,21 @@ end
21
21
  # --------------------------------------------------------------------------------------------------------------------
22
22
  # Have you updated CHANGELOG.md?
23
23
  # --------------------------------------------------------------------------------------------------------------------
24
- changelog.check
24
+ changelog.check!
25
+
26
+ # --------------------------------------------------------------------------------------------------------------------
27
+ # Do you have a TOC?
28
+ # --------------------------------------------------------------------------------------------------------------------
29
+ toc.check!
25
30
 
26
31
  # --------------------------------------------------------------------------------------------------------------------
27
32
  # Don't let testing shortcuts get into master by accident,
28
33
  # ensuring that we don't get green builds based on a subset of tests.
29
34
  # --------------------------------------------------------------------------------------------------------------------
30
35
 
31
- (git.modified_files + git.added_files - %w(Dangerfile)).each do |file|
36
+ (git.modified_files + git.added_files - %w[Dangerfile]).each do |file|
32
37
  next unless File.file?(file)
38
+
33
39
  contents = File.read(file)
34
40
  if file.start_with?('spec')
35
41
  fail("`xit` or `fit` left in tests (#{file})") if contents =~ /^\w*[xf]it/
data/Gemfile CHANGED
@@ -2,4 +2,4 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'rubocop', '0.42.0'
5
+ gem 'rubocop', '0.82.0'
data/README.md CHANGED
@@ -4,23 +4,33 @@
4
4
 
5
5
  [![Build Status](https://travis-ci.org/slack-ruby/danger.svg?branch=master)](https://travis-ci.org/slack-ruby/danger)
6
6
 
7
- ### Setup
7
+ # Table of Contents
8
+
9
+ - [Setup](#setup)
10
+ - [Set DANGER_GITHUB_API_TOKEN in Travis-CI](#set-danger_github_api_token-in-travis-ci)
11
+ - [Add Danger](#add-danger)
12
+ - [Add Dangerfile](#add-dangerfile)
13
+ - [Add Danger to Travis-CI](#add-danger-to-travis-ci)
14
+ - [Commit via a Pull Request](#commit-via-a-pull-request)
15
+ - [License](#license)
16
+
17
+ ## Setup
8
18
 
9
19
  Enable Danger for a project within the [slack-ruby organization](https://github.com/slack-ruby).
10
20
 
11
- #### Set DANGER_GITHUB_API_TOKEN in Travis-CI
21
+ ### Set DANGER_GITHUB_API_TOKEN in Travis-CI
12
22
 
13
23
  In Travis-CI, choose _Settings_ and add `DANGER_GITHUB_API_TOKEN` in _Environment Variables_. Set the value to the API key for the [dangerpr-bot](https://github.com/dangerpr-bot) user, look in a recent build for this project for its value.
14
24
 
15
- #### Add Danger
25
+ ### Add Danger
16
26
 
17
27
  Add `slack-ruby-danger` to `Gemfile`.
18
28
 
19
29
  ```ruby
20
- gem 'slack-ruby-danger', '~> 0.1.0'
30
+ gem 'slack-ruby-danger', '~> 0.2.0'
21
31
  ```
22
32
 
23
- #### Add Dangerfile
33
+ ### Add Dangerfile
24
34
 
25
35
  Commit a `Dangerfile`, eg. [slack-ruby-client's Dangerfile](https://github.com/slack-ruby/slack-ruby-client/blob/master/Dangerfile).
26
36
 
@@ -28,7 +38,7 @@ Commit a `Dangerfile`, eg. [slack-ruby-client's Dangerfile](https://github.com/s
28
38
  danger.import_dangerfile(gem: 'slack-ruby-danger')
29
39
  ```
30
40
 
31
- #### Add Danger to Travis-CI
41
+ ### Add Danger to Travis-CI
32
42
 
33
43
  Add Danger to `.travis.yml`, eg. [slack-ruby-client's Travis.yml](https://github.com/slack-ruby/slack-ruby-client/blob/master/.travis.yml).
34
44
 
@@ -40,7 +50,7 @@ matrix:
40
50
  - bundle exec danger
41
51
  ```
42
52
 
43
- #### Commit via a Pull Request
53
+ ### Commit via a Pull Request
44
54
 
45
55
  To test things out make a pull request without CHANGELOG.md changes. Iterate until green.
46
56
 
@@ -1,6 +1,6 @@
1
1
  # Releasing
2
2
 
3
- There're no particular rules about when to release slack-ruby-danger. Release bug fixes frequenty, features not so frequently and breaking API changes rarely.
3
+ There're no particular rules about when to release slack-ruby-danger. Release bug fixes frequently, features not so frequently and breaking API changes rarely.
4
4
 
5
5
  ### Release
6
6
 
@@ -56,7 +56,7 @@ Next Release
56
56
  * Your contribution here.
57
57
  ```
58
58
 
59
- Comit your changes.
59
+ Commit your changes.
60
60
 
61
61
  ```
62
62
  git add CHANGELOG.md
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rubygems'
2
4
  require 'bundler'
3
5
 
@@ -11,4 +13,4 @@ RuboCop::RakeTask.new
11
13
  require 'rspec/core/rake_task'
12
14
  RSpec::Core::RakeTask.new(:spec)
13
15
 
14
- task default: [:rubocop, :spec]
16
+ task default: %i[rubocop spec]
@@ -1,3 +1,3 @@
1
1
  module SlackRubyDanger
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.2.0'.freeze
3
3
  end
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
17
17
 
18
18
  s.add_development_dependency 'rake'
19
19
  s.add_development_dependency 'rspec'
20
- s.add_runtime_dependency 'danger', '~> 4.0.1'
21
- s.add_runtime_dependency 'danger-changelog', '~> 0.2.0'
20
+ s.add_runtime_dependency 'danger', '~> 8.0.0'
21
+ s.add_runtime_dependency 'danger-changelog', '~> 0.6.1'
22
+ s.add_runtime_dependency 'danger-toc', '~> 0.2.0'
22
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack-ruby-danger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - dblock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-27 00:00:00.000000000 Z
11
+ date: 2020-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -44,16 +44,30 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 4.0.1
47
+ version: 8.0.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 4.0.1
54
+ version: 8.0.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: danger-changelog
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.6.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.6.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: danger-toc
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
73
  - - "~>"
@@ -109,8 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
123
  - !ruby/object:Gem::Version
110
124
  version: '0'
111
125
  requirements: []
112
- rubyforge_project:
113
- rubygems_version: 2.5.1
126
+ rubygems_version: 3.0.3
114
127
  signing_key:
115
128
  specification_version: 4
116
129
  summary: Danger.systems conventions for slack-ruby projects.