quality 0.0.1 → 0.0.2
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 +45 -0
- data/lib/quality/version.rb +1 -1
- data/quality.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56a0fd5ded805c7bfe6c2c7b566954af754189bc
|
4
|
+
data.tar.gz: 491098094a739026ff86aa49d9c79bab2530b804
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83e375a3cd495c3b3848641e30b245c3973ed7f81fb794160a15dbaafd363ae06cf0fea17e08697dc99db108e4e148ca8d4a3d30d21ec8e5aab98ee260444f25
|
7
|
+
data.tar.gz: 690fa8c22776cea062e661e046b08e29fe5daf2a781b5169356d9e99df2815402fdb7783957485da75ff6ae0e2d2f8988a27c5270ef9850ac4718222518186f7
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# Quality -- code quality ratchet for Ruby
|
2
|
+
|
3
|
+
##Overview
|
4
|
+
|
5
|
+
Quality is a tool that runs quality checks on Ruby code using cane,
|
6
|
+
reek, flog and flay, and makes sure your numbers don't get any worse
|
7
|
+
over time.
|
8
|
+
|
9
|
+
```bash
|
10
|
+
$ gem install quality
|
11
|
+
```
|
12
|
+
|
13
|
+
and add it to your Rakefile like this:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'quality/rake/task'
|
17
|
+
|
18
|
+
Quality::Rake::Task.new
|
19
|
+
```
|
20
|
+
|
21
|
+
Then run:
|
22
|
+
|
23
|
+
```bash
|
24
|
+
$ rake quality
|
25
|
+
```
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
* Fork the repo
|
30
|
+
* Create a feature branch
|
31
|
+
* Submit a pull request
|
32
|
+
|
33
|
+
### Dependencies
|
34
|
+
|
35
|
+
Quality makes use of the following other gems, which do the actual checking:
|
36
|
+
|
37
|
+
* reek
|
38
|
+
* cane
|
39
|
+
* flog
|
40
|
+
* flay
|
41
|
+
|
42
|
+
### Learn More
|
43
|
+
|
44
|
+
* Browse the code or install the latest development version from [https://github.com/troessner/reek/tree](https://github.com/troessner/reek/tree)
|
45
|
+
|
data/lib/quality/version.rb
CHANGED
data/quality.gemspec
CHANGED
@@ -22,6 +22,7 @@ your numbers don't get any worse over time.
|
|
22
22
|
"quality.gemspec" ] & `git ls-files -z`.split("\0")
|
23
23
|
#s.rdoc_options = ["--main", "README.md"]
|
24
24
|
s.require_paths = ["lib"]
|
25
|
+
s.homepage = %q{http://github.com/apiology/quality}
|
25
26
|
#s.rubyforge_project = %q{quality}
|
26
27
|
s.rubygems_version = %q{1.3.6}
|
27
28
|
s.summary = %q{Code quality tools for Ruby}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quality
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vince Broz
|
@@ -103,11 +103,12 @@ extensions: []
|
|
103
103
|
extra_rdoc_files: []
|
104
104
|
files:
|
105
105
|
- License.txt
|
106
|
+
- README.md
|
106
107
|
- Rakefile
|
107
108
|
- lib/quality/rake/task.rb
|
108
109
|
- lib/quality/version.rb
|
109
110
|
- quality.gemspec
|
110
|
-
homepage:
|
111
|
+
homepage: http://github.com/apiology/quality
|
111
112
|
licenses: []
|
112
113
|
metadata: {}
|
113
114
|
post_install_message:
|