bookingsync-stylecheck 0.0.3 → 0.0.4
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/README.md +13 -1
- data/config/rubocop.yml +1 -1
- data/lib/bookingsync/tasks/rubocop.rake +12 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea9831c75687676f1abbd6adc7eff3777789d811
|
4
|
+
data.tar.gz: ad16740e84dc1aca0d6d9ed4ce9278c24f9c5c83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54c2563177c6f239a2040eca366298ca0d98b96f7724cdeb2d00a04ffbddbce4fdb4e2ea3a70ac8373a01885068a058d214c79d3c5be9c03fd2cb73d3ad3d66b
|
7
|
+
data.tar.gz: f8cc034d2cefe02c83d05f14831cf46d9ae4e45fb8a143478f3a0e21f2c86822fab9886cd0c3a7c77749b90078b8eadea2069385580c4926ee59019d61e82783
|
data/README.md
CHANGED
@@ -6,6 +6,18 @@ This gem should streamline using of rubocop and potentially other automated styl
|
|
6
6
|
|
7
7
|
Just add to gemfile and new rake task should be available
|
8
8
|
|
9
|
-
|
9
|
+
# Tasks
|
10
|
+
|
11
|
+
## Default
|
12
|
+
|
13
|
+
`bundle exec rake style`
|
10
14
|
|
11
15
|
This for now just prepares a rubocop config and runs the rubocop check
|
16
|
+
|
17
|
+
## Custom
|
18
|
+
|
19
|
+
The first argument will be concatenated to the commands that Rubocop receives.
|
20
|
+
The second argument, when set to true, makes the task always return with success.
|
21
|
+
For example:
|
22
|
+
|
23
|
+
`bundle exec rake style:rubocop:custom[--auto-correct app/controllers/application_controller.rb, true]`
|
data/config/rubocop.yml
CHANGED
@@ -21,6 +21,18 @@ namespace :style do
|
|
21
21
|
abort 'Fix code style errors' unless ok
|
22
22
|
end
|
23
23
|
end
|
24
|
+
|
25
|
+
desc "Run RuboCop using the BookingSync config and concatenate custom commands"
|
26
|
+
task :custom, [:command_string, :no_fail] do |t, args|
|
27
|
+
args[:no_fail] ||= false
|
28
|
+
|
29
|
+
options = ['--rails', '--fail-level', 'refactor']
|
30
|
+
options += ['-c', BookingSync::Stylecheck::RubocopHelpers.config]
|
31
|
+
options += [args[:command_string]]
|
32
|
+
sh "bundle exec rubocop #{options.join(' ')}" do |ok, res|
|
33
|
+
abort 'Fix code style errors' if !args[:no_fail] && !ok
|
34
|
+
end
|
35
|
+
end
|
24
36
|
end
|
25
37
|
end
|
26
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bookingsync-stylecheck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Marciniak
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
name: railties
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '4'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '4'
|
41
41
|
description: Wraps rubocop for simple and consisten experience
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
version: '0'
|
72
72
|
requirements: []
|
73
73
|
rubyforge_project:
|
74
|
-
rubygems_version: 2.
|
74
|
+
rubygems_version: 2.5.1
|
75
75
|
signing_key:
|
76
76
|
specification_version: 4
|
77
77
|
summary: Automatic style check for bookingsync projects
|