revealing 1.7.0 → 1.7.1
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 +4 -4
- data/.rubocop.yml +17 -2
- data/.ruby-version +1 -1
- data/.travis.yml +2 -3
- data/README.markdown +1 -0
- data/lib/revealing/tasks/reveal.js.rake +1 -1
- data/lib/revealing/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b180ab4da6a2867654ca51da49884705aa5b079ef79a262541bb0c183025134
|
4
|
+
data.tar.gz: 9056ac5328a69df0094da47bed70835fc0e6acf5a16638e4528fa845f73a1902
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5543fd86c1184fe32409bf3ad00c9f21e6f0fee19aa7c591dd150ad793c69574c9dbacd865d75a387094c4689c2d98864ea5cf270f0e24d69e5fad076bff5cee
|
7
|
+
data.tar.gz: daf22681dc8e97435648e39c1d13eeedb3e7063439cbf9a6a07c066ca9155aff4aa115984f8d0e6f4d9e034ab6cc1957e7dd198c2718c4aafbb5a59ec5e1946b
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion: 2.
|
2
|
+
TargetRubyVersion: 2.7
|
3
3
|
Include:
|
4
4
|
- '**/Gemfile'
|
5
5
|
- '**/Rakefile'
|
@@ -18,5 +18,20 @@ Metrics/BlockLength:
|
|
18
18
|
Exclude:
|
19
19
|
- spec/**/*
|
20
20
|
|
21
|
-
|
21
|
+
Layout/LineLength:
|
22
22
|
Max: 180
|
23
|
+
|
24
|
+
Layout/SpaceAroundMethodCallOperator: { Enabled: true }
|
25
|
+
Lint/RaiseException: { Enabled: true }
|
26
|
+
Lint/StructNewOverride: { Enabled: true }
|
27
|
+
Style/ExponentialNotation: { Enabled: true }
|
28
|
+
Style/HashEachMethods: { Enabled: true }
|
29
|
+
Style/HashTransformKeys: { Enabled: true }
|
30
|
+
Style/HashTransformValues: { Enabled: true }
|
31
|
+
Layout/EmptyLinesAroundAttributeAccessor: { Enabled: true }
|
32
|
+
Lint/DeprecatedOpenSSLConstant: { Enabled: true }
|
33
|
+
Lint/MixedRegexpCaptureTypes: { Enabled: true }
|
34
|
+
Style/RedundantFetchBlock: { Enabled: true }
|
35
|
+
Style/RedundantRegexpCharacterClass: { Enabled: true }
|
36
|
+
Style/RedundantRegexpEscape: { Enabled: true }
|
37
|
+
Style/SlicingWithRange: { Enabled: true }
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
2.7.1
|
data/.travis.yml
CHANGED
data/README.markdown
CHANGED
data/lib/revealing/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: revealing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steffen Uhlig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -283,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
283
283
|
- !ruby/object:Gem::Version
|
284
284
|
version: '0'
|
285
285
|
requirements: []
|
286
|
-
rubygems_version: 3.
|
286
|
+
rubygems_version: 3.1.4
|
287
287
|
signing_key:
|
288
288
|
specification_version: 4
|
289
289
|
summary: Rake tasks to for reveal.js presentations
|