netsoft-danger 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +4 -0
- data/.rubocop.yml +15 -0
- data/CHANGELOG.md +6 -0
- data/Dangerfile +60 -56
- data/Gemfile +2 -0
- data/Rakefile +3 -1
- data/bin/netsoft-circle +23 -22
- data/lib/netsoft-danger/version.rb +3 -1
- data/netsoft-danger.gemspec +12 -4
- metadata +88 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a81baab75ddc9560cb393a78808eefc811ef7ac94a6607af196810e19e767a0
|
4
|
+
data.tar.gz: 2d1c26f1193a659a10de32539e849c20ef29f4aed96fb1fd60fb892b31b7e4db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5068eee24065a199329218236d15338fb1d743e1a5e59143f6399d1736445e2da5f6ef6c001d298536ad77291fbe1cbdf95bd135e13bb384f848dace6deb4f7b
|
7
|
+
data.tar.gz: 913064065503d4e902dc6aa769be625560cd9bd589c2636c06cf2e24f9ab2784d1d4c865fb5ea88bdbc939c738286fee15d254e109542ba66bd2bcacbc2ca987
|
data/.circleci/config.yml
CHANGED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
CHANGED
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
9
9
|
### Changed
|
10
10
|
### Fixed
|
11
11
|
|
12
|
+
## [0.3.6]
|
13
|
+
### Added
|
14
|
+
- rubocop checks for this gem
|
15
|
+
### Changed
|
16
|
+
- allow bundler 1.17.3
|
17
|
+
|
12
18
|
## [0.3.5]
|
13
19
|
### Added
|
14
20
|
- package.json checks
|
data/Dangerfile
CHANGED
@@ -1,30 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Don't let testing shortcuts get into master by accident
|
2
|
-
if Dir.
|
3
|
-
fail(
|
4
|
-
fail(
|
5
|
-
fail(
|
6
|
-
fail(
|
7
|
-
fail(
|
4
|
+
if Dir.exist?('spec')
|
5
|
+
fail('fdescribe left in tests') if `grep -r -e '\\bfdescribe\\b' spec/ |grep -v 'danger ok' `.length > 1
|
6
|
+
fail('fcontext left in tests') if `grep -r -e '\\bfcontext\\b' spec/ |grep -v 'danger ok' `.length > 1
|
7
|
+
fail('fit left in tests') if `grep -r -e '\\bfit\\b' spec/ | grep -v 'danger ok' `.length > 1
|
8
|
+
fail('ap left in tests') if `grep -r -e '\\bap\\b' spec/ | grep -v 'danger ok' `.length > 1
|
9
|
+
fail('puts left in tests') if `grep -r -e '\\bputs\\b' spec/ | grep -v 'danger ok' `.length > 1
|
8
10
|
end
|
9
11
|
|
10
|
-
if File.
|
12
|
+
if File.exist?('Gemfile')
|
11
13
|
if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+[a-zA-Z]" `.length > 1
|
12
|
-
fail(
|
14
|
+
fail('[gemfile] Beta hubstaff_* gems are not allowed in master/production')
|
13
15
|
end
|
14
16
|
if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+'[~>=]\\+.\\+[a-zA-Z]" `.length > 1
|
15
|
-
fail(
|
17
|
+
fail('[gemfile] Beta hubstaff_* gems should be the exact version')
|
16
18
|
end
|
17
19
|
if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+[' ][0-9.]\\+'" | grep -v '~>' `.length > 1
|
18
|
-
fail(
|
20
|
+
fail('[gemfile] Release hubstaff_* gems should be using a ~> version')
|
19
21
|
end
|
20
22
|
end
|
21
23
|
|
22
24
|
git.commits.each do |c|
|
23
|
-
short
|
24
|
-
has_migrations
|
25
|
-
has_schema_changes = c.diff_parent.any? {|f| f.path =~ /
|
26
|
-
has_migration_msg
|
27
|
-
no_schema_ok
|
25
|
+
short = " ( #{c.sha[0..7]} )"
|
26
|
+
has_migrations = c.diff_parent.any? { |f| f.path =~ %r{db/migrate/} }
|
27
|
+
has_schema_changes = c.diff_parent.any? { |f| f.path =~ %r{db/schema\.rb} }
|
28
|
+
has_migration_msg = c.message.start_with?('[migration]')
|
29
|
+
no_schema_ok = ENV['DANGER_NO_SCHEMA_OK'] || false
|
28
30
|
if has_migrations || has_schema_changes
|
29
31
|
unless has_migration_msg
|
30
32
|
fail '[migration] Schema migration commits need to be prefixed with [migration]' + short
|
@@ -35,45 +37,45 @@ git.commits.each do |c|
|
|
35
37
|
if !has_migrations && has_schema_changes
|
36
38
|
warn '[migration] Please checkin your migrations with your schema.rb changes' + short
|
37
39
|
end
|
38
|
-
if c.diff_parent.any? {|f|
|
40
|
+
if c.diff_parent.any? { |f| f.path !~ %r{db/migrate/|db/schema\.rb} }
|
39
41
|
fail '[migration] Migration commit contains non-migration changes' + short
|
40
42
|
end
|
41
43
|
elsif has_migration_msg
|
42
44
|
fail '[migration] Migration commit with no migrations!' + short
|
43
45
|
end
|
44
46
|
|
45
|
-
has_hubstaff_icon_changes = c.diff_parent.any? {|f| f.path =~ /hubstaff(icons|font)|fontcustom-manifest/ }
|
47
|
+
has_hubstaff_icon_changes = c.diff_parent.any? { |f| f.path =~ /hubstaff(icons|font)|fontcustom-manifest/ }
|
46
48
|
if has_hubstaff_icon_changes
|
47
|
-
if c.diff_parent.any? {|f| !(
|
49
|
+
if c.diff_parent.any? { |f| !(f.path =~ /hubstaff-(icons|font)/ || f.path =~ /fontcustom-manifest/) }
|
48
50
|
fail '[hubstaff-icons] Put hubstaff-icon changes into their own commit' + short
|
49
51
|
end
|
50
52
|
end
|
51
53
|
|
52
|
-
has_gemfile_changes = c.diff_parent.any? {|f| f.path =~ /Gemfile|gemspec/ }
|
53
|
-
has_gemfile_msg
|
54
|
+
has_gemfile_changes = c.diff_parent.any? { |f| f.path =~ /Gemfile|gemspec/ }
|
55
|
+
has_gemfile_msg = c.message.start_with?('[gemfile]')
|
54
56
|
if has_gemfile_changes
|
55
57
|
unless has_gemfile_msg
|
56
58
|
fail '[gemfile] Gemfile commits need to be prefixed with [gemfile] ' + short
|
57
59
|
end
|
58
|
-
if c.diff_parent.any? {|f|
|
60
|
+
if c.diff_parent.any? { |f| f.path !~ /Gemfile|gemspec/ }
|
59
61
|
fail '[gemfile] Gemfile commit contains non-gemfile changes' + short
|
60
62
|
end
|
61
|
-
if c.diff_parent.any? {|f| f.path == 'Gemfile.lock' }
|
62
|
-
unless `grep -
|
63
|
-
fail(
|
63
|
+
if c.diff_parent.any? { |f| f.path == 'Gemfile.lock' }
|
64
|
+
unless `grep -E -- '^BUNDLED WITH\s*\n\s+(1\\.15\\.2|1\\.17\\.3)$' Gemfile.lock`.length > 1
|
65
|
+
fail('[gemfile] Gemfile not bundled with bundler 1.15.2 or 1.17.3')
|
64
66
|
end
|
65
67
|
end
|
66
68
|
elsif has_gemfile_msg
|
67
69
|
fail '[gemfile] Gemfile commit has no gemfile changes!' + short
|
68
70
|
end
|
69
71
|
|
70
|
-
has_package_changes = c.diff_parent.any? {|f| f.path =~ /package\.json|yarn\.lock/ }
|
71
|
-
has_package_msg
|
72
|
+
has_package_changes = c.diff_parent.any? { |f| f.path =~ /package\.json|yarn\.lock/ }
|
73
|
+
has_package_msg = c.message.start_with?('[package.json]')
|
72
74
|
if has_package_changes
|
73
75
|
unless has_package_msg
|
74
76
|
fail '[package.json] Package.json commits need to be prefixed with [package.json] ' + short
|
75
77
|
end
|
76
|
-
if c.diff_parent.any? {|f|
|
78
|
+
if c.diff_parent.any? { |f| f.path !~ /package\.json|yarn\.lock/ }
|
77
79
|
fail '[package.json] Package.json commit contains non-package changes' + short
|
78
80
|
end
|
79
81
|
elsif has_package_msg
|
@@ -81,38 +83,40 @@ git.commits.each do |c|
|
|
81
83
|
end
|
82
84
|
end
|
83
85
|
|
84
|
-
|
86
|
+
if ENV['CIRCLE_TOKEN']
|
87
|
+
require 'open-uri'
|
85
88
|
|
86
|
-
artifact_url = "https://circleci.com/api/v1.1/project/github/#{ENV['CIRCLE_PROJECT_USERNAME']}/#{ENV[
|
87
|
-
artifacts
|
89
|
+
artifact_url = "https://circleci.com/api/v1.1/project/github/#{ENV['CIRCLE_PROJECT_USERNAME']}/#{ENV['CIRCLE_PROJECT_REPONAME']}/#{ENV['CIRCLE_BUILD_NUM']}/artifacts?circle-token=#{ENV['CIRCLE_TOKEN']}"
|
90
|
+
artifacts = JSON.parse(URI.parse(artifact_url).read).map { |a| a['url'] }
|
88
91
|
|
89
|
-
jest
|
90
|
-
coverage
|
91
|
-
rubocop
|
92
|
-
eslint
|
93
|
-
rspec_files = artifacts.select{ |artifact| artifact =~ /rspec-(.+)\.html$/ }
|
92
|
+
jest = artifacts.find { |artifact| artifact.end_with?('jest/index.html') }
|
93
|
+
coverage = artifacts.find { |artifact| artifact.end_with?('coverage/index.html') }
|
94
|
+
rubocop = artifacts.find { |artifact| artifact.end_with?('rubocop/report.html') }
|
95
|
+
eslint = artifacts.find { |artifact| artifact.end_with?('eslint/report.html') }
|
96
|
+
rspec_files = artifacts.select { |artifact| artifact =~ /rspec-(.+)\.html$/ }
|
94
97
|
|
95
|
-
{}.tap do |hash|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
end.each do |msg, links|
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
98
|
+
{}.tap do |hash|
|
99
|
+
hash['Ruby coverage report'] = coverage if coverage
|
100
|
+
hash['RSpec test report'] = rspec_files unless rspec_files.empty?
|
101
|
+
hash['RuboCop inspection report'] = rubocop if rubocop
|
102
|
+
hash['ESLint inspection report'] = eslint if eslint
|
103
|
+
hash['Jest coverage report'] = jest if jest
|
104
|
+
end.each do |msg, links|
|
105
|
+
links = [*links]
|
106
|
+
if links.size == 1
|
107
|
+
message("[#{msg}](#{links[0]})")
|
108
|
+
else
|
109
|
+
r = /rspec-(.+)\.html$/
|
110
|
+
the_links = links.map { |l|
|
111
|
+
m = r.match(l)
|
112
|
+
if m
|
113
|
+
"[#{m[1]}](#{l})"
|
114
|
+
else
|
115
|
+
"[link](#{l})"
|
116
|
+
end
|
117
|
+
}.join(', ')
|
115
118
|
|
116
|
-
|
119
|
+
message("#{msg} - #{the_links}")
|
120
|
+
end
|
117
121
|
end
|
118
122
|
end
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
data/bin/netsoft-circle
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require 'thor'
|
4
5
|
require 'fileutils'
|
5
6
|
|
6
|
-
class NetsoftCircle < Thor
|
7
|
+
class NetsoftCircle < Thor # :nodoc:
|
7
8
|
desc 'setup', 'Setup Heroku for deployment'
|
8
9
|
def setup
|
9
|
-
|
10
10
|
File.open("#{ENV['HOME']}/.netrc", 'a+') do |file|
|
11
|
-
file <<
|
11
|
+
file << <<~CONFIG
|
12
12
|
|
13
|
-
machine api.heroku.com
|
14
|
-
|
15
|
-
|
16
|
-
machine git.heroku.com
|
17
|
-
|
18
|
-
|
19
|
-
|
13
|
+
machine api.heroku.com
|
14
|
+
login #{ENV['HEROKU_LOGIN']}
|
15
|
+
password #{ENV['HEROKU_API_KEY']}
|
16
|
+
machine git.heroku.com
|
17
|
+
login #{ENV['HEROKU_LOGIN']}
|
18
|
+
password #{ENV['HEROKU_API_KEY']}
|
19
|
+
CONFIG
|
20
20
|
end
|
21
21
|
|
22
|
-
Dir.mkdir("#{ENV['HOME']}/.ssh") unless Dir.
|
22
|
+
Dir.mkdir("#{ENV['HOME']}/.ssh") unless Dir.exist?("#{ENV['HOME']}/.ssh")
|
23
23
|
File.open("#{ENV['HOME']}/.ssh/config", 'a+') do |file|
|
24
|
-
file <<
|
24
|
+
file << <<~CONFIG
|
25
25
|
|
26
|
-
VerifyHostKeyDNS yes
|
27
|
-
StrictHostKeyChecking no
|
28
|
-
|
26
|
+
VerifyHostKeyDNS yes
|
27
|
+
StrictHostKeyChecking no
|
28
|
+
CONFIG
|
29
29
|
end
|
30
30
|
|
31
31
|
system('git config --global url."https://git.heroku.com/".insteadOf heroku:')
|
32
|
-
exit(1) unless
|
32
|
+
exit(1) unless $CHILD_STATUS.success?
|
33
33
|
end
|
34
34
|
|
35
35
|
desc 'merge', 'Merges several simplecov json result files'
|
@@ -37,6 +37,7 @@ EOF
|
|
37
37
|
def merge(*files)
|
38
38
|
require 'simplecov'
|
39
39
|
return if files.empty?
|
40
|
+
|
40
41
|
results = []
|
41
42
|
|
42
43
|
files.each do |file|
|
@@ -54,7 +55,7 @@ EOF
|
|
54
55
|
|
55
56
|
desc 'rspec', 'Run rspec'
|
56
57
|
def rspec
|
57
|
-
system
|
58
|
+
system <<~COMMAND
|
58
59
|
bundle _${BUNDLE_VERSION}_ exec rspec \
|
59
60
|
--color \
|
60
61
|
--format RspecJunitFormatter \
|
@@ -63,20 +64,20 @@ EOF
|
|
63
64
|
--out $CIRCLE_ARTIFACTS/rspec.html \
|
64
65
|
--format progress \
|
65
66
|
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
66
|
-
|
67
|
-
exit(1) unless
|
67
|
+
COMMAND
|
68
|
+
exit(1) unless $CHILD_STATUS.success?
|
68
69
|
end
|
69
70
|
|
70
71
|
desc 'rubocop', 'Run rubocop'
|
71
72
|
def rubocop
|
72
|
-
system
|
73
|
+
system <<~COMMAND
|
73
74
|
bundle _${BUNDLE_VERSION}_ exec rubocop \
|
74
75
|
--parallel \
|
75
76
|
--format progress \
|
76
77
|
--format html \
|
77
78
|
--out $CIRCLE_ARTIFACTS/rubocop/report.html
|
78
|
-
|
79
|
-
exit(1) unless
|
79
|
+
COMMAND
|
80
|
+
exit(1) unless $CHILD_STATUS.success?
|
80
81
|
end
|
81
82
|
|
82
83
|
def self.exit_on_failure?
|
data/netsoft-danger.gemspec
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
$LOAD_PATH.push File.expand_path('lib', __dir__)
|
3
4
|
require 'netsoft-danger/version'
|
4
5
|
|
5
6
|
Gem::Specification.new do |s|
|
@@ -15,8 +16,15 @@ Gem::Specification.new do |s|
|
|
15
16
|
s.files = `git ls-files`.split("\n")
|
16
17
|
s.require_paths = ['lib']
|
17
18
|
|
18
|
-
s.add_development_dependency 'rake'
|
19
19
|
s.add_runtime_dependency 'danger', '~> 5.0'
|
20
|
+
s.add_runtime_dependency 'faraday'
|
20
21
|
s.add_runtime_dependency 'thor'
|
21
|
-
|
22
|
+
|
23
|
+
s.add_development_dependency 'rake'
|
24
|
+
|
25
|
+
s.add_development_dependency 'netsoft-rubocop', '= 1.0.1'
|
26
|
+
s.add_development_dependency 'rubocop', '= 0.74.0'
|
27
|
+
s.add_development_dependency 'rubocop-performance', '= 1.5.2'
|
28
|
+
s.add_development_dependency 'rubocop-rails', '= 2.4.2'
|
29
|
+
s.add_development_dependency 'rubocop-rspec', '= 1.38.1'
|
22
30
|
end
|
metadata
CHANGED
@@ -1,23 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netsoft-danger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- urkle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: danger
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '5.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '5.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - ">="
|
18
32
|
- !ruby/object:Gem::Version
|
19
33
|
version: '0'
|
20
|
-
type: :
|
34
|
+
type: :runtime
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
@@ -25,27 +39,27 @@ dependencies:
|
|
25
39
|
- !ruby/object:Gem::Version
|
26
40
|
version: '0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
42
|
+
name: thor
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
|
-
- - "
|
45
|
+
- - ">="
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
47
|
+
version: '0'
|
34
48
|
type: :runtime
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
|
-
- - "
|
52
|
+
- - ">="
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
56
|
+
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
59
|
- - ">="
|
46
60
|
- !ruby/object:Gem::Version
|
47
61
|
version: '0'
|
48
|
-
type: :
|
62
|
+
type: :development
|
49
63
|
prerelease: false
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
51
65
|
requirements:
|
@@ -53,19 +67,75 @@ dependencies:
|
|
53
67
|
- !ruby/object:Gem::Version
|
54
68
|
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
70
|
+
name: netsoft-rubocop
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
|
-
- -
|
73
|
+
- - '='
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
62
|
-
type: :
|
75
|
+
version: 1.0.1
|
76
|
+
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
|
-
- -
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.0.1
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.74.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.74.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-performance
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.5.2
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.5.2
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop-rails
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 2.4.2
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 2.4.2
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop-rspec
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 1.38.1
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
67
137
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
138
|
+
version: 1.38.1
|
69
139
|
description: Packages a Dangerfile to be used with Danger.
|
70
140
|
email: []
|
71
141
|
executables:
|
@@ -75,6 +145,7 @@ extra_rdoc_files: []
|
|
75
145
|
files:
|
76
146
|
- ".circleci/config.yml"
|
77
147
|
- ".gitignore"
|
148
|
+
- ".rubocop.yml"
|
78
149
|
- CHANGELOG.md
|
79
150
|
- Dangerfile
|
80
151
|
- Gemfile
|