simplycop 1.7.1 → 1.7.5

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: 1c5e5d71fa2887210ca724ca027750a4d4394d1b3534c5788c80c60b84962bde
4
- data.tar.gz: 508cdb5d80beb6e5c0165684ea41ae2e48b9f0754c00f7177d12c33c1e97ae11
3
+ metadata.gz: b2e77533f1f1e2ab183ee38e0b154de2b531366aa67c112eda000e2a2a6da9dc
4
+ data.tar.gz: 176e07e981b3747f42b4b275c49fcc4c13193ad1a44dc37c7e85bfce0b79fa8b
5
5
  SHA512:
6
- metadata.gz: 25ac6ea607cc4815efcbe24d2ffa93e9766eb72863845b4cc08720fc7092da563a902af21b21e73599b0e512901c35c68e94f6096b167c7ef61ba350e2bf140f
7
- data.tar.gz: b48e756765a1fa0b9a19a0232cadf9b17d4335de756f1164ad6ecc22f2a87c6922dbb70c5f6e419f17eb48845d56bccc8396ce7f4e20755ea358538e6258ac62
6
+ metadata.gz: 1158d81c907c57ca389d6638cdc39ee86fb4f0f277f6e071f3a62b42d8e7a5420432a82444ce4897a3f946d859b16ee31fcd4e9da92879a15bc544ac3ed9c323
7
+ data.tar.gz: f13026040f02ec6b2e199fd2a75e1a57cc3cc975fb2155431d522658ca7c397db8f20e2ab23d46312000dd9cb3cf893741a6dcf2563c5d946a0235854f58b448
@@ -1,4 +1,5 @@
1
- name: "dobby actions"
1
+
2
+ name: "Dobby action"
2
3
  on:
3
4
  issue_comment:
4
5
  types: [created]
@@ -6,10 +7,20 @@ jobs:
6
7
  pr_commented:
7
8
  runs-on: ubuntu-20.04
8
9
  if: startsWith(github.event.comment.body, '/dobby')
9
-
10
+ env:
11
+ BUNDLE_WITHOUT: "development:test"
10
12
  steps:
11
- - name: 'bump version'
12
- uses: simplybusiness/dobby@v2.1.0
13
+ - name: Chekcout action
14
+ uses: actions/checkout@v2
15
+ with:
16
+ repository: 'simplybusiness/dobby'
17
+ ref: 'v3.0.0'
18
+ - name: Set up ruby
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ bundler-cache: true
22
+ - name: Bump version
23
+ uses: simplybusiness/dobby@v3.0.0
13
24
  env:
14
25
  DOBBY_APP_ID: ${{ secrets.DOBBY_APP_ID }}
15
26
  DOBBY_PRIVATE_KEY: ${{ secrets.DOBBY_PRIVATE_KEY }}
data/README.md CHANGED
@@ -2,72 +2,4 @@
2
2
 
3
3
  Provides standard shared rubocop configuration for Simply Business applications. No more copying `.rubocop.yml`, no more out-of-sync configuration files. Yay!
