netsoft-danger 0.4.5 → 0.5.0

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
  SHA256:
3
- metadata.gz: d5698456c6bddb5523173ef86d53f2aec5416f7550c0ea28ab685534796b393e
4
- data.tar.gz: 1dd2c88b77d0f8028287cebb55053f297f688341aa03646cb2cbdf8983da430d
3
+ metadata.gz: 9e08eb241362988d887b622fb6a446e8e76fd5dd93384ef105ea91e073d86737
4
+ data.tar.gz: 3e5c368c2e1b2048abd67b3d781f112ef117b3e1bde28ce58a8dc29a9e8f0f54
5
5
  SHA512:
6
- metadata.gz: fac11210176e7a4f09fc128548e0f4aa9a25e65c61112afdbce32c78db9d279cebf495e58e6bcd6668cdb7e0d71e83a04bea8ad0649feb8752070f482cef6535
7
- data.tar.gz: 925d7666da1126663754db412bdf7f0547e30bbacffe7f59ca81751def2b500a1e1d6bc5aefb8ce4a60b88e27a72eed767a36329255100f0d6d28a9f7dabb917
6
+ metadata.gz: ce2b4c4f42b58878171a7a990d00155881af9a62d641c992c9edf376df41f6e68a0d95755f6e477ca73ce97d5c2707218697ea46fdd96f5f97cc3d2529ede9fe
7
+ data.tar.gz: b5591601776b74461a67cd573b4ac08ec7e9eb66082e22ee0805195b3a9037ce1a56612da6b5f435686f2ef2a7cc32bda7edc299e6d42380c2bfee0a66f9349b
data/CHANGELOG.md CHANGED
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
9
  ### Changed
10
10
  ### Fixed
11
11
 
12
+ ## [0.5.0]
13
+ ### Changed
14
+ - updated danger to 8.x
15
+
12
16
  ## [0.4.5]
13
17
  ### Changed
14
18
  - remove the "fit left in tests" check
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NetsoftDanger
4
- VERSION = '0.4.5'
4
+ VERSION = '0.5.0'
5
5
  end
@@ -13,12 +13,14 @@ Gem::Specification.new do |s|
13
13
  s.description = 'Packages a Dangerfile to be used with Danger.'
14
14
  s.executables << 'netsoft-circle'
15
15
 
16
- s.files = `git ls-files`.split("\n")
16
+ s.files = `git ls-files`.split("\n").reject { |f|
17
+ f.match?(%r{^\.github/}i)
18
+ }
17
19
  s.require_paths = ['lib']
18
20
 
19
21
  s.required_ruby_version = '>= 2.4'
20
22
 
21
- s.add_runtime_dependency 'danger', '~> 5.0'
23
+ s.add_runtime_dependency 'danger', '~> 8.0'
22
24
  s.add_runtime_dependency 'faraday'
23
25
  s.add_runtime_dependency 'simplecov', '~> 0.20.0'
24
26
  s.add_runtime_dependency 'thor'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netsoft-danger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - urkle
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-25 00:00:00.000000000 Z
11
+ date: 2022-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: danger
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '5.0'
19
+ version: '8.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '5.0'
26
+ version: '8.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: faraday
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -101,9 +101,6 @@ executables:
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
- - ".circleci/config.yml"
105
- - ".github/PULL_REQUEST_TEMPLATE.md"
106
- - ".github/PULL_REQUEST_TEMPLATE.txt"
107
104
  - ".gitignore"
108
105
  - ".rubocop.yml"
109
106
  - CHANGELOG.md
@@ -124,7 +121,7 @@ files:
124
121
  homepage: https://github.com/NetsoftHoldings/danger
125
122
  licenses: []
126
123
  metadata: {}
127
- post_install_message:
124
+ post_install_message:
128
125
  rdoc_options: []
129
126
  require_paths:
130
127
  - lib
@@ -139,8 +136,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
136
  - !ruby/object:Gem::Version
140
137
  version: '0'
141
138
  requirements: []
142
- rubygems_version: 3.0.3
143
- signing_key:
139
+ rubygems_version: 3.0.8
140
+ signing_key:
144
141
  specification_version: 4
145
142
  summary: Danger.systems conventions for Netsoft projects.
146
143
  test_files: []
