bully 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bully'
4
+ puts Bully.version_string
@@ -0,0 +1,7 @@
1
+ require 'bully/version'
2
+
3
+ module Bully
4
+ def self.version_string
5
+ "Bully version #{Bully::VERSION}"
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Bully
2
+ VERSION = '0.0.1'
3
+ end
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.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: