fashion_police 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +5 -0
- data/README.md +17 -0
- data/fashion_police.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97052d8656aa8cb993012675bf00b7376d180596
|
4
|
+
data.tar.gz: b4036dd644dbeba20736a2aa0e1d2316b81616db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 167ac5c7701602c5bbbe44b95d881a6e15599ff4b3085898905c4594c0acce92514d29282552e98fdb2e015bdfcf7604614a0a29175d29c585e0ef8f5053ec79
|
7
|
+
data.tar.gz: 8ba9ad9ce9931065893b46731d1001a8a8385a03e8153827c82a30258d75221524e39995dfc64f76aed7b0569428d38a576a1f03cd6c19c8b11eb20a18418b2e
|
data/.rubocop.yml
CHANGED
@@ -121,6 +121,10 @@ RSpec/MultipleExpectations:
|
|
121
121
|
RSpec/VerifiedDoubles:
|
122
122
|
Enabled: false
|
123
123
|
|
124
|
+
# Limit example length (default is 5)
|
125
|
+
RSpec/ExampleLength:
|
126
|
+
Max: 10
|
127
|
+
|
124
128
|
# Allow template token "%{foo}" since they are used in translation keys.
|
125
129
|
Style/FormatStringToken:
|
126
130
|
EnforcedStyle: template
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -11,6 +11,8 @@ Follow the [Ruby Style Guide](https://github.com/rubocop-hq/ruby-style-guide)
|
|
11
11
|
with our custom
|
12
12
|
[`.rubocop.yml`](https://github.com/KissKissBankBank/fashion_police/blob/master/.rubocop.yml).
|
13
13
|
|
14
|
+
### Gem
|
15
|
+
|
14
16
|
To use it in your project, add to your `Gemfile`:
|
15
17
|
|
16
18
|
```rb
|
@@ -26,6 +28,21 @@ inherit_gem:
|
|
26
28
|
- .rubocop.yml
|
27
29
|
```
|
28
30
|
|
31
|
+
### Release
|
32
|
+
|
33
|
+
Update the version in `fashion_police.gemspec`, update the `CHANGELOG` and
|
34
|
+
commit the changes.
|
35
|
+
|
36
|
+
Finally:
|
37
|
+
|
38
|
+
```sh
|
39
|
+
rake release
|
40
|
+
````
|
41
|
+
|
42
|
+
If you don't have the correct rights on rubygems.org, create an account and ask
|
43
|
+
one of the owners to add you with `gem owner fashion_police --add <email>`.
|
44
|
+
|
45
|
+
|
29
46
|
## JavaScript
|
30
47
|
|
31
48
|
Follow Airbnb's [JavaScript](https://github.com/airbnb/javascript) guide.
|
data/fashion_police.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fashion_police
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sunny Ripert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|