data/.circleci/config.yml DELETED
@@ -1,134 +0,0 @@
1
- version: 2
2
-
3
- defaults: &defaults
4
- docker: &ruby_image
5
- - &ruby_image
6
- image: circleci/ruby:2.5.5-stretch
7
- environment:
8
- RUBYOPT: '-KU -E utf-8:utf-8'
9
- BUNDLE_PATH: vendor/bundle
10
- BUNDLE_VERSION: 1.17.3
11
- BUNDLE_JOBS: 4
12
- BUNDLE_RETRY: 3
13
-
14
- filters:
15
- test: &filter_test
16
- filters:
17
- tags:
18
- ignore: /^v.*/
19
- beta: &filter_beta
20
- filters:
21
- branches:
22
- ignore: /.*/
23
- tags:
24
- only: /^v[0-9]+(\.[0-9]+)+(\.[a-z].+).*/
25
- release: &filter_release
26
- filters:
27
- branches:
28
- ignore: /.*/
29
- tags:
30
- only: /^v[0-9]+(\.[0-9]+)+/
31
-
32
- workflows:
33
- version: 2
34
- build_test:
35
- jobs:
36
- - "Checkout":
37
- <<: *filter_test
38
- context: org-global
39
- - "Build":
40
- <<: *filter_test
41
- context: org-global
42
- requires:
43
- - "Checkout"
44
- build_test_beta:
45
- jobs:
46
- - "Checkout":
47
- <<: *filter_beta
48
- context: org-global
49
- - "Build":
50
- <<: *filter_beta
51
- context: org-global
52
- requires:
53
- - "Checkout"
54
- - "Publish":
55
- <<: *filter_beta
56
- context: org-global
57
- requires:
58
- - "Build"
59
- build_test_release:
60
- jobs:
61
- - "Checkout":
62
- <<: *filter_release
63
- context: org-global
64
- - "Build":
65
- <<: *filter_release
66
- context: org-global
67
- requires:
68
- - "Checkout"
69
- - "Publish":
70
- <<: *filter_release
71
- context: org-global
72
- requires:
73
- - "Build"
74
-
75
- jobs:
76
- "Checkout":
77
- <<: *defaults
78
- steps:
79
- - attach_workspace:
80
- at: .
81
- - checkout
82
-
83
- - restore_cache:
84
- keys:
85
- - netsoft-danger-bundle-v3-{{ checksum "Gemfile" }}-{{ checksum "netsoft-danger.gemspec" }}
86
- - run:
87
- name: Install bundler
88
- command: gem install bundler --version=$BUNDLE_VERSION
89
- - run:
90
- name: Bundle Install
91
- command: |-
92
- bundle _${BUNDLE_VERSION}_ check || bundle _${BUNDLE_VERSION}_ install --retry=$BUNDLE_RETRY
93
- - save_cache:
94
- key: netsoft-danger-bundle-v3-{{ checksum "Gemfile" }}-{{ checksum "netsoft-danger.gemspec" }}
95
- paths:
96
- - vendor/bundle
97
- - Gemfile.lock
98
-
99
- - persist_to_workspace:
100
- root: .
101
- paths: .
102
- "Build":
103
- <<: *defaults
104
- steps:
105
- - attach_workspace:
106
- at: .
107
- - run:
108
- name: Install bundler
109
- command: gem install bundler --version=$BUNDLE_VERSION
110
- - run:
111
- name: Build gem
112
- command: |-
113
- gem build *.gemspec
114
- - run:
115
- name: Run rubocop
116
- command: |-
117
- bundle exec rubocop
118
- - run:
119
- name: Run Danger
120
- command: |-
121
- bundle exec danger
122
- "Publish":
123
- <<: *defaults
124
- steps:
125
- - attach_workspace:
126
- at: .
127
- - run:
128
- name: Deploy to gem server
129
- command: |-
130
- ./bin/tag_check.sh
131
- ./bin/setup-rubygems.sh
132
- rm -rf pkg
133
- rake build
134
- gem push pkg/*.gem
@@ -1,24 +0,0 @@
1
- ## Change description
2
-
3
- > Please include a summary of the change and which issue is fixed. Please also include
4
- relevant motivation and context. List any dependencies that are required for this change.
5
-
6
- ## Related issues
7
-
8
- - Source: <Issue link or Spec Link>
9
- - UAT: <UAT Link>
10
- - QA: <QA Task Link here>
11
- - Review app: <Link to Heroku>
12
-
13
- ## Checklists
14
-
15
- ### Development
16
-
17
- - [ ] The commit message follows our [guidelines](https://docs.hubstaff.com/hubstaff-docs/latest/great_commit_messages.html)
18
- - [ ] I have performed a self-review of my own code
19
- - [ ] I have thoroughly tested the changes
20
- - [ ] I have added tests that prove my fix is effective or that my feature works
21
-
22
- ### Security
23
-
24
- - [ ] Security impact of change has been considered
@@ -1,25 +0,0 @@
1
- ## Change description
2
-
3
- > Please include a summary of the change and which issue is fixed. Please also include
4
- relevant motivation and context. List any dependencies that are required for this change.
5
-
6
- ## Related issues
7
-
8
- - Source: <Issue link or Spec Link>
9
- - UAT: <UAT Link>
10
- - QA: <QA Task Link here>
11
- - Review app: <Link to Heroku>
12
-
13
- ## Checklists
14
-
15
- ### Development
16
-
17
- - [ ] The commit message follows our guidelines
18
- - [ ] I have performed a self-review of my own code
19
- - [ ] I have thoroughly tested the changes
20
- - [ ] I have added tests that prove my fix is effective or that my feature works
21
-
22
- ### Security
23
-
24
- - [ ] Security impact of change has been considered
25
-