4
4
 
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'simplycop', git: 'git@github.com:simplybusiness/simplycop.git'
11
-
12
- ```
13
-
14
- Then install gems by executing:
15
-
16
- $ bundle install
17
-
18
- Put following lines at the beginning of your `rubocop.yml` file:
19
-
20
- ```yaml
21
- inherit_gem:
22
- simplycop: .simplycop.yml
23
-
24
- AllCops:
25
- Exclude:
26
- - 'vendor/**/*'
27
- ```
28
-
29
- * If you are implementing this in rails project and have rspec , you probably want the standard rails and rspec cops. you can include this by adding:
30
-
31
- ```yaml
32
- inherit_gem:
33
- simplycop:
34
- - .simplycop.yml
35
- - .simplycop_rails.yml
36
- - .simplycop_rspec.yml
37
- ```
38
-
39
- ## Usage
40
-
41
- Run Rubocop as you would usually do, i.e.
42
-
43
- $ bundle exec rubocop
44
-
45
- or from your continuous integration tool.
46
-
47
- ## Guidances
48
-
49
- * If you are implementing this in a non-rails project, you probably don't want or need the rails cops. In case they cause problems, you can exclude them using:
50
- ```yaml
51
- Rails:
52
- Enabled: false
53
- ```
54
- * When adding rubocop and simplycop to a legacy project, you might want to initially disable some of the rules.
55
-
56
- ## Security Cops
57
- - CheckForVulnerableCode
58
-
59
- This cop was built to identify possible Rails vulnerable code.
60
- Its purpose is to raise an awareness of the finding.
61
- When an offence was raised, please seek for help and guidance from application security team.
62
-
63
- IMPORTANT:
64
- This cop must be enabled at all times, if you need to disable it please check with AppSec team first.
65
-
66
- Example of vulnerable code:
67
-
68
- ```ruby
69
- class BooksController < ApplicationController
70
- caches_page :show
71
- end
72
- ```
73
- Vulnerability Details: https://nvd.nist.gov/vuln/detail/CVE-2020-8159
5
+ See [Full docs](docs/index.md)
data/catalog-info.yaml ADDED
@@ -0,0 +1,16 @@
1
+ apiVersion: backstage.io/v1alpha1
2
+ kind: Component
3
+ metadata:
4
+ name: simplycop
5
+ description: Simply Business Rubocop rules
6
+ annotations:
7
+ github.com/project-slug: "simplybusiness/simplycop"
8
+ backstage.io/source-location: url:https://github.com/simplybusiness/simplycop/
9
+ spec:
10
+ type: library
11
+ lifecycle: production
12
+ owner: silversmiths
13
+ dependsOn:
14
+ - "Component:rake"
15
+ - "Component:rspec"
16
+ - "Component:rubocop"
data/docs/index.md ADDED
@@ -0,0 +1,73 @@
1
+ # Simplycop
2
+
3
+ Provides standard shared rubocop configuration for Simply Business applications. No more copying `.rubocop.yml`, no more out-of-sync configuration files. Yay!
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'simplycop'
11
+
12
+ ```
13
+
14
+ Then install gems by executing:
15
+
16
+ $ bundle install
17
+
18
+ Put following lines at the beginning of your `rubocop.yml` file:
19
+
20
+ ```yaml
21
+ inherit_gem:
22
+ simplycop: .simplycop.yml
23
+
24
+ AllCops:
25
+ Exclude:
26
+ - 'vendor/**/*'
27
+ ```
28
+
29
+ * If you are implementing this in rails project and have rspec , you probably want the standard rails and rspec cops. you can include this by adding:
30
+
31
+ ```yaml
32
+ inherit_gem:
33
+ simplycop:
34
+ - .simplycop.yml
35
+ - .simplycop_rails.yml
36
+ - .simplycop_rspec.yml
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ Run Rubocop as you would usually do, i.e.
42
+
43
+ $ bundle exec rubocop
44
+
45
+ or from your continuous integration tool.
46
+
47
+ ## Guidances
48
+
49
+ * If you are implementing this in a non-rails project, you probably don't want or need the rails cops. In case they cause problems, you can exclude them using:
50
+ ```yaml
51
+ Rails:
52
+ Enabled: false
53
+ ```
54
+ * When adding rubocop and simplycop to a legacy project, you might want to initially disable some of the rules.
55
+
56
+ ## Security Cops
57
+ - CheckForVulnerableCode
58
+
59
+ This cop was built to identify possible Rails vulnerable code.
60
+ Its purpose is to raise an awareness of the finding.
61
+ When an offence was raised, please seek for help and guidance from application security team.
62
+
63
+ IMPORTANT:
64
+ This cop must be enabled at all times, if you need to disable it please check with AppSec team first.
65
+
66
+ Example of vulnerable code:
67
+
68
+ ```ruby
69
+ class BooksController < ApplicationController
70
+ caches_page :show
71
+ end
72
+ ```
73
+ Vulnerability Details: https://nvd.nist.gov/vuln/detail/CVE-2020-8159
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.7.1'
10
+ VERSION = '1.7.5'
11
11
  end
data/mkdocs.yml ADDED
@@ -0,0 +1,7 @@
1
+ site_name: 'Simplycop Docs'
2
+ docs_dir: 'doc'
3
+ nav:
4
+ - Home: index.md
5
+
6
+ plugins:
7
+ - techdocs-core
data/simplycop.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.add_dependency 'rubocop', '~> 1.12.1'
21
21
  spec.add_dependency 'rubocop-rails', '~> 2.9.0'
22
22
  spec.add_dependency 'rubocop-rspec', '~> 2.2.0'
23
- spec.add_development_dependency 'bundler'
23
+ spec.add_development_dependency 'bundler', '>= 2.2.15'
24
24
  spec.add_development_dependency 'rake', '>= 12.3.3'
25
25
  spec.add_development_dependency 'rspec', '~> 3.10'
26
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplycop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-28 00:00:00.000000000 Z
11
+ date: 2021-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: 2.2.15
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
68
+ version: 2.2.15
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -123,6 +123,8 @@ files:
123
123
  - Rakefile
124
124
  - bin/console
125
125
  - bin/setup
126
+ - catalog-info.yaml
127
+ - docs/index.md
126
128
  - lib/simplycop.rb
127
129
  - lib/simplycop/custom_cops/constantize.rb
128
130
  - lib/simplycop/custom_cops/define_method.rb
@@ -134,6 +136,7 @@ files:
134
136
  - lib/simplycop/security/csrf_token_validation.rb
135
137
  - lib/simplycop/security/reject_all_requests_local.rb
136
138
  - lib/simplycop/version.rb
139
+ - mkdocs.yml
137
140
  - simplycop.gemspec
138
141
  - vuln_db.json
139
142
  homepage: https://github.com/simplybusiness/simplycop
@@ -155,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
158
  - !ruby/object:Gem::Version
156
159
  version: '0'
157
160
  requirements: []
158
- rubygems_version: 3.2.15
161
+ rubygems_version: 3.2.22
159
162
  signing_key:
160
163
  specification_version: 4
161
164
  summary: Provides a single point of reference for common rubocop rules.