gitlab-styles 2.3.0 → 2.3.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 061e2ca701b807ac4f7d244aa3c7fc8db93e9fb5300bbc40f24b8a3d7e1942ca
|
4
|
+
data.tar.gz: 974052adc2dd56ad20bf0643d64b1515b7479c3a0c8c3c50a1e998afaa604534
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5bb29a9222469fc0f37164ee33da8782eee3c2e4410723bca35ae972fcf9783116fcd748be1e280877171ff452fbfd061715d91b4570813b4aaeb9216d85074
|
7
|
+
data.tar.gz: 55ef6efc013e31bc41ed34f51d3b9c222c5fca8b4663fb4cb62ad6a9eb039c0a7892fb26f8dc8ab9f11c20a3efd689fbadf1f91543525853451a815da82cf963
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
## Developer Certificate of Origin + License
|
2
|
+
|
3
|
+
By contributing to GitLab B.V., You accept and agree to the following terms and
|
4
|
+
conditions for Your present and future Contributions submitted to GitLab B.V.
|
5
|
+
Except for the license granted herein to GitLab B.V. and recipients of software
|
6
|
+
distributed by GitLab B.V., You reserve all right, title, and interest in and to
|
7
|
+
Your Contributions. All Contributions are subject to the following DCO + License
|
8
|
+
terms.
|
9
|
+
|
10
|
+
[DCO + License](https://gitlab.com/gitlab-org/dco/blob/master/README.md)
|
11
|
+
|
12
|
+
_This notice should stay as the first item in the CONTRIBUTING.md file._
|
data/{LICENSE.txt → LICENSE.md}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
|
1
|
+
Copyright (c) 2011-2018 GitLab B.V.
|
2
2
|
|
3
|
-
|
3
|
+
With regard to the GitLab Software:
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -19,3 +19,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
21
|
THE SOFTWARE.
|
22
|
+
|
23
|
+
For all third party components incorporated into the GitLab Software, those
|
24
|
+
components are licensed under the original license provided by the owner of the
|
25
|
+
applicable component.
|
@@ -21,7 +21,7 @@ module Gitlab
|
|
21
21
|
# after(:each) do
|
22
22
|
# undo_something
|
23
23
|
# end
|
24
|
-
class SingleLineHook < RuboCop::Cop::Cop
|
24
|
+
class SingleLineHook < RuboCop::Cop::RSpec::Cop
|
25
25
|
MESSAGE = "Don't use single-line hook blocks.".freeze
|
26
26
|
|
27
27
|
def_node_search :rspec_hook?, <<~PATTERN
|
@@ -15,7 +15,7 @@ module Gitlab
|
|
15
15
|
# # good
|
16
16
|
# describe MyClass, :js do
|
17
17
|
# end
|
18
|
-
class VerboseIncludeMetadata < RuboCop::Cop::Cop
|
18
|
+
class VerboseIncludeMetadata < RuboCop::Cop::RSpec::Cop
|
19
19
|
MSG = 'Use `%s` instead of `%s`.'.freeze
|
20
20
|
|
21
21
|
SELECTORS = %i[describe context feature example_group it specify example scenario its].freeze
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-styles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitLab
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -107,8 +107,9 @@ files:
|
|
107
107
|
- ".rubocop.yml"
|
108
108
|
- ".rubocop_todo.yml"
|
109
109
|
- CODE_OF_CONDUCT.md
|
110
|
+
- CONTRIBUTING.md
|
110
111
|
- Gemfile
|
111
|
-
- LICENSE.
|
112
|
+
- LICENSE.md
|
112
113
|
- README.md
|
113
114
|
- Rakefile
|
114
115
|
- bin/console
|
@@ -162,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
163
|
version: '0'
|
163
164
|
requirements: []
|
164
165
|
rubyforge_project:
|
165
|
-
rubygems_version: 2.7.
|
166
|
+
rubygems_version: 2.7.4
|
166
167
|
signing_key:
|
167
168
|
specification_version: 4
|
168
169
|
summary: GitLab style guides and shared style configs.
|