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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 52aa7ffa8c6475dae4c639a7e0e8e5743e5b7dd9
4
- data.tar.gz: f20ce3045c25fa37fa1d7959a6a860b04888e0e1
3
+ metadata.gz: 5237c9951bdafbeaeae849e7542530189c9541fb
4
+ data.tar.gz: 15b744a8ac5387057dc8e07f792f9939cf3ba0a5
5
5
  SHA512:
6
- metadata.gz: 56345177e5011598baf3219452f5450a6ac9e3f5b00f1c8a3f9020bd2da00e5d16018c3f1f5b4c50e11b6a0cb7be7338eec42ecec68b697e485a8e8c54581029
7
- data.tar.gz: a7b9ca86e3020f724a016dccca19e576362b2d9a7dca2488a9f9a65badf2eaaffff01a0d1701fc5e229bf5eb896634c8cb74b5b78488d3271488767e64e7fffa
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 detects and reports smells in Ruby code in real-time.
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.
@@ -12,7 +12,7 @@ module Guard
12
12
  # @return [Object] the task result
13
13
  #
14
14
  def start
15
- @rubycritic = ::Rubycritic::Orchestrator.new
15
+ @rubycritic = ::Rubycritic.create
16
16
  UI.info "Guard::Rubycritic is critiquing"
17
17
  end
18
18
 
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module RubycriticVersion
3
- VERSION = "1.0.0"
3
+ VERSION = "1.2.0"
4
4
  end
5
5
  end
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.0.0
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: 2014-07-13 00:00:00.000000000 Z
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.0'
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.0'
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.2.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: