guard-rubycritic 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/lib/guard/rubycritic.rb +1 -1
- data/lib/guard/rubycritic/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5237c9951bdafbeaeae849e7542530189c9541fb
|
4
|
+
data.tar.gz: 15b744a8ac5387057dc8e07f792f9939cf3ba0a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2099e1c5d1273c558725c68936afdf91a791a28927af9508d10976a96f72768ac669b63eba8cfce090e0ec1db6416e8004c28d1b31a30fc9dbdf8dd86a3cbcdd
|
7
|
+
data.tar.gz: e05f1fc677eb65b03ec44676193a34d0486a698c9d054786d5e5180b8f33135a135f360480a6cc78fd35ff5931e936401fdc0c44cb5fa5389e9d6491c60ba078
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ Guard::RubyCritic
|
|
5
5
|
[![Code Climate](http://img.shields.io/codeclimate/github/whitesmith/guard-rubycritic.svg)](https://codeclimate.com/github/whitesmith/guard-rubycritic)
|
6
6
|
|
7
7
|
<img src="http://i.imgur.com/66HACCD.png" alt="RubyCritic Icon" align="right" />
|
8
|
-
Guard::RubyCritic is a tool that
|
8
|
+
Guard::RubyCritic is a tool that uses [RubyCritic](https://github.com/whitesmith/rubycritic) to detect and report smells in Ruby code in real-time.
|
9
9
|
|
10
10
|
Installation
|
11
11
|
------------
|
@@ -38,3 +38,8 @@ $ guard
|
|
38
38
|
```
|
39
39
|
|
40
40
|
Each time you save a file, that file will be analysed and its report will be available at `YOUR_PROJECT_ROOT/tmp/rubycritic/current_file.html`.
|
41
|
+
|
42
|
+
Improving Guard::RubyCritic
|
43
|
+
---------------------------
|
44
|
+
|
45
|
+
See Guard::RubyCritic's [contributing guidelines](CONTRIBUTING.md) about how to proceed.
|
data/lib/guard/rubycritic.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-rubycritic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guilherme Simoes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '1.
|
33
|
+
version: '1.2'
|
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
|
-
version: '1.
|
40
|
+
version: '1.2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,10 +130,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
130
|
version: '0'
|
131
131
|
requirements: []
|
132
132
|
rubyforge_project:
|
133
|
-
rubygems_version: 2.
|
133
|
+
rubygems_version: 2.4.1
|
134
134
|
signing_key:
|
135
135
|
specification_version: 4
|
136
136
|
summary: Listens to modifications and detects smells in Ruby files
|
137
137
|
test_files:
|
138
138
|
- test/lib/guard/rubycritic/version_test.rb
|
139
139
|
- test/test_helper.rb
|
140
|
+
has_rdoc:
|