run_test 0.1.0
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/.gitignore +18 -0
- data/README.md +4 -0
- data/lib/run_test.rb +3 -0
- data/run_test.gemspec +21 -0
- metadata +49 -0
data/.gitignore
ADDED
data/README.md
ADDED
data/lib/run_test.rb
ADDED
data/run_test.gemspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Gem::Specification.new do |gem|
|
|
2
|
+
# Info
|
|
3
|
+
gem.name = "run_test"
|
|
4
|
+
gem.version = "0.1.0"
|
|
5
|
+
gem.summary = "A simple but smart test runner for Ruby"
|
|
6
|
+
gem.description = <<-eos
|
|
7
|
+
`run_test` is a simple but smart test runner for Ruby.
|
|
8
|
+
|
|
9
|
+
It helps you find your tests given almost any input.
|
|
10
|
+
eos
|
|
11
|
+
gem.authors = ["Adam Lindberg"]
|
|
12
|
+
gem.email = "hello@alind.io"
|
|
13
|
+
gem.homepage = "https://github.com/eproxus/run_test"
|
|
14
|
+
|
|
15
|
+
gem.files = `git ls-files`.split("\n")
|
|
16
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map do |f|
|
|
17
|
+
File.basename(f)
|
|
18
|
+
end
|
|
19
|
+
gem.require_paths = ["lib"]
|
|
20
|
+
gem.required_ruby_version = ">= 1.9"
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: run_test
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Adam Lindberg
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-04-25 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: ! " `run_test` is a simple but smart test runner for Ruby.\n\n It
|
|
15
|
+
helps you find your tests given almost any input. \n"
|
|
16
|
+
email: hello@alind.io
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- README.md
|
|
23
|
+
- lib/run_test.rb
|
|
24
|
+
- run_test.gemspec
|
|
25
|
+
homepage: https://github.com/eproxus/run_test
|
|
26
|
+
licenses: []
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
none: false
|
|
33
|
+
requirements:
|
|
34
|
+
- - ! '>='
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '1.9'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
|
+
requirements:
|
|
40
|
+
- - ! '>='
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubyforge_project:
|
|
45
|
+
rubygems_version: 1.8.25
|
|
46
|
+
signing_key:
|
|
47
|
+
specification_version: 3
|
|
48
|
+
summary: A simple but smart test runner for Ruby
|
|
49
|
+
test_files: []
|