bully 0.0.0 → 0.0.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.
- data/README.md +13 -0
- data/bin/bully +4 -0
- data/lib/bully.rb +7 -0
- data/lib/bully/version.rb +3 -0
- metadata +8 -3
data/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
bully
|
2
|
+
====================
|
3
|
+
|
4
|
+
Bully is intended to be the spiritual successor to Heckle. Like Heckle, it will be a mutation tester, which changes your code and then runs your tests. If the code can change but the tests still pass, then your tests do not properly cover the code.
|
5
|
+
|
6
|
+
The reason for this gem is that Heckle relies on ParseTree, which only works with Ruby 1.8. Bully is intended to be something like Heckle which works in Ruby 1.9, using some other parsing library like Sourcify.
|
7
|
+
|
8
|
+
Usage
|
9
|
+
-----
|
10
|
+
|
11
|
+
It doesn't work at all yet.
|
12
|
+
|
13
|
+
Copyright © 2012 Jonathon Jones (jonathon_d_jones@yahoo.com), released under the MIT license
|
data/bin/bully
ADDED
data/lib/bully.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bully
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -15,10 +15,15 @@ description: Spiritual successor to heckle, this ensures that your tests fully c
|
|
15
15
|
your code.
|
16
16
|
email:
|
17
17
|
- jonathon_d_jones@yahoo.com
|
18
|
-
executables:
|
18
|
+
executables:
|
19
|
+
- bully
|
19
20
|
extensions: []
|
20
21
|
extra_rdoc_files: []
|
21
|
-
files:
|
22
|
+
files:
|
23
|
+
- lib/bully/version.rb
|
24
|
+
- lib/bully.rb
|
25
|
+
- bin/bully
|
26
|
+
- README.md
|
22
27
|
homepage: http://github.com/jonathonjones/bully
|
23
28
|
licenses: []
|
24
29
|
post_install_message:
|