wetransfer_style 0.6.0 → 0.6.2
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 +5 -5
- data/README.md +19 -3
- data/ruby/default.yml +3 -1
- metadata +11 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8a0b01768c1b26d592fcad09bbc4534ecd5b38160c9c84db65dc067ae9d76bdf
|
|
4
|
+
data.tar.gz: ded4ca4064b5ef74666f860d34686e0cb07807954ea42054d3c6ef2bfd4233be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9779915ebff592e0a4f86267fc4b761f9f05a2d287e1170d3b20871987a9da7ba8f8f82f6aac9004a6a6dc2ea14601de05119bbb3ffa9a8d4fc7adff91fe859
|
|
7
|
+
data.tar.gz: 5186effc1dfa029390cad94b07fd56b3971ba775dff65c02f82927b7a7fa302c98b24748dfaceff7d7fc846b1b61e091f06e7202700f9d9f96e955b849a218f4
|
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# wetransfer_style
|
|
2
|
+
|
|
2
3
|
At WeTransfer we code in style. This is our style.
|
|
3
4
|
|
|
4
5
|
## Using our style
|
|
@@ -9,19 +10,34 @@ If you want to code in our style, here's what you have to do:
|
|
|
9
10
|
|
|
10
11
|
Add `wetransfer_style` to your `Gemfile`:
|
|
11
12
|
|
|
12
|
-
```
|
|
13
|
+
```ruby
|
|
13
14
|
gem 'wetransfer_style'
|
|
14
15
|
```
|
|
15
16
|
|
|
16
17
|
or to your `*.gemspec`:
|
|
17
18
|
|
|
18
|
-
```
|
|
19
|
+
```ruby
|
|
19
20
|
spec.add_development_dependency 'wetransfer_style'
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
Add a `.rubocop.yml` in the root of you repository, having:
|
|
23
24
|
|
|
24
|
-
```
|
|
25
|
+
```yaml
|
|
25
26
|
inherit_gem:
|
|
26
27
|
wetransfer_style: ruby/default.yml
|
|
27
28
|
```
|
|
29
|
+
|
|
30
|
+
## Contributing
|
|
31
|
+
|
|
32
|
+
Thanks for taking the time to bring our style to the next level. If you aren't a
|
|
33
|
+
contributor, please follow step 1 through 4. If you are a contributor to the
|
|
34
|
+
repository, please follow all steps.
|
|
35
|
+
|
|
36
|
+
1. (Fork and) Clone this repository
|
|
37
|
+
2. Make your changes
|
|
38
|
+
3. Bump the version number
|
|
39
|
+
4. Create a Pull Request
|
|
40
|
+
5. Merge the PR on enough approvals
|
|
41
|
+
6. Pull latest changes on your system
|
|
42
|
+
7. Build the gem with `gem build wetransfer_style.gemspec`
|
|
43
|
+
8. Push your changes with `gem push wetransfer_style-x.y.z.gem`
|
data/ruby/default.yml
CHANGED
|
@@ -367,7 +367,9 @@ Style/MethodCallWithoutArgsParentheses:
|
|
|
367
367
|
Enabled: True
|
|
368
368
|
Style/MethodDefParentheses:
|
|
369
369
|
Enabled: True
|
|
370
|
-
Style/
|
|
370
|
+
Style/MethodMissingSuper:
|
|
371
|
+
Enabled: True
|
|
372
|
+
Style/MissingRespondToMissing:
|
|
371
373
|
Enabled: True
|
|
372
374
|
Style/MinMax:
|
|
373
375
|
Enabled: True
|
metadata
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wetransfer_style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrei Horak
|
|
8
|
+
- Arno
|
|
9
|
+
- David Bosveld
|
|
10
|
+
- Dennis van der Vliet
|
|
11
|
+
- GitHub
|
|
12
|
+
- Julik Tarkhanov
|
|
13
|
+
- Lorenzo Grandi
|
|
14
|
+
- grdw
|
|
8
15
|
autorequire:
|
|
9
16
|
bindir: bin
|
|
10
17
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
18
|
+
date: 2018-12-19 00:00:00.000000000 Z
|
|
12
19
|
dependencies:
|
|
13
20
|
- !ruby/object:Gem::Dependency
|
|
14
21
|
name: rubocop
|
|
@@ -25,7 +32,7 @@ dependencies:
|
|
|
25
32
|
- !ruby/object:Gem::Version
|
|
26
33
|
version: 0.52.1
|
|
27
34
|
description: At WeTransfer we code in style. This is our style.
|
|
28
|
-
email:
|
|
35
|
+
email: developers@wetransfer.com
|
|
29
36
|
executables: []
|
|
30
37
|
extensions: []
|
|
31
38
|
extra_rdoc_files: []
|
|
@@ -53,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
60
|
version: '0'
|
|
54
61
|
requirements: []
|
|
55
62
|
rubyforge_project:
|
|
56
|
-
rubygems_version: 2.
|
|
63
|
+
rubygems_version: 2.7.8
|
|
57
64
|
signing_key:
|
|
58
65
|
specification_version: 4
|
|
59
66
|
summary: At WeTransfer we code in style. This is our style.
|