shindo 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/shindo/bin.rb +8 -0
- data/lib/shindo.rb +1 -1
- data/shindo.gemspec +2 -2
- metadata +4 -4
data/lib/shindo/bin.rb
CHANGED
@@ -11,6 +11,14 @@ require File.join(File.dirname(__FILE__), '..', 'shindo')
|
|
11
11
|
end
|
12
12
|
Kernel.trap('INT', @interrupt)
|
13
13
|
|
14
|
+
# if lib dir is available add it to load path
|
15
|
+
if File.directory?('lib')
|
16
|
+
lib_dir = File.expand_path('lib')
|
17
|
+
unless $LOAD_PATH.include?(lib_dir)
|
18
|
+
$LOAD_PATH.unshift(lib_dir)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
14
22
|
helpers = Dir.glob(File.join('tests', '**', '*helper.rb')).sort_by {|helper| helper.count(File::SEPARATOR)}
|
15
23
|
tags = []
|
16
24
|
for argument in ARGV
|
data/lib/shindo.rb
CHANGED
data/shindo.gemspec
CHANGED
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
14
14
|
## the sub! line in the Rakefile
|
15
15
|
s.name = 'shindo'
|
16
|
-
s.version = '0.2.
|
17
|
-
s.date = '2011-01-
|
16
|
+
s.version = '0.2.2'
|
17
|
+
s.date = '2011-01-28'
|
18
18
|
s.rubyforge_project = 'shindo'
|
19
19
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shindo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 2
|
10
|
+
version: 0.2.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- geemus (Wesley Beary)
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-28 00:00:00 -08:00
|
19
19
|
default_executable: shindo
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|