analtester 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/analtester.gemspec +2 -2
- data/lib/analtester.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddd965e6a28e857d176de98d5a5a0a3d85c2c709
|
4
|
+
data.tar.gz: 5c654010b29580a3ac5114e52eb59ed3e3d188d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3895a21c5df843cbe2bd464b764bcf610ab2beeab99fdcb974065f17552975545892627d7cc8a55d0ae893a9a463dfbf194544bb7a8c92b92b25bcbde4cf4451
|
7
|
+
data.tar.gz: 8acd48d1fe2a6f1d1a7a70753ab3231e7582e6b659bcde3ab7932e2b532e487d72ce07aef8048674eedabd5d3df9171eae8b727c667d02701946212c77caca5d
|
data/README.md
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
A silly gem for generating minitest files. If you have RSpec, it can use that,
|
4
4
|
too.
|
5
5
|
|
6
|
+
analtester will look through your ./lib directory and create corresponding tests in test/.
|
7
|
+
They will all fail, until you write them. Use it to quickly populate an untested
|
8
|
+
library with tests. Just run `analtester` from the command-line in your project's root.
|
9
|
+
|
10
|
+
Requires minitest, unless it doesn't.
|
11
|
+
|
6
12
|
## Installation
|
7
13
|
|
8
14
|
$ gem install analtester
|
data/analtester.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = "analtester"
|
8
8
|
gem.version = Analtester::VERSION
|
9
9
|
gem.authors = ["JJ Buckley"]
|
10
|
-
gem.email = ["jj@
|
10
|
+
gem.email = ["jj@bjjb.org"]
|
11
11
|
gem.description = %q{Makes some failing tests for you}
|
12
12
|
gem.summary = <<DESCRIPTION
|
13
13
|
analtester will look through your ./lib directory and create corresponding tests in test/.
|
@@ -15,7 +15,7 @@ They will all fail, until you write them. Use it to quickly populate an untested
|
|
15
15
|
library with tests. Just run `analtester` from the command-line in your project's root.
|
16
16
|
Requires minitest.
|
17
17
|
DESCRIPTION
|
18
|
-
gem.homepage = "http://github.com/
|
18
|
+
gem.homepage = "http://github.com/bjjb/analtester"
|
19
19
|
|
20
20
|
gem.files = `git ls-files`.split($/)
|
21
21
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/analtester.rb
CHANGED
@@ -8,7 +8,7 @@ require 'erb'
|
|
8
8
|
# creating corresponding test files for them. It also makes sure there's a
|
9
9
|
# test helper file (like test/), and a make file (like Rakefile).
|
10
10
|
class Analtester < Pathname
|
11
|
-
VERSION = "0.0.
|
11
|
+
VERSION = "0.0.3"
|
12
12
|
|
13
13
|
include FileUtils
|
14
14
|
include Comparable
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: analtester
|
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
|
- JJ Buckley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: '0'
|
41
41
|
description: Makes some failing tests for you
|
42
42
|
email:
|
43
|
-
- jj@
|
43
|
+
- jj@bjjb.org
|
44
44
|
executables:
|
45
45
|
- analtester
|
46
46
|
extensions: []
|
@@ -66,7 +66,7 @@ files:
|
|
66
66
|
- templates/rspec/spec_helper.rb
|
67
67
|
- test/analtester_test.rb
|
68
68
|
- test/test_helper.rb
|
69
|
-
homepage: http://github.com/
|
69
|
+
homepage: http://github.com/bjjb/analtester
|
70
70
|
licenses: []
|
71
71
|
metadata: {}
|
72
72
|
post_install_message:
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
87
|
rubyforge_project:
|
88
|
-
rubygems_version: 2.2.
|
88
|
+
rubygems_version: 2.2.2
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: analtester will look through your ./lib directory and create corresponding
|