specrun 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.
Files changed (5) hide show
  1. data/bin/specrun +6 -0
  2. data/config.yaml +3 -0
  3. data/lib/specrun.rb +1 -1
  4. metadata +23 -13
  5. data/specrun +0 -6
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
3
+ require 'specrun'
4
+ sr = SpecRun.new
5
+ sr.build
6
+
@@ -0,0 +1,3 @@
1
+ spec_dir: spec
2
+ output_dir: spec_results
3
+ spec_ext: _spec.rb
@@ -55,7 +55,7 @@ class SpecRun
55
55
 
56
56
  Dir.chdir('..')
57
57
 
58
- afile.puts `spec -f h #{path}`
58
+ afile.puts `spec -f h "#{path}"`
59
59
  afile.close
60
60
 
61
61
  Dir.chdir(@result_dir)
metadata CHANGED
@@ -1,32 +1,42 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specrun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
- - Chris Bailey
7
+ - Christoper Sean Bailey
8
8
  autorequire: specrun
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-13 00:00:00 -05:00
12
+ date: 2008-12-14 00:00:00 -05:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
16
25
  description:
17
- email: christopher.sean.bailey@nospam@gmail.com
18
- executables: []
19
-
26
+ email: christopher.sean.bailey@gmail.com
27
+ executables:
28
+ - specrun
20
29
  extensions: []
21
30
 
22
31
  extra_rdoc_files:
23
32
  - README
24
33
  files:
25
- - README
26
- - specrun
34
+ - bin/specrun
27
35
  - lib/specrun.rb
36
+ - config.yaml
37
+ - README
28
38
  has_rdoc: true
29
- homepage: http://specrun.rubyforge.com
39
+ homepage: http://specrun.rubyforge.org
30
40
  post_install_message:
31
41
  rdoc_options: []
32
42
 
@@ -46,10 +56,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
56
  version:
47
57
  requirements: []
48
58
 
49
- rubyforge_project: specrun
59
+ rubyforge_project:
50
60
  rubygems_version: 1.3.1
51
61
  signing_key:
52
62
  specification_version: 2
53
- summary: A package for generating rdoc like output for rspec.
63
+ summary: Specrun iterates through rspec tests, run's each test and compiles the output in html.
54
64
  test_files: []
55
65
 
data/specrun DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'lib/specrun.rb'
4
- sr = SpecRun.new
5
- sr.build
6
-