shindo 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/VERSION +1 -1
  2. data/bin/shindo +2 -2
  3. data/lib/shindo.rb +1 -1
  4. data/shindo.gemspec +49 -0
  5. metadata +2 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/bin/shindo CHANGED
@@ -35,8 +35,8 @@ run_in_thread(files, tags)
35
35
 
36
36
  at_exit {
37
37
  if success
38
- exit(0)
38
+ Kernel.exit(0)
39
39
  else
40
- exit(1)
40
+ Kernel.exit(1)
41
41
  end
42
42
  }
@@ -128,7 +128,7 @@ module Shindo
128
128
  print_line('? - display help')
129
129
  when /\d/
130
130
  index = choice.to_i - 1
131
- if backtrace.lines[index]
131
+ if @annals.lines[index]
132
132
  indent {
133
133
  print_line("#{@annals.lines[index]}: ")
134
134
  indent {
@@ -0,0 +1,49 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{shindo}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["geemus (Wesley Beary)"]
12
+ s.date = %q{2009-10-07}
13
+ s.default_executable = %q{shindo}
14
+ s.description = %q{Simple depth first ruby testing}
15
+ s.email = %q{me@geemus.com}
16
+ s.executables = ["shindo"]
17
+ s.extra_rdoc_files = [
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ ".gitignore",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "bin/shindo",
27
+ "lib/shindo.rb",
28
+ "shindo.gemspec"
29
+ ]
30
+ s.homepage = %q{http://github.com/geemus/shindo}
31
+ s.rdoc_options = ["--charset=UTF-8"]
32
+ s.require_paths = ["lib"]
33
+ s.rubyforge_project = %q{shindo}
34
+ s.rubygems_version = %q{1.3.5}
35
+ s.summary = %q{ruby testing}
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
42
+ s.add_runtime_dependency(%q<annals>, [">= 0"])
43
+ else
44
+ s.add_dependency(%q<annals>, [">= 0"])
45
+ end
46
+ else
47
+ s.add_dependency(%q<annals>, [">= 0"])
48
+ end
49
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shindo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)
@@ -38,6 +38,7 @@ files:
38
38
  - VERSION
39
39
  - bin/shindo
40
40
  - lib/shindo.rb
41
+ - shindo.gemspec
41
42
  has_rdoc: true
42
43
  homepage: http://github.com/geemus/shindo
43
44
  licenses: []