rubyunit 0.0.2 → 0.0.3
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 +13 -1
- data/lib/RubyUnit/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 403e57cf10f8f4bbf592770389848ae25a89a4d6
|
4
|
+
data.tar.gz: fe905733406b1fefb615d47b31d3d6d6f20e05c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99ac030493e72e697e2269ff7ed84656294757c9c68d4199cf92c028c0689c63681f1187eb5f519e8cbb27236234e403fbc0f8329569067cf159ff8ad1da0b48
|
7
|
+
data.tar.gz: 99a1372c4c0afabcd273eda656d511b2e29a60ef9e4c5c6ce1257558ec1039aed8140dc15ee2bfb6c663d68bda02d62ff1a5ab2c2c938d99f6f0cf0c38683ab1
|
data/README.md
CHANGED
@@ -1,10 +1,22 @@
|
|
1
1
|
RubyUnit
|
2
2
|
========
|
3
3
|
|
4
|
+
[](http://badge.fury.io/rb/rubyunit)
|
5
|
+
|
6
|
+
|
4
7
|
<!-- This isn't up yet...
|
5
8
|
* http://rubyunit.github.io/ -->
|
6
9
|
* https://github.com/RubyUnit/RubyUnit
|
7
10
|
|
8
11
|
## Description
|
9
12
|
|
10
|
-
A simple Unit Test framework for Ruby
|
13
|
+
A simple Unit Test framework for Ruby.
|
14
|
+
- Currently tested with Ruby 2.1.1
|
15
|
+
|
16
|
+
## Install
|
17
|
+
|
18
|
+
```bash
|
19
|
+
$ gem install rubyunit
|
20
|
+
```
|
21
|
+
|
22
|
+
## License LGPL
|
data/lib/RubyUnit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubyunit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Clower
|
@@ -38,9 +38,9 @@ require_paths:
|
|
38
38
|
- lib
|
39
39
|
required_ruby_version: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- - "
|
41
|
+
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '0'
|
43
|
+
version: '2.0'
|
44
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - ">="
|